ETH Price: $3,029.42 (+3.85%)

Token

Alyssum (ALY)
 

Overview

Max Total Supply

100,000 ALY

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
721.168076005 ALY

Value
$0.00
0x15e6f23A1eE10D13b79a836f43d293CE150B66a3
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:
Alyssum

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-23
*/

/**
*/

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

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

/**
 * @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 Alyssum is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Alyssum";
    string private _symbol = "ALY";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000;
    uint256 public taxForLiquidity = 4;
    uint256 public taxForMarketing = 0;
    uint256 public maxTxAmount = 1000 * 10**_decimals;
    uint256 public maxWalletAmount = 1000 * 10**_decimals;
    address public marketingWallet = 0x9E25883dd8AFe114A260EF07F65e05Dcd6131665;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity = 500000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 200000 * 10**_decimals;
    bool inSwapAndLiquify;

    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(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 = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 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);
        }
    }

    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,
            owner(),
            block.timestamp
        );
    }

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

    function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxForLiquidity+_taxForMarketing) <= 99, "ERC20: total tax must not be greater than 99");
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

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

        return true;
    }

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

        return true;
    }

    receive() external payable {}
}

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":"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":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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"},{"stateMutability":"payable","type":"receive"}]

610100604052600760c090815266416c797373756d60c81b60e0526006906200002990826200064d565b50604080518082019091526003815262414c5960e81b60208201526007906200005390826200064d565b506008805460ff19166009908117909155620186a081556004600a9081556000600b556200008291906200082e565b62000090906103e862000846565b600c55600854620000a69060ff16600a6200082e565b620000b4906103e862000846565b600d55600e80546001600160a01b031916739e25883dd8afe114a260ef07f65e05dcd61316651790556000600f55600854620000f59060ff16600a6200082e565b62000104906207a12062000846565b6011556008546200011a9060ff16600a6200082e565b620001299062030d4062000846565b6012553480156200013957600080fd5b50600680546200014990620005be565b80601f01602080910402602001604051908101604052809291908181526020018280546200017790620005be565b8015620001c85780601f106200019c57610100808354040283529160200191620001c8565b820191906000526020600020905b815481529060010190602001808311620001aa57829003601f168201915b505050505060078054620001dc90620005be565b80601f01602080910402602001604051908101604052809291908181526020018280546200020a90620005be565b80156200025b5780601f106200022f576101008083540402835291602001916200025b565b820191906000526020600020905b8154815290600101906020018083116200023d57829003601f168201915b505050505081600390816200027191906200064d565b5060046200028082826200064d565b5050506200029d620002976200048c60201b60201c565b62000490565b600854620002cc903390620002b79060ff16600a6200082e565b600954620002c6919062000846565b620004e2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000324573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034a919062000868565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000398573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003be919062000868565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200040c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000432919062000868565b6001600160a01b0390811660a05290811660808190526000908152601060205260408082208054600160ff1991821681179092553384528284208054821683179055600e54909416835291208054909216179055620008a9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200053d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000551919062000893565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d357607f821691505b602082108103620005f457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064857600081815260208120601f850160051c81016020861015620006235750805b601f850160051c820191505b8181101562000644578281556001016200062f565b5050505b505050565b81516001600160401b03811115620006695762000669620005a8565b62000681816200067a8454620005be565b84620005fa565b602080601f831160018114620006b95760008415620006a05750858301515b600019600386901b1c1916600185901b17855562000644565b600085815260208120601f198616915b82811015620006ea57888601518255948401946001909101908401620006c9565b5085821015620007095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200077057816000190482111562000754576200075462000719565b808516156200076257918102915b93841c939080029062000734565b509250929050565b600082620007895750600162000828565b81620007985750600062000828565b8160018114620007b15760028114620007bc57620007dc565b600191505062000828565b60ff841115620007d057620007d062000719565b50506001821b62000828565b5060208310610133831016604e8410600b841016171562000801575081810a62000828565b6200080d83836200072f565b806000190482111562000824576200082462000719565b0290505b92915050565b60006200083f60ff84168362000778565b9392505050565b600081600019048311821515161562000863576200086362000719565b500290565b6000602082840312156200087b57600080fd5b81516001600160a01b03811681146200083f57600080fd5b8082018082111562000828576200082862000719565b60805160a0516116f66200090e600039600081816102aa01528181610a1201528181610a4d01528181610a970152610c660152600081816101e301528181610f7a0152818161103301528181611062015281816111f7015261121e01526116f66000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461044e578063dd62ed3e1461046e578063f2fde38b1461048e578063f345bd85146104ae57600080fd5b8063a9059cbb146103f8578063aa4bde2814610418578063af8af6901461042e57600080fd5b806375f0a8741461034f57806381bfdcca1461036f5780638c0b5e221461038f5780638da5cb5b146103a557806395d89b41146103c3578063a457c2d7146103d857600080fd5b80633950935111610123578063395093511461027857806349bd5a5e14610298578063527ffabd146102cc578063677daa57146102e257806370a0823114610302578063715018a61461033857600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d57806323b872dd1461023c578063313ce5671461025c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c4565b6040516101989190611301565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611364565b610556565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b506101c1610257366004611390565b610570565b34801561026857600080fd5b5060405160098152602001610198565b34801561028457600080fd5b506101c1610293366004611364565b610594565b3480156102a457600080fd5b506102057f000000000000000000000000000000000000000000000000000000000000000081565b3480156102d857600080fd5b5061022e600b5481565b3480156102ee57600080fd5b506101c16102fd3660046113d1565b6105b6565b34801561030e57600080fd5b5061022e61031d3660046113ea565b6001600160a01b031660009081526020819052604090205490565b34801561034457600080fd5b5061034d6105c9565b005b34801561035b57600080fd5b50600e54610205906001600160a01b031681565b34801561037b57600080fd5b506101c161038a3660046113d1565b6105dd565b34801561039b57600080fd5b5061022e600c5481565b3480156103b157600080fd5b506005546001600160a01b0316610205565b3480156103cf57600080fd5b5061018b6105f0565b3480156103e457600080fd5b506101c16103f3366004611364565b6105ff565b34801561040457600080fd5b506101c1610413366004611364565b61067f565b34801561042457600080fd5b5061022e600d5481565b34801561043a57600080fd5b506101c161044936600461140e565b61068d565b34801561045a57600080fd5b506101c16104693660046113ea565b610715565b34801561047a57600080fd5b5061022e610489366004611430565b610744565b34801561049a57600080fd5b5061034d6104a93660046113ea565b61076f565b3480156104ba57600080fd5b5061022e600a5481565b6060600380546104d390611469565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611469565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000336105648185856107e8565b60019150505b92915050565b60003361057e85828561090c565b610589858585610986565b506001949350505050565b6000336105648185856105a78383610744565b6105b191906114b9565b6107e8565b60006105c0610dcc565b50600c55600190565b6105d1610dcc565b6105db6000610e26565b565b60006105e7610dcc565b50600d55600190565b6060600480546104d390611469565b6000338161060d8286610744565b9050838110156106725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61058982868684036107e8565b600033610564818585610986565b6000610697610dcc565b60636106a383856114b9565b11156107065760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526b61746572207468616e20393960a01b6064820152608401610669565b50600a91909155600b55600190565b600061071f610dcc565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610777610dcc565b6001600160a01b0381166107dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b6107e581610e26565b50565b6001600160a01b03831661084a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610669565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109188484610744565b9050600019811461098057818110156109735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610669565b61098084848484036107e8565b50505050565b6001600160a01b0383166109ac5760405162461bcd60e51b8152600401610669906114cc565b6001600160a01b0382166109d25760405162461bcd60e51b815260040161066990611511565b806109f2846001600160a01b031660009081526020819052604090205490565b1015610a105760405162461bcd60e51b815260040161066990611554565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610a8157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610a90575060135460ff16155b15610dbc577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614610ba157600f54306000908152602081905260408120549091610aec9161159a565b90506011548110610b0257610b02601154610e78565b601254600f5410610b9f57610b18601254610f16565b601254600f6000828254610b2c919061159a565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b9d5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610669565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610be057506001600160a01b03831660009081526010602052604090205460ff165b15610bec575080610db1565b600c54821115610c645760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610669565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610d3057600d546001600160a01b038416600090815260208190526040902054610cc390846114b9565b1115610d305760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610669565b60006064600b5484610d4291906115ad565b610d4c91906115cc565b905060006064600a5485610d6091906115ad565b610d6a91906115cc565b9050610d7681836114b9565b610d80908561159a565b925081600f6000828254610d9491906114b9565b90915550610dae90508630610da984866114b9565b6110f8565b50505b6109808484836110f8565b610dc78383836110f8565b505050565b6005546001600160a01b031633146105db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e926002836115cc565b90506000610ea0828461159a565b905047610eac83610f16565b6000610eb8824761159a565b9050610ec483826111e4565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f5857610f586115ee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190611604565b8160018151811061100d5761100d6115ee565b60200260200101906001600160a01b031690816001600160a01b031681525050611058307f0000000000000000000000000000000000000000000000000000000000000000846107e8565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306110984261012c6114b9565b6040518663ffffffff1660e01b81526004016110b8959493929190611621565b600060405180830381600087803b1580156110d257600080fd5b505af11580156110e6573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b03831661111e5760405162461bcd60e51b8152600401610669906114cc565b6001600160a01b0382166111445760405162461bcd60e51b815260040161066990611511565b6001600160a01b0383166000908152602081905260409020548181101561117d5760405162461bcd60e51b815260040161066990611554565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff1916600117905561121c307f0000000000000000000000000000000000000000000000000000000000000000846107e8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806112636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112cb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112f09190611692565b50506013805460ff19169055505050565b600060208083528351808285015260005b8181101561132e57858101830151858201604001528201611312565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107e557600080fd5b6000806040838503121561137757600080fd5b82356113828161134f565b946020939093013593505050565b6000806000606084860312156113a557600080fd5b83356113b08161134f565b925060208401356113c08161134f565b929592945050506040919091013590565b6000602082840312156113e357600080fd5b5035919050565b6000602082840312156113fc57600080fd5b81356114078161134f565b9392505050565b6000806040838503121561142157600080fd5b50508035926020909101359150565b6000806040838503121561144357600080fd5b823561144e8161134f565b9150602083013561145e8161134f565b809150509250929050565b600181811c9082168061147d57607f821691505b60208210810361149d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056a5761056a6114a3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561056a5761056a6114a3565b60008160001904831182151516156115c7576115c76114a3565b500290565b6000826115e957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561161657600080fd5b81516114078161134f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116715784516001600160a01b03168352938301939183019160010161164c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156116a757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c57731c77464032e3267a340bd3aa89fa8b402155e12c30a2c4577820ef8c8b364736f6c63430008100033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d11461044e578063dd62ed3e1461046e578063f2fde38b1461048e578063f345bd85146104ae57600080fd5b8063a9059cbb146103f8578063aa4bde2814610418578063af8af6901461042e57600080fd5b806375f0a8741461034f57806381bfdcca1461036f5780638c0b5e221461038f5780638da5cb5b146103a557806395d89b41146103c3578063a457c2d7146103d857600080fd5b80633950935111610123578063395093511461027857806349bd5a5e14610298578063527ffabd146102cc578063677daa57146102e257806370a0823114610302578063715018a61461033857600080fd5b806306fdde0314610176578063095ea7b3146101a15780631694505e146101d157806318160ddd1461021d57806323b872dd1461023c578063313ce5671461025c57600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104c4565b6040516101989190611301565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004611364565b610556565b6040519015158152602001610198565b3480156101dd57600080fd5b506102057f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610198565b34801561022957600080fd5b506002545b604051908152602001610198565b34801561024857600080fd5b506101c1610257366004611390565b610570565b34801561026857600080fd5b5060405160098152602001610198565b34801561028457600080fd5b506101c1610293366004611364565b610594565b3480156102a457600080fd5b506102057f000000000000000000000000eede8d2a98fd01a9c255d93ec814fc19ba88893981565b3480156102d857600080fd5b5061022e600b5481565b3480156102ee57600080fd5b506101c16102fd3660046113d1565b6105b6565b34801561030e57600080fd5b5061022e61031d3660046113ea565b6001600160a01b031660009081526020819052604090205490565b34801561034457600080fd5b5061034d6105c9565b005b34801561035b57600080fd5b50600e54610205906001600160a01b031681565b34801561037b57600080fd5b506101c161038a3660046113d1565b6105dd565b34801561039b57600080fd5b5061022e600c5481565b3480156103b157600080fd5b506005546001600160a01b0316610205565b3480156103cf57600080fd5b5061018b6105f0565b3480156103e457600080fd5b506101c16103f3366004611364565b6105ff565b34801561040457600080fd5b506101c1610413366004611364565b61067f565b34801561042457600080fd5b5061022e600d5481565b34801561043a57600080fd5b506101c161044936600461140e565b61068d565b34801561045a57600080fd5b506101c16104693660046113ea565b610715565b34801561047a57600080fd5b5061022e610489366004611430565b610744565b34801561049a57600080fd5b5061034d6104a93660046113ea565b61076f565b3480156104ba57600080fd5b5061022e600a5481565b6060600380546104d390611469565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90611469565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b6000336105648185856107e8565b60019150505b92915050565b60003361057e85828561090c565b610589858585610986565b506001949350505050565b6000336105648185856105a78383610744565b6105b191906114b9565b6107e8565b60006105c0610dcc565b50600c55600190565b6105d1610dcc565b6105db6000610e26565b565b60006105e7610dcc565b50600d55600190565b6060600480546104d390611469565b6000338161060d8286610744565b9050838110156106725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61058982868684036107e8565b600033610564818585610986565b6000610697610dcc565b60636106a383856114b9565b11156107065760405162461bcd60e51b815260206004820152602c60248201527f45524332303a20746f74616c20746178206d757374206e6f742062652067726560448201526b61746572207468616e20393960a01b6064820152608401610669565b50600a91909155600b55600190565b600061071f610dcc565b50600e80546001600160a01b0383166001600160a01b03199091161790556001919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610777610dcc565b6001600160a01b0381166107dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b6107e581610e26565b50565b6001600160a01b03831661084a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610669565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006109188484610744565b9050600019811461098057818110156109735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610669565b61098084848484036107e8565b50505050565b6001600160a01b0383166109ac5760405162461bcd60e51b8152600401610669906114cc565b6001600160a01b0382166109d25760405162461bcd60e51b815260040161066990611511565b806109f2846001600160a01b031660009081526020819052604090205490565b1015610a105760405162461bcd60e51b815260040161066990611554565b7f000000000000000000000000eede8d2a98fd01a9c255d93ec814fc19ba8889396001600160a01b0316836001600160a01b03161480610a8157507f000000000000000000000000eede8d2a98fd01a9c255d93ec814fc19ba8889396001600160a01b0316826001600160a01b0316145b8015610a90575060135460ff16155b15610dbc577f000000000000000000000000eede8d2a98fd01a9c255d93ec814fc19ba8889396001600160a01b0316836001600160a01b031614610ba157600f54306000908152602081905260408120549091610aec9161159a565b90506011548110610b0257610b02601154610e78565b601254600f5410610b9f57610b18601254610f16565b601254600f6000828254610b2c919061159a565b9091555050600e546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610b9d5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610669565b505b505b6001600160a01b03831660009081526010602052604081205460ff1680610be057506001600160a01b03831660009081526010602052604090205460ff165b15610bec575080610db1565b600c54821115610c645760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610669565b7f000000000000000000000000eede8d2a98fd01a9c255d93ec814fc19ba8889396001600160a01b0316846001600160a01b031603610d3057600d546001600160a01b038416600090815260208190526040902054610cc390846114b9565b1115610d305760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610669565b60006064600b5484610d4291906115ad565b610d4c91906115cc565b905060006064600a5485610d6091906115ad565b610d6a91906115cc565b9050610d7681836114b9565b610d80908561159a565b925081600f6000828254610d9491906114b9565b90915550610dae90508630610da984866114b9565b6110f8565b50505b6109808484836110f8565b610dc78383836110f8565b505050565b6005546001600160a01b031633146105db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610669565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6013805460ff191660011790556000610e926002836115cc565b90506000610ea0828461159a565b905047610eac83610f16565b6000610eb8824761159a565b9050610ec483826111e4565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506013805460ff19169055505050565b6013805460ff191660011790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610f5857610f586115ee565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190611604565b8160018151811061100d5761100d6115ee565b60200260200101906001600160a01b031690816001600160a01b031681525050611058307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107e8565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306110984261012c6114b9565b6040518663ffffffff1660e01b81526004016110b8959493929190611621565b600060405180830381600087803b1580156110d257600080fd5b505af11580156110e6573d6000803e3d6000fd5b50506013805460ff1916905550505050565b6001600160a01b03831661111e5760405162461bcd60e51b8152600401610669906114cc565b6001600160a01b0382166111445760405162461bcd60e51b815260040161066990611511565b6001600160a01b0383166000908152602081905260409020548181101561117d5760405162461bcd60e51b815260040161066990611554565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6013805460ff1916600117905561121c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846107e8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806112636005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156112cb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906112f09190611692565b50506013805460ff19169055505050565b600060208083528351808285015260005b8181101561132e57858101830151858201604001528201611312565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107e557600080fd5b6000806040838503121561137757600080fd5b82356113828161134f565b946020939093013593505050565b6000806000606084860312156113a557600080fd5b83356113b08161134f565b925060208401356113c08161134f565b929592945050506040919091013590565b6000602082840312156113e357600080fd5b5035919050565b6000602082840312156113fc57600080fd5b81356114078161134f565b9392505050565b6000806040838503121561142157600080fd5b50508035926020909101359150565b6000806040838503121561144357600080fd5b823561144e8161134f565b9150602083013561145e8161134f565b809150509250929050565b600181811c9082168061147d57607f821691505b60208210810361149d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056a5761056a6114a3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561056a5761056a6114a3565b60008160001904831182151516156115c7576115c76114a3565b500290565b6000826115e957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561161657600080fd5b81516114078161134f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116715784516001600160a01b03168352938301939183019160010161164c565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156116a757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220c57731c77464032e3267a340bd3aa89fa8b402155e12c30a2c4577820ef8c8b364736f6c63430008100033

Deployed Bytecode Sourcemap

28157:7188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17876:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20150:244;;;;;;;;;;-1:-1:-1;20150:244:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20150:244:0;1023:187:1;28800:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;28800:51:0;1215:229:1;19014:110:0;;;;;;;;;;-1:-1:-1;19104:12:0;;19014:110;;;1595:25:1;;;1583:2;1568:18;19014:110:0;1449:177:1;20974:297:0;;;;;;;;;;-1:-1:-1;20974:297:0;;;;;:::i;:::-;;:::i;18857:92::-;;;;;;;;;;-1:-1:-1;18857:92:0;;18940:1;2234:36:1;;2222:2;2207:18;18857:92:0;2092:184:1;22690:272:0;;;;;;;;;;-1:-1:-1;22690:272:0;;;;;:::i;:::-;;:::i;28858:38::-;;;;;;;;;;;;;;;28474:34;;;;;;;;;;;;;;;;34917:182;;;;;;;;;;-1:-1:-1;34917:182:0;;;;;:::i;:::-;;:::i;18041:177::-;;;;;;;;;;-1:-1:-1;18041:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18192:18:0;18160:7;18192:18;;;;;;;;;;;;18041:177;15135:103;;;;;;;;;;;;;:::i;:::-;;28631:75;;;;;;;;;;-1:-1:-1;28631:75:0;;;;-1:-1:-1;;;;;28631:75:0;;;35107:198;;;;;;;;;;-1:-1:-1;35107:198:0;;;;;:::i;:::-;;:::i;28515:49::-;;;;;;;;;;;;;;;;14487:87;;;;;;;;;;-1:-1:-1;14560:6:0;;-1:-1:-1;;;;;14560:6:0;14487:87;;17700:106;;;;;;;;;;;;;:::i;21774:507::-;;;;;;;;;;-1:-1:-1;21774:507:0;;;;;:::i;:::-;;:::i;19594:236::-;;;;;;;;;;-1:-1:-1;19594:236:0;;;;;:::i;:::-;;:::i;28571:53::-;;;;;;;;;;;;;;;;34519:390;;;;;;;;;;-1:-1:-1;34519:390:0;;;;;:::i;:::-;;:::i;34329:182::-;;;;;;;;;;-1:-1:-1;34329:182:0;;;;;:::i;:::-;;:::i;19187:201::-;;;;;;;;;;-1:-1:-1;19187:201:0;;;;;:::i;:::-;;:::i;15393:238::-;;;;;;;;;;-1:-1:-1;15393:238:0;;;;;:::i;:::-;;:::i;28433:34::-;;;;;;;;;;;;;;;;17876:102;17932:13;17965:5;17958:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17876:102;:::o;20150:244::-;20271:4;13360:10;20332:32;13360:10;20348:7;20357:6;20332:8;:32::i;:::-;20382:4;20375:11;;;20150:244;;;;;:::o;20974:297::-;21107:4;13360:10;21165:38;21181:4;13360:10;21196:6;21165:15;:38::i;:::-;21214:27;21224:4;21230:2;21234:6;21214:9;:27::i;:::-;-1:-1:-1;21259:4:0;;20974:297;-1:-1:-1;;;;20974:297:0:o;22690:272::-;22807:4;13360:10;22868:64;13360:10;22884:7;22921:10;22893:25;13360:10;22884:7;22893:9;:25::i;:::-;:38;;;;:::i;:::-;22868:8;:64::i;34917:182::-;35019:4;14373:13;:11;:13::i;:::-;-1:-1:-1;35041:11:0::1;:26:::0;35087:4:::1;::::0;34917:182::o;15135:103::-;14373:13;:11;:13::i;:::-;15200:30:::1;15227:1;15200:18;:30::i;:::-;15135:103::o:0;35107:198::-;35217:4;14373:13;:11;:13::i;:::-;-1:-1:-1;35239:15:0::1;:34:::0;35293:4:::1;::::0;35107:198::o;17700:106::-;17758:13;17791:7;17784:14;;;;;:::i;21774:507::-;21896:4;13360:10;21896:4;21984:25;13360:10;22001:7;21984:9;:25::i;:::-;21957:52;;22062:15;22042:16;:35;;22020:122;;;;-1:-1:-1;;;22020:122:0;;4421:2:1;22020:122:0;;;4403:21:1;4460:2;4440:18;;;4433:30;4499:34;4479:18;;;4472:62;-1:-1:-1;;;4550:18:1;;;4543:35;4595:19;;22020:122:0;;;;;;;;;22178:60;22187:5;22194:7;22222:15;22203:16;:34;22178:8;:60::i;19594:236::-;19711:4;13360:10;19772:28;13360:10;19789:2;19793:6;19772:9;:28::i;34519:390::-;34667:4;14373:13;:11;:13::i;:::-;34736:2:::1;34698:33;34715:16:::0;34698;:33:::1;:::i;:::-;34697:41;;34689:98;;;::::0;-1:-1:-1;;;34689:98:0;;4827:2:1;34689:98:0::1;::::0;::::1;4809:21:1::0;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;-1:-1:-1;;;4956:18:1;;;4949:42;5008:19;;34689:98:0::1;4625:408:1::0;34689:98:0::1;-1:-1:-1::0;34798:15:0::1;:34:::0;;;;34843:15:::1;:34:::0;34897:4:::1;::::0;34519:390::o;34329:182::-;34432:4;14373:13;:11;:13::i;:::-;-1:-1:-1;34454:15:0::1;:27:::0;;-1:-1:-1;;;;;34454:27:0;::::1;-1:-1:-1::0;;;;;;34454:27:0;;::::1;;::::0;;;34329:182;;;:::o;19187:201::-;-1:-1:-1;;;;;19353:18:0;;;19321:7;19353:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19187:201::o;15393:238::-;14373:13;:11;:13::i;:::-;-1:-1:-1;;;;;15496:22:0;::::1;15474:110;;;::::0;-1:-1:-1;;;15474:110:0;;5240:2:1;15474:110:0::1;::::0;::::1;5222:21:1::0;5279:2;5259:18;;;5252:30;5318:34;5298:18;;;5291:62;-1:-1:-1;;;5369:18:1;;;5362:36;5415:19;;15474:110:0::1;5038:402:1::0;15474:110:0::1;15595:28;15614:8;15595:18;:28::i;:::-;15393:238:::0;:::o;24997:380::-;-1:-1:-1;;;;;25133:19:0;;25125:68;;;;-1:-1:-1;;;25125:68:0;;5647:2:1;25125:68:0;;;5629:21:1;5686:2;5666:18;;;5659:30;5725:34;5705:18;;;5698:62;-1:-1:-1;;;5776:18:1;;;5769:34;5820:19;;25125:68:0;5445:400:1;25125:68:0;-1:-1:-1;;;;;25212:21:0;;25204:68;;;;-1:-1:-1;;;25204:68:0;;6052:2:1;25204:68:0;;;6034:21:1;6091:2;6071:18;;;6064:30;6130:34;6110:18;;;6103:62;-1:-1:-1;;;6181:18:1;;;6174:32;6223:19;;25204:68:0;5850:398:1;25204:68:0;-1:-1:-1;;;;;25285:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25337:32;;1595:25:1;;;25337:32:0;;1568:18:1;25337:32:0;;;;;;;24997:380;;;:::o;25668:502::-;25803:24;25830:25;25840:5;25847:7;25830:9;:25::i;:::-;25803:52;;-1:-1:-1;;25870:16:0;:37;25866:297;;25970:6;25950:16;:26;;25924:117;;;;-1:-1:-1;;;25924:117:0;;6455:2:1;25924:117:0;;;6437:21:1;6494:2;6474:18;;;6467:30;6533:31;6513:18;;;6506:59;6582:18;;25924:117:0;6253:353:1;25924:117:0;26085:51;26094:5;26101:7;26129:6;26110:16;:25;26085:8;:51::i;:::-;25792:378;25668:502;;;:::o;30780:2149::-;-1:-1:-1;;;;;30878:18:0;;30870:68;;;;-1:-1:-1;;;30870:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30957:16:0;;30949:64;;;;-1:-1:-1;;;30949:64:0;;;;;;;:::i;:::-;31051:6;31032:15;31042:4;-1:-1:-1;;;;;18192:18:0;18160:7;18192:18;;;;;;;;;;;;18041:177;31032:15;:25;;31024:76;;;;-1:-1:-1;;;31024:76:0;;;;;;;:::i;:::-;31126:13;-1:-1:-1;;;;;31118:21:0;:4;-1:-1:-1;;;;;31118:21:0;;:44;;;;31149:13;-1:-1:-1;;;;;31143:19:0;:2;-1:-1:-1;;;;;31143:19:0;;31118:44;31117:67;;;;-1:-1:-1;31168:16:0;;;;31167:17;31117:67;31113:1809;;;31213:13;-1:-1:-1;;;;;31205:21:0;:4;-1:-1:-1;;;;;31205:21:0;;31201:686;;31309:18;;31300:4;31247:32;18192:18;;;;;;;;;;;31247:32;;31282:45;;;:::i;:::-;31247:80;;31378:30;;31350:24;:58;31346:154;;31433:47;31449:30;;31433:15;:47::i;:::-;31546:24;;31523:18;;31522:48;31518:354;;31595:43;31613:24;;31595:17;:43::i;:::-;31683:24;;31661:18;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;31750:15:0;;31742:52;;31730:9;;-1:-1:-1;;;;;31750:15:0;;31772:21;31742:52;;;;;31730:9;31742:52;31730:9;31742:52;31772:21;31750:15;31742:52;;;;;;;31730:64;;31825:4;31817:35;;;;-1:-1:-1;;;31817:35:0;;8163:2:1;31817:35:0;;;8145:21:1;8202:2;8182:18;;;8175:30;-1:-1:-1;;;8221:18:1;;;8214:48;8279:18;;31817:35:0;7961:342:1;31817:35:0;31572:300;31518:354;31228:659;31201:686;-1:-1:-1;;;;;31944:24:0;;31903:22;31944:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;31972:22:0;;;;;;:18;:22;;;;;;;;31944:50;31940:839;;;-1:-1:-1;32032:6:0;31940:839;;;32111:11;;32101:6;:21;;32093:91;;;;-1:-1:-1;;;32093:91:0;;8510:2:1;32093:91:0;;;8492:21:1;8549:2;8529:18;;;8522:30;8588:34;8568:18;;;8561:62;8659:27;8639:18;;;8632:55;8704:19;;32093:91:0;8308:421:1;32093:91:0;32214:13;-1:-1:-1;;;;;32206:21:0;:4;-1:-1:-1;;;;;32206:21:0;;32203:178;;32287:15;;-1:-1:-1;;;;;18192:18:0;;18160:7;18192:18;;;;;;;;;;;32260:22;;:6;:22;:::i;:::-;32259:43;;32251:110;;;;-1:-1:-1;;;32251:110:0;;8936:2:1;32251:110:0;;;8918:21:1;8975:2;8955:18;;;8948:30;9014:34;8994:18;;;8987:62;-1:-1:-1;;;9065:18:1;;;9058:52;9127:19;;32251:110:0;8734:418:1;32251:110:0;32401:22;32456:3;32437:15;;32428:6;:24;;;;:::i;:::-;32427:32;;;;:::i;:::-;32401:59;;32479:22;32534:3;32515:15;;32506:6;:24;;;;:::i;:::-;32505:32;;;;:::i;:::-;32479:59;-1:-1:-1;32584:31:0;32479:59;32584:14;:31;:::i;:::-;32574:42;;:6;:42;:::i;:::-;32557:59;;32657:14;32635:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32692:71:0;;-1:-1:-1;32708:4:0;32722;32730:31;32747:14;32730;:31;:::i;:::-;32692:15;:71::i;:::-;32074:705;;31940:839;32793:41;32809:4;32815:2;32819:14;32793:15;:41::i;31113:1809::-;32877:33;32893:4;32899:2;32903:6;32877:15;:33::i;:::-;30780:2149;;;:::o;14652:132::-;14560:6;;-1:-1:-1;;;;;14560:6:0;13360:10;14716:23;14708:68;;;;-1:-1:-1;;;14708:68:0;;9754:2:1;14708:68:0;;;9736:21:1;;;9773:18;;;9766:30;9832:34;9812:18;;;9805:62;9884:18;;14708:68:0;9552:356:1;15791:191:0;15884:6;;;-1:-1:-1;;;;;15901:17:0;;;-1:-1:-1;;;;;;15901:17:0;;;;;;;15934:40;;15884:6;;;15901:17;15884:6;;15934:40;;15865:16;;15934:40;15854:128;15791:191;:::o;32937:474::-;29357:16;:23;;-1:-1:-1;;29357:23:0;29376:4;29357:23;;;:16;33039:24:::1;33062:1;33039:20:::0;:24:::1;:::i;:::-;33023:41:::0;-1:-1:-1;33075:17:0::1;33096:27;33023:41:::0;33096:20;:27:::1;:::i;:::-;33075:49:::0;-1:-1:-1;33162:21:0::1;33196:23;33214:4:::0;33196:17:::1;:23::i;:::-;33232:18;33254:38;33278:14:::0;33254:21:::1;:38;:::i;:::-;33232:61;;33306:36;33320:9;33331:10;33306:13;:36::i;:::-;33360:43;::::0;;10115:25:1;;;10171:2;10156:18;;10149:34;;;10199:18;;;10192:34;;;33360:43:0::1;::::0;10103:2:1;10088:18;33360:43:0::1;;;;;;;-1:-1:-1::0;;29403:16:0;:24;;-1:-1:-1;;29403:24:0;;;-1:-1:-1;;;32937:474:0:o;33419:496::-;29357:16;:23;;-1:-1:-1;;29357:23:0;29376:4;29357:23;;;33522:16:::1;::::0;;33536:1:::1;33522:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33522:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33522:16:0::1;33498:40;;33567:4;33549;33554:1;33549:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33549:23:0::1;;;-1:-1:-1::0;;;;;33549:23:0::1;;;::::0;::::1;33593:15;-1:-1:-1::0;;;;;33593:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33583:4;33588:1;33583:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33583:32:0::1;;;-1:-1:-1::0;;;;;33583:32:0::1;;;::::0;::::1;33628:62;33645:4;33660:15;33678:11;33628:8;:62::i;:::-;-1:-1:-1::0;;;;;33703:15:0::1;:66;;33784:11:::0;33810:1:::1;33826:4:::0;33853::::1;33874:21;:15;33892:3;33874:21;:::i;:::-;33703:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29403:16:0;:24;;-1:-1:-1;;29403:24:0;;;-1:-1:-1;;;;33419:496:0:o;26178:776::-;-1:-1:-1;;;;;26309:18:0;;26301:68;;;;-1:-1:-1;;;26301:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26388:16:0;;26380:64;;;;-1:-1:-1;;;26380:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26479:15:0;;26457:19;26479:15;;;;;;;;;;;26527:21;;;;26505:109;;;;-1:-1:-1;;;26505:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26650:15:0;;;:9;:15;;;;;;;;;;;26668:20;;;26650:38;;26868:13;;;;;;;;;;:23;;;;;;26920:26;;1595:25:1;;;26868:13:0;;26920:26;;1568:18:1;26920:26:0;;;;;;;26290:664;26178:776;;;:::o;33923:398::-;29357:16;:23;;-1:-1:-1;;29357:23:0;29376:4;29357:23;;;34040:62:::1;34057:4;34072:15;34090:11:::0;34040:8:::1;:62::i;:::-;34115:15;-1:-1:-1::0;;;;;34115:31:0::1;;34154:9;34187:4;34207:11;34233:1;34249::::0;34265:7:::1;14560:6:::0;;-1:-1:-1;;;;;14560:6:0;;14487:87;34265:7:::1;34115:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;34115:198:0;;;-1:-1:-1;;;;;12101:15:1;;;34115:198:0::1;::::0;::::1;12083:34:1::0;12133:18;;;12126:34;;;;12176:18;;;12169:34;;;;12219:18;;;12212:34;12283:15;;;12262:19;;;12255:44;34287:15:0::1;12315:19:1::0;;;12308:35;12017:19;;34115:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29403:16:0;:24;;-1:-1:-1;;29403:24:0;;;-1:-1:-1;;;33923:398:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:180::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;-1:-1:-1;2640:23:1;;2489:180;-1:-1:-1;2489:180:1:o;2674:247::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2841:9;2828:23;2860:31;2885:5;2860:31;:::i;:::-;2910:5;2674:247;-1:-1:-1;;;2674:247:1:o;2926:248::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;-1:-1:-1;;3094:23:1;;;3164:2;3149:18;;;3136:32;;-1:-1:-1;2926:248:1:o;3179:388::-;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3554:7;3544:17;;;3179:388;;;;;:::o;3572:380::-;3651:1;3647:12;;;;3694;;;3715:61;;3769:4;3761:6;3757:17;3747:27;;3715:61;3822:2;3814:6;3811:14;3791:18;3788:38;3785:161;;3868:10;3863:3;3859:20;3856:1;3849:31;3903:4;3900:1;3893:15;3931:4;3928:1;3921:15;3785:161;;3572:380;;;:::o;3957:127::-;4018:10;4013:3;4009:20;4006:1;3999:31;4049:4;4046:1;4039:15;4073:4;4070:1;4063:15;4089:125;4154:9;;;4175:10;;;4172:36;;;4188:18;;:::i;6611:401::-;6813:2;6795:21;;;6852:2;6832:18;;;6825:30;6891:34;6886:2;6871:18;;6864:62;-1:-1:-1;;;6957:2:1;6942:18;;6935:35;7002:3;6987:19;;6611:401::o;7017:399::-;7219:2;7201:21;;;7258:2;7238:18;;;7231:30;7297:34;7292:2;7277:18;;7270:62;-1:-1:-1;;;7363:2:1;7348:18;;7341:33;7406:3;7391:19;;7017:399::o;7421:402::-;7623:2;7605:21;;;7662:2;7642:18;;;7635:30;7701:34;7696:2;7681:18;;7674:62;-1:-1:-1;;;7767:2:1;7752:18;;7745:36;7813:3;7798:19;;7421:402::o;7828:128::-;7895:9;;;7916:11;;;7913:37;;;7930:18;;:::i;9157:168::-;9197:7;9263:1;9259;9255:6;9251:14;9248:1;9245:21;9240:1;9233:9;9226:17;9222:45;9219:71;;;9270:18;;:::i;:::-;-1:-1:-1;9310:9:1;;9157:168::o;9330:217::-;9370:1;9396;9386:132;;9440:10;9435:3;9431:20;9428:1;9421:31;9475:4;9472:1;9465:15;9503:4;9500:1;9493:15;9386:132;-1:-1:-1;9532:9:1;;9330:217::o;10369:127::-;10430:10;10425:3;10421:20;10418:1;10411:31;10461:4;10458:1;10451:15;10485:4;10482:1;10475:15;10501:251;10571:6;10624:2;10612:9;10603:7;10599:23;10595:32;10592:52;;;10640:1;10637;10630:12;10592:52;10672:9;10666:16;10691:31;10716:5;10691:31;:::i;10757:980::-;11019:4;11067:3;11056:9;11052:19;11098:6;11087:9;11080:25;11124:2;11162:6;11157:2;11146:9;11142:18;11135:34;11205:3;11200:2;11189:9;11185:18;11178:31;11229:6;11264;11258:13;11295:6;11287;11280:22;11333:3;11322:9;11318:19;11311:26;;11372:2;11364:6;11360:15;11346:29;;11393:1;11403:195;11417:6;11414:1;11411:13;11403:195;;;11482:13;;-1:-1:-1;;;;;11478:39:1;11466:52;;11573:15;;;;11538:12;;;;11514:1;11432:9;11403:195;;;-1:-1:-1;;;;;;;11654:32:1;;;;11649:2;11634:18;;11627:60;-1:-1:-1;;;11718:3:1;11703:19;11696:35;11615:3;10757:980;-1:-1:-1;;;10757:980:1:o;12354:306::-;12442:6;12450;12458;12511:2;12499:9;12490:7;12486:23;12482:32;12479:52;;;12527:1;12524;12517:12;12479:52;12556:9;12550:16;12540:26;;12606:2;12595:9;12591:18;12585:25;12575:35;;12650:2;12639:9;12635:18;12629:25;12619:35;;12354:306;;;;;:::o

Swarm Source

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