ETH Price: $2,612.19 (-0.49%)

Token

Tale Of Vitalik (TaleOfV)
 

Overview

Max Total Supply

100,000,000,000 TaleOfV

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
96,285,197.524798969416900293 TaleOfV

Value
$0.00
0x6dcabd2261c52500d0da721550b5af4f8328f253
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:
TaleOfVitalik

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : TaleOfVitalik.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

/**
 * @dev 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].
 *
 * 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() external view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        _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);
    }

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

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

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

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

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

contract TaleOfVitalik is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) public bots;

    // TOKENOMICS START
    string private _name = "Tale Of Vitalik";
    string private _symbol = "TaleOfV";
    uint8 private _decimals = 18;
    uint256 private _supply = 100_000_000_000;
    uint256 public taxBuyForLiquidity = 0;
    uint256 public taxBuyForMarketing = 3;
    uint256 public taxSellForLiquidity = 0;
    uint256 public taxSellForMarketing = 3;
    uint256 public maxTxAmount = 3_000_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 3_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 1_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1_000_000_000 * 10**_decimals;
    address public marketingWallet = 0xA263b071650400B5b84c5589129e0d9d2366cfE1;
    // TOKENOMICS END

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!bots[from], "ERC20: bot");

        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                uint256 marketingShare;
                uint256 liquidityShare;
                
                if (to == uniswapV2Pair) {
                    marketingShare = (amount * taxSellForMarketing) / 100;
                    liquidityShare = (amount * taxSellForLiquidity) / 100;
                } else {
                    marketingShare = (amount * taxBuyForMarketing) / 100;
                    liquidityShare = (amount * taxBuyForLiquidity) / 100;
                }
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    // We only update bots' addresses at the time of listing to prevent bots. We will renounce the contract soon.
    function updateBots(address _addr, bool _flag)
        external
        onlyOwner
        returns (bool)
    {
        bots[_addr] = _flag;
        return true;
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, balanceOf(address(this)));
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxBuyForLiquidity, uint256 _taxBuyForMarketing, uint256 _taxSellForLiquidity, uint256 _taxSellForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxBuyForLiquidity+_taxBuyForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        require((_taxSellForLiquidity+_taxSellForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxBuyForLiquidity = _taxBuyForLiquidity;
        taxBuyForMarketing = _taxBuyForMarketing;
        taxSellForLiquidity = _taxSellForLiquidity;
        taxSellForMarketing = _taxSellForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"tokensIntoLiqudity","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"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"updateBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260006006556040518060400160405280600f81526020017f54616c65204f6620566974616c696b0000000000000000000000000000000000815250600990816200004f919062000b4a565b506040518060400160405280600781526020017f54616c654f665600000000000000000000000000000000000000000000000000815250600a908162000096919062000b4a565b506012600b60006101000a81548160ff021916908360ff16021790555064174876e800600c556000600d556003600e556000600f556003601055600b60009054906101000a900460ff16600a620000ee919062000dc1565b63b2d05e00620000ff919062000e12565b601155600b60009054906101000a900460ff16600a62000120919062000dc1565b63b2d05e0062000131919062000e12565b601255600b60009054906101000a900460ff16600a62000152919062000dc1565b633b9aca0062000163919062000e12565b601355600b60009054906101000a900460ff16600a62000184919062000dc1565b633b9aca0062000195919062000e12565b60145573a263b071650400b5b84c5589129e0d9d2366cfe1601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001fa57600080fd5b50600980546200020a9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002389062000939565b8015620002895780601f106200025d5761010080835404028352916020019162000289565b820191906000526020600020905b8154815290600101906020018083116200026b57829003601f168201915b5050505050600a80546200029d9062000939565b80601f0160208091040260200160405190810160405280929190818152602001828054620002cb9062000939565b80156200031c5780601f10620002f0576101008083540402835291602001916200031c565b820191906000526020600020905b815481529060010190602001808311620002fe57829003601f168201915b5050505050816003908162000332919062000b4a565b50806004908162000344919062000b4a565b505050620003676200035b620006bd60201b60201c565b620006c560201b60201c565b620003a533600b60009054906101000a900460ff16600a6200038a919062000dc1565b600c5462000399919062000e12565b6200078b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200040a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000430919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000498573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004be919062000edd565b6040518363ffffffff1660e01b8152600401620004dd92919062000f20565b6020604051808303816000875af1158015620004fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000523919062000edd565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001039565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f49062000fae565b60405180910390fd5b806002600082825462000811919062000fd0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008c491906200101c565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095257607f821691505b6020821081036200096857620009676200090a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000993565b620009de868362000993565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a2b62000a2562000a1f84620009f6565b62000a00565b620009f6565b9050919050565b6000819050919050565b62000a478362000a0a565b62000a5f62000a568262000a32565b848454620009a0565b825550505050565b600090565b62000a7662000a67565b62000a8381848462000a3c565b505050565b5b8181101562000aab5762000a9f60008262000a6c565b60018101905062000a89565b5050565b601f82111562000afa5762000ac4816200096e565b62000acf8462000983565b8101602085101562000adf578190505b62000af762000aee8562000983565b83018262000a88565b50505b505050565b600082821c905092915050565b600062000b1f6000198460080262000aff565b1980831691505092915050565b600062000b3a838362000b0c565b9150826002028217905092915050565b62000b5582620008d0565b67ffffffffffffffff81111562000b715762000b70620008db565b5b62000b7d825462000939565b62000b8a82828562000aaf565b600060209050601f83116001811462000bc2576000841562000bad578287015190505b62000bb9858262000b2c565b86555062000c29565b601f19841662000bd2866200096e565b60005b8281101562000bfc5784890151825560018201915060208501945060208101905062000bd5565b8683101562000c1c578489015162000c18601f89168262000b0c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cbf5780860481111562000c975762000c9662000c31565b5b600185161562000ca75780820291505b808102905062000cb78562000c60565b945062000c77565b94509492505050565b60008262000cda576001905062000dad565b8162000cea576000905062000dad565b816001811462000d03576002811462000d0e5762000d44565b600191505062000dad565b60ff84111562000d235762000d2262000c31565b5b8360020a91508482111562000d3d5762000d3c62000c31565b5b5062000dad565b5060208310610133831016604e8410600b841016171562000d7e5782820a90508381111562000d785762000d7762000c31565b5b62000dad565b62000d8d848484600162000c6d565b9250905081840481111562000da75762000da662000c31565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dce82620009f6565b915062000ddb8362000db4565b925062000e0a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cc8565b905092915050565b600062000e1f82620009f6565b915062000e2c83620009f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e685762000e6762000c31565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ea58262000e78565b9050919050565b62000eb78162000e98565b811462000ec357600080fd5b50565b60008151905062000ed78162000eac565b92915050565b60006020828403121562000ef65762000ef562000e73565b5b600062000f068482850162000ec6565b91505092915050565b62000f1a8162000e98565b82525050565b600060408201905062000f37600083018562000f0f565b62000f46602083018462000f0f565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f96601f8362000f4d565b915062000fa38262000f5e565b602082019050919050565b6000602082019050818103600083015262000fc98162000f87565b9050919050565b600062000fdd82620009f6565b915062000fea83620009f6565b925082820190508082111562001005576200100462000c31565b5b92915050565b6200101681620009f6565b82525050565b60006020820190506200103360008301846200100b565b92915050565b60805160a051613328620010a56000396000818161088001528181611d8201528181611e6301528181611e8a01528181611f690152611f900152600081816109ed01528181611376015281816113cb0152818161143901528181611680015261172f01526133286000f3fe6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063bfd7928411610095578063e5c83f2c11610064578063e5c83f2c14610733578063e66c19c11461075e578063f2fde38b14610789578063f88de0c3146107b2576101e3565b8063bfd7928414610677578063d0e1d262146106b4578063d85a2828146106df578063dd62ed3e146106f6576101e3565b8063aa4bde28116100d1578063aa4bde28146105a7578063b60c30f9146105d2578063bb85c6d1146105fd578063bc7d8e5b1461063a576101e3565b80638da5cb5b146104d757806395d89b4114610502578063a457c2d71461052d578063a9059cbb1461056a576101e3565b8063395093511161017a578063715018a611610149578063715018a61461042d57806375f0a8741461044457806381bfdcca1461046f5780638c0b5e22146104ac576101e3565b8063395093511461034b57806349bd5a5e14610388578063677daa57146103b357806370a08231146103f0576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e35780633902fa051461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a919061210a565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121c5565b61085b565b6040516102479190612220565b60405180910390f35b34801561025c57600080fd5b5061026561087e565b604051610272919061229a565b60405180910390f35b34801561028757600080fd5b506102906108a2565b60405161029d91906122c4565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906122df565b6108ac565b6040516102da9190612220565b60405180910390f35b3480156102ef57600080fd5b506102f86108db565b604051610305919061234e565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612369565b6108e4565b6040516103429190612220565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906121c5565b6109b4565b60405161037f9190612220565b60405180910390f35b34801561039457600080fd5b5061039d6109eb565b6040516103aa91906123df565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d591906123fa565b610a0f565b6040516103e79190612220565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612427565b610a4f565b60405161042491906122c4565b60405180910390f35b34801561043957600080fd5b50610442610a97565b005b34801561045057600080fd5b50610459610aab565b60405161046691906123df565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906123fa565b610ad1565b6040516104a39190612220565b60405180910390f35b3480156104b857600080fd5b506104c1610b11565b6040516104ce91906122c4565b60405180910390f35b3480156104e357600080fd5b506104ec610b17565b6040516104f991906123df565b60405180910390f35b34801561050e57600080fd5b50610517610b41565b604051610524919061210a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906121c5565b610bd3565b6040516105619190612220565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121c5565b610c4a565b60405161059e9190612220565b60405180910390f35b3480156105b357600080fd5b506105bc610c6d565b6040516105c991906122c4565b60405180910390f35b3480156105de57600080fd5b506105e7610c73565b6040516105f491906122c4565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612427565b610c79565b6040516106319190612220565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612480565b610ccd565b60405161066e9190612220565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612427565b610d38565b6040516106ab9190612220565b60405180910390f35b3480156106c057600080fd5b506106c9610d58565b6040516106d691906122c4565b60405180910390f35b3480156106eb57600080fd5b506106f4610d5e565b005b34801561070257600080fd5b5061071d600480360381019061071891906124c0565b610de0565b60405161072a91906122c4565b60405180910390f35b34801561073f57600080fd5b50610748610e67565b60405161075591906122c4565b60405180910390f35b34801561076a57600080fd5b50610773610e6d565b60405161078091906122c4565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612427565b610e73565b005b3480156107be57600080fd5b506107c7610ef6565b005b6060600380546107d89061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061252f565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f61565b9050610873818585610f69565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108b7610f61565b90506108c4858285611132565b6108cf8585856111be565b60019150509392505050565b60006012905090565b60006108ee611863565b606484866108fc919061258f565b111561093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490612635565b60405180910390fd5b6064828461094b919061258f565b111561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390612635565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b6000806109bf610f61565b90506109e08185856109d18589610de0565b6109db919061258f565b610f69565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610a19611863565b600b60009054906101000a900460ff16600a610a359190612788565b82610a4091906127d3565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9f611863565b610aa960006118e1565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610adb611863565b600b60009054906101000a900460ff16600a610af79190612788565b82610b0291906127d3565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b509061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061252f565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b600080610bde610f61565b90506000610bec8286610de0565b905083811015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061289f565b60405180910390fd5b610c3e8286868403610f69565b60019250505092915050565b600080610c55610f61565b9050610c628185856111be565b600191505092915050565b60125481565b600e5481565b6000610c83611863565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610cd7611863565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610d6930610a4f565b11610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061290b565b60405180910390fd5b610dde30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd930610a4f565b6119a7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e7b611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061299d565b60405180910390fd5b610ef3816118e1565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f5e573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612ac1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112591906122c4565b60405180910390a3505050565b600061113e8484610de0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111b857818110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612b2d565b60405180910390fd5b6111b78484848403610f69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612c51565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090612cbd565b60405180910390fd5b8061133384610a4f565b1015611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612d4f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061141957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114325750600560149054906101000a900460ff16155b15611852577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461158957600060065461149830610a4f565b6114a29190612d6f565b905060135481106114b9576114b8601354611c07565b5b60145460065410611587576114cf601454611cc8565b601454600660008282546114e39190612d6f565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612def565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061162c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561163957819050611841565b60115482111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590612e81565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361172a576012546116dd84610a4f565b836116e8919061258f565b1115611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090612f13565b60405180910390fd5b5b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117bd5760646010548561179091906127d3565b61179a9190612f62565b91506064600f54856117ac91906127d3565b6117b69190612f62565b90506117f6565b6064600e54856117cd91906127d3565b6117d79190612f62565b91506064600d54856117e991906127d3565b6117f39190612f62565b90505b8082611802919061258f565b8461180d9190612d6f565b92508160066000828254611821919061258f565b9250508190555061183e86308385611839919061258f565b6119a7565b50505b61184c8484836119a7565b5061185e565b61185d8383836119a7565b5b505050565b61186b610f61565b73ffffffffffffffffffffffffffffffffffffffff16611889610b17565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612fdf565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90612c51565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612d4f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf991906122c4565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c319190612f62565b905060008183611c419190612d6f565b90506000479050611c5183611cc8565b60008147611c5f9190612d6f565b9050611c6b8382611f48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c9e93929190612fff565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0057611cff613036565b5b604051908082528060200260200182016040528015611d2e5781602001602082028036833780820191505090505b5090503081600081518110611d4657611d45613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0f91906130a9565b81600181518110611e2357611e22613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e88307f000000000000000000000000000000000000000000000000000000000000000084610f69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611ed7919061258f565b6040518663ffffffff1660e01b8152600401611ef79594939291906131cf565b600060405180830381600087803b158015611f1157600080fd5b505af1158015611f25573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f8e307f000000000000000000000000000000000000000000000000000000000000000084610f69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201596959493929190613229565b60606040518083038185885af1158015612033573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612058919061329f565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b60008484015250505050565b6000601f19601f8301169050919050565b60006120dc8261207a565b6120e68185612085565b93506120f6818560208601612096565b6120ff816120c0565b840191505092915050565b6000602082019050818103600083015261212481846120d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215c82612131565b9050919050565b61216c81612151565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000819050919050565b6121a28161218f565b81146121ad57600080fd5b50565b6000813590506121bf81612199565b92915050565b600080604083850312156121dc576121db61212c565b5b60006121ea8582860161217a565b92505060206121fb858286016121b0565b9150509250929050565b60008115159050919050565b61221a81612205565b82525050565b60006020820190506122356000830184612211565b92915050565b6000819050919050565b600061226061225b61225684612131565b61223b565b612131565b9050919050565b600061227282612245565b9050919050565b600061228482612267565b9050919050565b61229481612279565b82525050565b60006020820190506122af600083018461228b565b92915050565b6122be8161218f565b82525050565b60006020820190506122d960008301846122b5565b92915050565b6000806000606084860312156122f8576122f761212c565b5b60006123068682870161217a565b93505060206123178682870161217a565b9250506040612328868287016121b0565b9150509250925092565b600060ff82169050919050565b61234881612332565b82525050565b6000602082019050612363600083018461233f565b92915050565b600080600080608085870312156123835761238261212c565b5b6000612391878288016121b0565b94505060206123a2878288016121b0565b93505060406123b3878288016121b0565b92505060606123c4878288016121b0565b91505092959194509250565b6123d981612151565b82525050565b60006020820190506123f460008301846123d0565b92915050565b6000602082840312156124105761240f61212c565b5b600061241e848285016121b0565b91505092915050565b60006020828403121561243d5761243c61212c565b5b600061244b8482850161217a565b91505092915050565b61245d81612205565b811461246857600080fd5b50565b60008135905061247a81612454565b92915050565b600080604083850312156124975761249661212c565b5b60006124a58582860161217a565b92505060206124b68582860161246b565b9150509250929050565b600080604083850312156124d7576124d661212c565b5b60006124e58582860161217a565b92505060206124f68582860161217a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254757607f821691505b60208210810361255a57612559612500565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259a8261218f565b91506125a58361218f565b92508282019050808211156125bd576125bc612560565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b600061261f602d83612085565b915061262a826125c3565b604082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126ac5780860481111561268857612687612560565b5b60018516156126975780820291505b80810290506126a585612655565b945061266c565b94509492505050565b6000826126c55760019050612781565b816126d35760009050612781565b81600181146126e957600281146126f357612722565b6001915050612781565b60ff84111561270557612704612560565b5b8360020a91508482111561271c5761271b612560565b5b50612781565b5060208310610133831016604e8410600b84101617156127575782820a90508381111561275257612751612560565b5b612781565b6127648484846001612662565b9250905081840481111561277b5761277a612560565b5b81810290505b9392505050565b60006127938261218f565b915061279e83612332565b92506127cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126b5565b905092915050565b60006127de8261218f565b91506127e98361218f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282257612821612560565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612889602583612085565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128f5601483612085565b9150612900826128bf565b602082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612987602683612085565b91506129928261292b565b604082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a19602483612085565b9150612a24826129bd565b604082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aab602283612085565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b17601d83612085565b9150612b2282612ae1565b602082019050919050565b60006020820190508181036000830152612b4681612b0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ba9602583612085565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3b602383612085565b9150612c4682612bdf565b604082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f45524332303a20626f7400000000000000000000000000000000000000000000600082015250565b6000612ca7600a83612085565b9150612cb282612c71565b602082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d39602683612085565b9150612d4482612cdd565b604082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b6000612d7a8261218f565b9150612d858361218f565b9250828203905081811115612d9d57612d9c612560565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612dd9601283612085565b9150612de482612da3565b602082019050919050565b60006020820190508181036000830152612e0881612dcc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612e6b603983612085565b9150612e7682612e0f565b604082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612efd603683612085565b9150612f0882612ea1565b604082019050919050565b60006020820190508181036000830152612f2c81612ef0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f6d8261218f565b9150612f788361218f565b925082612f8857612f87612f33565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc9602083612085565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b600060608201905061301460008301866122b5565b61302160208301856122b5565b61302e60408301846122b5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130a381612163565b92915050565b6000602082840312156130bf576130be61212c565b5b60006130cd84828501613094565b91505092915050565b6000819050919050565b60006130fb6130f66130f1846130d6565b61223b565b61218f565b9050919050565b61310b816130e0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314681612151565b82525050565b6000613158838361313d565b60208301905092915050565b6000602082019050919050565b600061317c82613111565b613186818561311c565b93506131918361312d565b8060005b838110156131c25781516131a9888261314c565b97506131b483613164565b925050600181019050613195565b5085935050505092915050565b600060a0820190506131e460008301886122b5565b6131f16020830187613102565b81810360408301526132038186613171565b905061321260608301856123d0565b61321f60808301846122b5565b9695505050505050565b600060c08201905061323e60008301896123d0565b61324b60208301886122b5565b6132586040830187613102565b6132656060830186613102565b61327260808301856123d0565b61327f60a08301846122b5565b979650505050505050565b60008151905061329981612199565b92915050565b6000806000606084860312156132b8576132b761212c565b5b60006132c68682870161328a565b93505060206132d78682870161328a565b92505060406132e88682870161328a565b915050925092509256fea2646970667358221220c063b55f9802757783753222c427b6de3691cd6c6e577996966c0144f858bf1564736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063bfd7928411610095578063e5c83f2c11610064578063e5c83f2c14610733578063e66c19c11461075e578063f2fde38b14610789578063f88de0c3146107b2576101e3565b8063bfd7928414610677578063d0e1d262146106b4578063d85a2828146106df578063dd62ed3e146106f6576101e3565b8063aa4bde28116100d1578063aa4bde28146105a7578063b60c30f9146105d2578063bb85c6d1146105fd578063bc7d8e5b1461063a576101e3565b80638da5cb5b146104d757806395d89b4114610502578063a457c2d71461052d578063a9059cbb1461056a576101e3565b8063395093511161017a578063715018a611610149578063715018a61461042d57806375f0a8741461044457806381bfdcca1461046f5780638c0b5e22146104ac576101e3565b8063395093511461034b57806349bd5a5e14610388578063677daa57146103b357806370a08231146103f0576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e35780633902fa051461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a919061210a565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121c5565b61085b565b6040516102479190612220565b60405180910390f35b34801561025c57600080fd5b5061026561087e565b604051610272919061229a565b60405180910390f35b34801561028757600080fd5b506102906108a2565b60405161029d91906122c4565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906122df565b6108ac565b6040516102da9190612220565b60405180910390f35b3480156102ef57600080fd5b506102f86108db565b604051610305919061234e565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612369565b6108e4565b6040516103429190612220565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906121c5565b6109b4565b60405161037f9190612220565b60405180910390f35b34801561039457600080fd5b5061039d6109eb565b6040516103aa91906123df565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d591906123fa565b610a0f565b6040516103e79190612220565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612427565b610a4f565b60405161042491906122c4565b60405180910390f35b34801561043957600080fd5b50610442610a97565b005b34801561045057600080fd5b50610459610aab565b60405161046691906123df565b60405180910390f35b34801561047b57600080fd5b50610496600480360381019061049191906123fa565b610ad1565b6040516104a39190612220565b60405180910390f35b3480156104b857600080fd5b506104c1610b11565b6040516104ce91906122c4565b60405180910390f35b3480156104e357600080fd5b506104ec610b17565b6040516104f991906123df565b60405180910390f35b34801561050e57600080fd5b50610517610b41565b604051610524919061210a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906121c5565b610bd3565b6040516105619190612220565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121c5565b610c4a565b60405161059e9190612220565b60405180910390f35b3480156105b357600080fd5b506105bc610c6d565b6040516105c991906122c4565b60405180910390f35b3480156105de57600080fd5b506105e7610c73565b6040516105f491906122c4565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612427565b610c79565b6040516106319190612220565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612480565b610ccd565b60405161066e9190612220565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612427565b610d38565b6040516106ab9190612220565b60405180910390f35b3480156106c057600080fd5b506106c9610d58565b6040516106d691906122c4565b60405180910390f35b3480156106eb57600080fd5b506106f4610d5e565b005b34801561070257600080fd5b5061071d600480360381019061071891906124c0565b610de0565b60405161072a91906122c4565b60405180910390f35b34801561073f57600080fd5b50610748610e67565b60405161075591906122c4565b60405180910390f35b34801561076a57600080fd5b50610773610e6d565b60405161078091906122c4565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190612427565b610e73565b005b3480156107be57600080fd5b506107c7610ef6565b005b6060600380546107d89061252f565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061252f565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f61565b9050610873818585610f69565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108b7610f61565b90506108c4858285611132565b6108cf8585856111be565b60019150509392505050565b60006012905090565b60006108ee611863565b606484866108fc919061258f565b111561093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490612635565b60405180910390fd5b6064828461094b919061258f565b111561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390612635565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b6000806109bf610f61565b90506109e08185856109d18589610de0565b6109db919061258f565b610f69565b600191505092915050565b7f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b81565b6000610a19611863565b600b60009054906101000a900460ff16600a610a359190612788565b82610a4091906127d3565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9f611863565b610aa960006118e1565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610adb611863565b600b60009054906101000a900460ff16600a610af79190612788565b82610b0291906127d3565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b509061252f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c9061252f565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b600080610bde610f61565b90506000610bec8286610de0565b905083811015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061289f565b60405180910390fd5b610c3e8286868403610f69565b60019250505092915050565b600080610c55610f61565b9050610c628185856111be565b600191505092915050565b60125481565b600e5481565b6000610c83611863565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610cd7611863565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610d6930610a4f565b11610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061290b565b60405180910390fd5b610dde30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd930610a4f565b6119a7565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e7b611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061299d565b60405180910390fd5b610ef3816118e1565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f5e573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90612a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90612ac1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112591906122c4565b60405180910390a3505050565b600061113e8484610de0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111b857818110156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190612b2d565b60405180910390fd5b6111b78484848403610f69565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612c51565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090612cbd565b60405180910390fd5b8061133384610a4f565b1015611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612d4f565b60405180910390fd5b7f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061141957507f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156114325750600560149054906101000a900460ff16155b15611852577f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461158957600060065461149830610a4f565b6114a29190612d6f565b905060135481106114b9576114b8601354611c07565b5b60145460065410611587576114cf601454611cc8565b601454600660008282546114e39190612d6f565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612def565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061162c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561163957819050611841565b60115482111561167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590612e81565b60405180910390fd5b7f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361172a576012546116dd84610a4f565b836116e8919061258f565b1115611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090612f13565b60405180910390fd5b5b6000807f000000000000000000000000a80da01d98e36b8304476816ff12aaffbe17959b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117bd5760646010548561179091906127d3565b61179a9190612f62565b91506064600f54856117ac91906127d3565b6117b69190612f62565b90506117f6565b6064600e54856117cd91906127d3565b6117d79190612f62565b91506064600d54856117e991906127d3565b6117f39190612f62565b90505b8082611802919061258f565b8461180d9190612d6f565b92508160066000828254611821919061258f565b9250508190555061183e86308385611839919061258f565b6119a7565b50505b61184c8484836119a7565b5061185e565b61185d8383836119a7565b5b505050565b61186b610f61565b73ffffffffffffffffffffffffffffffffffffffff16611889610b17565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612fdf565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90612c51565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612d4f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf991906122c4565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c319190612f62565b905060008183611c419190612d6f565b90506000479050611c5183611cc8565b60008147611c5f9190612d6f565b9050611c6b8382611f48565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611c9e93929190612fff565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0057611cff613036565b5b604051908082528060200260200182016040528015611d2e5781602001602082028036833780820191505090505b5090503081600081518110611d4657611d45613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0f91906130a9565b81600181518110611e2357611e22613065565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611ed7919061258f565b6040518663ffffffff1660e01b8152600401611ef79594939291906131cf565b600060405180830381600087803b158015611f1157600080fd5b505af1158015611f25573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201596959493929190613229565b60606040518083038185885af1158015612033573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612058919061329f565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b60008484015250505050565b6000601f19601f8301169050919050565b60006120dc8261207a565b6120e68185612085565b93506120f6818560208601612096565b6120ff816120c0565b840191505092915050565b6000602082019050818103600083015261212481846120d1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061215c82612131565b9050919050565b61216c81612151565b811461217757600080fd5b50565b60008135905061218981612163565b92915050565b6000819050919050565b6121a28161218f565b81146121ad57600080fd5b50565b6000813590506121bf81612199565b92915050565b600080604083850312156121dc576121db61212c565b5b60006121ea8582860161217a565b92505060206121fb858286016121b0565b9150509250929050565b60008115159050919050565b61221a81612205565b82525050565b60006020820190506122356000830184612211565b92915050565b6000819050919050565b600061226061225b61225684612131565b61223b565b612131565b9050919050565b600061227282612245565b9050919050565b600061228482612267565b9050919050565b61229481612279565b82525050565b60006020820190506122af600083018461228b565b92915050565b6122be8161218f565b82525050565b60006020820190506122d960008301846122b5565b92915050565b6000806000606084860312156122f8576122f761212c565b5b60006123068682870161217a565b93505060206123178682870161217a565b9250506040612328868287016121b0565b9150509250925092565b600060ff82169050919050565b61234881612332565b82525050565b6000602082019050612363600083018461233f565b92915050565b600080600080608085870312156123835761238261212c565b5b6000612391878288016121b0565b94505060206123a2878288016121b0565b93505060406123b3878288016121b0565b92505060606123c4878288016121b0565b91505092959194509250565b6123d981612151565b82525050565b60006020820190506123f460008301846123d0565b92915050565b6000602082840312156124105761240f61212c565b5b600061241e848285016121b0565b91505092915050565b60006020828403121561243d5761243c61212c565b5b600061244b8482850161217a565b91505092915050565b61245d81612205565b811461246857600080fd5b50565b60008135905061247a81612454565b92915050565b600080604083850312156124975761249661212c565b5b60006124a58582860161217a565b92505060206124b68582860161246b565b9150509250929050565b600080604083850312156124d7576124d661212c565b5b60006124e58582860161217a565b92505060206124f68582860161217a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254757607f821691505b60208210810361255a57612559612500565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061259a8261218f565b91506125a58361218f565b92508282019050808211156125bd576125bc612560565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b600061261f602d83612085565b915061262a826125c3565b604082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126ac5780860481111561268857612687612560565b5b60018516156126975780820291505b80810290506126a585612655565b945061266c565b94509492505050565b6000826126c55760019050612781565b816126d35760009050612781565b81600181146126e957600281146126f357612722565b6001915050612781565b60ff84111561270557612704612560565b5b8360020a91508482111561271c5761271b612560565b5b50612781565b5060208310610133831016604e8410600b84101617156127575782820a90508381111561275257612751612560565b5b612781565b6127648484846001612662565b9250905081840481111561277b5761277a612560565b5b81810290505b9392505050565b60006127938261218f565b915061279e83612332565b92506127cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126b5565b905092915050565b60006127de8261218f565b91506127e98361218f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282257612821612560565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612889602583612085565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128f5601483612085565b9150612900826128bf565b602082019050919050565b60006020820190508181036000830152612924816128e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612987602683612085565b91506129928261292b565b604082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a19602483612085565b9150612a24826129bd565b604082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aab602283612085565b9150612ab682612a4f565b604082019050919050565b60006020820190508181036000830152612ada81612a9e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b17601d83612085565b9150612b2282612ae1565b602082019050919050565b60006020820190508181036000830152612b4681612b0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ba9602583612085565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3b602383612085565b9150612c4682612bdf565b604082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f45524332303a20626f7400000000000000000000000000000000000000000000600082015250565b6000612ca7600a83612085565b9150612cb282612c71565b602082019050919050565b60006020820190508181036000830152612cd681612c9a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d39602683612085565b9150612d4482612cdd565b604082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b6000612d7a8261218f565b9150612d858361218f565b9250828203905081811115612d9d57612d9c612560565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612dd9601283612085565b9150612de482612da3565b602082019050919050565b60006020820190508181036000830152612e0881612dcc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612e6b603983612085565b9150612e7682612e0f565b604082019050919050565b60006020820190508181036000830152612e9a81612e5e565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612efd603683612085565b9150612f0882612ea1565b604082019050919050565b60006020820190508181036000830152612f2c81612ef0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f6d8261218f565b9150612f788361218f565b925082612f8857612f87612f33565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc9602083612085565b9150612fd482612f93565b602082019050919050565b60006020820190508181036000830152612ff881612fbc565b9050919050565b600060608201905061301460008301866122b5565b61302160208301856122b5565b61302e60408301846122b5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130a381612163565b92915050565b6000602082840312156130bf576130be61212c565b5b60006130cd84828501613094565b91505092915050565b6000819050919050565b60006130fb6130f66130f1846130d6565b61223b565b61218f565b9050919050565b61310b816130e0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314681612151565b82525050565b6000613158838361313d565b60208301905092915050565b6000602082019050919050565b600061317c82613111565b613186818561311c565b93506131918361312d565b8060005b838110156131c25781516131a9888261314c565b97506131b483613164565b925050600181019050613195565b5085935050505092915050565b600060a0820190506131e460008301886122b5565b6131f16020830187613102565b81810360408301526132038186613171565b905061321260608301856123d0565b61321f60808301846122b5565b9695505050505050565b600060c08201905061323e60008301896123d0565b61324b60208301886122b5565b6132586040830187613102565b6132656060830186613102565b61327260808301856123d0565b61327f60a08301846122b5565b979650505050505050565b60008151905061329981612199565b92915050565b6000806000606084860312156132b8576132b761212c565b5b60006132c68682870161328a565b93505060206132d78682870161328a565b92505060406132e88682870161328a565b915050925092509256fea2646970667358221220c063b55f9802757783753222c427b6de3691cd6c6e577996966c0144f858bf1564736f6c63430008100033

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.