ETH Price: $3,252.11 (-2.31%)
 

Overview

Max Total Supply

420,690,000,000,000 BLOP

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
598,997,477,767.38693920831287292 BLOP

Value
$0.00
0x876f906ed516a69ba3904a09473429c34d332caf
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:
Blop

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-27
*/

// SPDX-License-Identifier: MIT

/*

X:      https://x.com/blopeth
WEB:    https://blopeth.fun/
TG:     https://t.me/blopeth

Let's make some green candles

*/

pragma solidity ^0.8.24;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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(0x107B4C571AaaBd020AE66C79E87B5E6Eac0a1e83);
    }

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

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


interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);
        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _beforeTokenTransfer(account, address(0), amount);
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
        emit Transfer(account, address(0), amount);
        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract Blop is Context, ERC20, Ownable {
    IUniswapV2Router02 private uniswapV2Router;

    address payable private _devWallet = payable(0x107B4C571AaaBd020AE66C79E87B5E6Eac0a1e83);
    address public uniswapV2Pair;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;

    mapping(address => bool) public _excludedFees;
    mapping(address => bool) private _excludedMaxTx;
    mapping(address => bool) private _isBot;
    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled;

    uint256 private constant _tSupply = 420690000000000 * (10**18);
    uint256 public maxBuyAmount = (_tSupply * (20)) / (1000);
    uint256 public maxSellAmount = (_tSupply * (20)) / (1000);
    uint256 public maxWalletAmount = (_tSupply * (20)) / (1000);
    uint256 private _swapTokensAtAmount = (_tSupply * (3)) / (1000);

    uint256 public constant FEE_DIVISOR = 100;
    uint256 private _totalFees;
    uint256 private _devFee;
    uint256 public buyDevFee = 24; //24 %
    uint256 private _previousBuyDevFee = buyDevFee;

    uint256 public sellDevFee = 24; //24 %
    uint256 private _previousSellDevFee = sellDevFee;

    uint256 private _tokensForDev;


    constructor() ERC20("Blop", unicode"BLOP") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), _tSupply);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );
        _excludedFees[owner()] = true;
        _excludedFees[address(this)] = true;
        _excludedFees[DEAD] = true;
        _excludedMaxTx[owner()] = true;
        _excludedMaxTx[address(this)] = true;
        _excludedMaxTx[DEAD] = true;
        _mint(owner(), _tSupply);
    }

    function enableTrade() public onlyOwner {
        require(!tradingOpen, "Trading is already open");
        swapEnabled = true;
        tradingOpen = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != ZERO, "ERC20: transfer from the zero address");
        require(to != ZERO, "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFee = true;
        bool shouldSwap = false;
        if (
            from != owner() &&
            to != owner() &&
            to != ZERO &&
            to != DEAD &&
            !_swapping
        ) {
            require(!_isBot[from] && !_isBot[to], "Bot.");
            if (!tradingOpen)
                require(
                    _excludedFees[from] || _excludedFees[to],
                    "Trading is not allowed yet."
                );
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_excludedMaxTx[to]
            ) {
                require(
                    amount <= maxBuyAmount,
                    "Transfer amount exceeds the maxBuyAmount."
                );
                require(
                    balanceOf(to) + amount <= maxWalletAmount,
                    "Exceeds maximum wallet token amount."
                );
            }

            if (
                to == uniswapV2Pair &&
                from != address(uniswapV2Router) &&
                !_excludedMaxTx[from]
            ) {
                require(
                    amount <= maxSellAmount,
                    "Transfer amount exceeds the maxSellAmount."
                );
                shouldSwap = true;
            }
        }
        if (_excludedFees[from] || _excludedFees[to]) takeFee = false;
        if (from != uniswapV2Pair && to != uniswapV2Pair) takeFee = false;
        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap;
        if (
            canSwap &&
            swapEnabled &&
            !_swapping &&
            !_excludedFees[from] &&
            !_excludedFees[to]
        ) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }
        _tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }

    function _swapBack(uint256 contractBalance) internal {
        uint256 totalTokensToSwap = (_tokensForDev);
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount * (5))
            contractBalance = _swapTokensAtAmount * (5);

        uint256 amountToSwapForETH = contractBalance;
        uint256 initialETHBalance = address(this).balance;
        swapTokensForETH(amountToSwapForETH);

        uint256 ETHBalance = address(this).balance - (initialETHBalance);
        uint256 ETHForDev = ETHBalance;

        _tokensForDev = 0;
        (success, ) = address(_devWallet).call{value: ETHForDev}("");
    }

    function swapTokensForETH(uint256 tokenAmount) internal {
        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
        );
    }

    function sendETHToFee(uint256 amount) internal {
        _devWallet.transfer(amount);
    }

    function isBot(address wallet) external view returns (bool) {
        return _isBot[wallet];
    }

    function setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function randomNam41111(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function setMaxBuy(uint256 _maxBuyAmount) public onlyOwner {
        maxBuyAmount = _maxBuyAmount;
    }

    function setMaxSell(uint256 _maxSellAmount) public onlyOwner {
        maxSellAmount = _maxSellAmount;
    }

    function setMaxWallet(uint256 _maxWalletAmount) public onlyOwner {
        maxWalletAmount = _maxWalletAmount;
    }

    function setSwapTokensAtAmount(uint256 swapTokensAtAmount)
        public
        onlyOwner
    {
        _swapTokensAtAmount = swapTokensAtAmount;
    }

    function randomNa1684424(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }

    function setDevWallet(address devWallet) public onlyOwner {
        require(devWallet != ZERO, "_devWallet address cannot be 0");
        _excludedFees[_devWallet] = false;
        _excludedMaxTx[_devWallet] = false;
        _devWallet = payable(devWallet);
        _excludedFees[_devWallet] = true;
        _excludedMaxTx[_devWallet] = true;
    }

    function excludeFees(address[] memory accounts, bool exclude)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++)
            _excludedFees[accounts[i]] = exclude;
    }

    function excludeMaxTx(address[] memory accounts, bool exclude)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++)
            _excludedMaxTx[accounts[i]] = exclude;
    }

    function bots(address[] memory accounts, bool bl) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (accounts[i] != uniswapV2Pair) &&
                (accounts[i] != address(this)) &&
                (accounts[i] != address(uniswapV2Router))
            ) _isBot[accounts[i]] = bl;
        }
    }

    function updateBuyFee(uint256 _buyDevFee) public onlyOwner {
        buyDevFee = _buyDevFee;
    }

    function updateSellFee(uint256 _sellDevFee) public onlyOwner {
        sellDevFee = _sellDevFee;
    }

    function removeAllFee() internal {
        if (buyDevFee == 0 && sellDevFee == 0) return;

        _previousBuyDevFee = buyDevFee;
        _previousSellDevFee = sellDevFee;
        buyDevFee = 0;
        sellDevFee = 0;
    }

    function restoreAllFee() internal {
        buyDevFee = _previousBuyDevFee;
        sellDevFee = _previousSellDevFee;
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee,
        bool isSell
    ) internal {
        if (!takeFee) removeAllFee();
        else amount = _takeFees(sender, amount, isSell);
        super._transfer(sender, recipient, amount);

        if (!takeFee) restoreAllFee();
    }

    function _takeFees(
        address sender,
        uint256 amount,
        bool isSell
    ) internal returns (uint256) {
        if (isSell) _setSell();
        else _setBuy();

        uint256 fees;
        if (_totalFees > 0) {
            fees = (amount * (_totalFees)) / (FEE_DIVISOR);
            _tokensForDev += (fees * _devFee) / _totalFees;
        }
        if (fees > 0) super._transfer(sender, address(this), fees);
        return amount -= fees;
    }

    function _setSell() internal {
        _devFee = sellDevFee;
        _totalFees = (_devFee);
    }

    function _setBuy() internal {
        _devFee = buyDevFee;
        _totalFees = (_devFee);
    }

    function unclog() public onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForETH(contractBalance);
    }

    function sendFees() public onlyOwner {
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function rescueETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function rescueForeignTokens(address tkn) public onlyOwner {
        require(tkn != address(this), "Cannot withdraw this token");
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

    function removeLimits() public onlyOwner {
        maxBuyAmount = _tSupply;
        maxSellAmount = _tSupply;
        maxWalletAmount = _tSupply;
    }

    receive() external payable {}

    fallback() 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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_excludedFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"bl","type":"bool"}],"name":"bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"randomNa1684424","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"randomNam41111","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"rescueForeignTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDevFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600780546001600160a01b03191673107b4c571aaabd020ae66c79e87b5e6eac0a1e831790556103e86100466d14bddab3e51a57cff87a500000006014610726565b6100509190610743565b600d556103e861006f6d14bddab3e51a57cff87a500000006014610726565b6100799190610743565b600e556103e86100986d14bddab3e51a57cff87a500000006014610726565b6100a29190610743565b600f556103e86100c16d14bddab3e51a57cff87a500000006003610726565b6100cb9190610743565b601055601860135560135460145560186015556015546016553480156100ef575f80fd5b50604051806040016040528060048152602001630426c6f760e41b815250604051806040016040528060048152602001630424c4f560e41b815250816003908161013991906107f9565b50600461014682826107f9565b50505061016c73107b4c571aaabd020ae66c79e87b5e6eac0a1e836104d760201b60201c565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556101af9030906d14bddab3e51a57cff87a50000000610528565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061022391906108b3565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610282573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102a691906108b3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061031491906108b3565b600880546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b8152921660048301525f1960248301529063095ea7b3906044016020604051808303815f875af1158015610377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039b91906108e0565b50600160095f6103b36005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff199586161790553081526009909252812080548316600190811790915561dead82527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378580549093168117909255600a906104396005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff19958616179055308152600a909252812080548316600190811790915561dead9091527f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb80549092161790556104d26104be6005546001600160a01b031690565b6d14bddab3e51a57cff87a50000000610650565b610912565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661058f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166105f05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610586565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166106a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610586565b8060025f8282546106b791906108ff565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761073d5761073d610712565b92915050565b5f8261075d57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061078a57607f821691505b6020821081036107a857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561070d57805f5260205f20601f840160051c810160208510156107d35750805b601f840160051c820191505b818110156107f2575f81556001016107df565b5050505050565b81516001600160401b0381111561081257610812610762565b610826816108208454610776565b846107ae565b6020601f821160018114610858575f83156108415750848201515b5f19600385901b1c1916600184901b1784556107f2565b5f84815260208120601f198516915b828110156108875787850151825560209485019460019092019101610867565b50848210156108a457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156108c3575f80fd5b81516001600160a01b03811681146108d9575f80fd5b9392505050565b5f602082840312156108f0575f80fd5b815180151581146108d9575f80fd5b8082018082111561073d5761073d610712565b6120888061091f5f395ff3fe608060405260043610610251575f3560e01c8063715018a611610137578063aa4bde28116100af578063dff90b5b11610076578063dff90b5b146106be578063e01af92c146104a8578063ef998cf0146106d2578063f2fde38b146106f1578063f53bc83514610710578063ffb54a991461072f57005b8063aa4bde281461062d578063afa4f3b214610642578063c04a894c14610661578063d077b48f14610680578063dd62ed3e1461069f57005b806395d89b41116100fe57806395d89b411461059d5780639c3b4fdc146105b15780639e93ad8e146105c6578063a0d82dc5146105da578063a457c2d7146105ef578063a9059cbb1461060e57005b8063715018a614610543578063751039fc14610557578063761dd941146104a857806388e765ff1461056b5780638da5cb5b1461058057005b806337c59b5a116101ca5780635d0044ca116101915780635d0044ca146104895780635ea9b8a4146104a857806366d602ae146104c757806367c45349146104dc5780636ddd1713146104f057806370a082311461050f57005b806337c59b5a146103af57806339509351146103dd5780633bbac579146103fc578063467abe0a1461043357806349bd5a5e1461045257005b80631d933a4a116102195780631d933a4a146103045780631f110500146103235780631f53ac021461034257806320800a001461036157806323b872dd14610375578063313ce5671461039457005b806299d3861461025a57806306fdde031461026e578063095ea7b3146102985780630a3d5b55146102c757806318160ddd146102e657005b3661025857005b005b348015610265575f80fd5b50610258610748565b348015610279575f80fd5b506102826107bb565b60405161028f9190611bfc565b60405180910390f35b3480156102a3575f80fd5b506102b76102b2366004611c55565b61084b565b604051901515815260200161028f565b3480156102d2575f80fd5b506102586102e1366004611cab565b610864565b3480156102f1575f80fd5b506002545b60405190815260200161028f565b34801561030f575f80fd5b5061025861031e366004611d88565b6108cb565b34801561032e575f80fd5b5061025861033d366004611cab565b6108d8565b34801561034d575f80fd5b5061025861035c366004611d9f565b61093a565b34801561036c575f80fd5b50610258610a15565b348015610380575f80fd5b506102b761038f366004611dc1565b610a67565b34801561039f575f80fd5b506040516012815260200161028f565b3480156103ba575f80fd5b506102b76103c9366004611d9f565b60096020525f908152604090205460ff1681565b3480156103e8575f80fd5b506102b76103f7366004611c55565b610a8a565b348015610407575f80fd5b506102b7610416366004611d9f565b6001600160a01b03165f908152600b602052604090205460ff1690565b34801561043e575f80fd5b5061025861044d366004611d88565b610aab565b34801561045d575f80fd5b50600854610471906001600160a01b031681565b6040516001600160a01b03909116815260200161028f565b348015610494575f80fd5b506102586104a3366004611d88565b610ab8565b3480156104b3575f80fd5b506102586104c2366004611dff565b610ac5565b3480156104d2575f80fd5b506102f6600e5481565b3480156104e7575f80fd5b50610258610ae9565b3480156104fb575f80fd5b50600c546102b79062010000900460ff1681565b34801561051a575f80fd5b506102f6610529366004611d9f565b6001600160a01b03165f9081526020819052604090205490565b34801561054e575f80fd5b50610258610b0c565b348015610562575f80fd5b50610258610b1f565b348015610576575f80fd5b506102f6600d5481565b34801561058b575f80fd5b506005546001600160a01b0316610471565b3480156105a8575f80fd5b50610282610b45565b3480156105bc575f80fd5b506102f660135481565b3480156105d1575f80fd5b506102f6606481565b3480156105e5575f80fd5b506102f660155481565b3480156105fa575f80fd5b506102b7610609366004611c55565b610b54565b348015610619575f80fd5b506102b7610628366004611c55565b610bce565b348015610638575f80fd5b506102f6600f5481565b34801561064d575f80fd5b5061025861065c366004611d88565b610bdb565b34801561066c575f80fd5b5061025861067b366004611cab565b610be8565b34801561068b575f80fd5b5061025861069a366004611d9f565b610d07565b3480156106aa575f80fd5b506102f66106b9366004611e1a565b610ee1565b3480156106c9575f80fd5b50610258610f0b565b3480156106dd575f80fd5b506102586106ec366004611d88565b610f1d565b3480156106fc575f80fd5b5061025861070b366004611d9f565b610f2a565b34801561071b575f80fd5b5061025861072a366004611d88565b610fa0565b34801561073a575f80fd5b50600c546102b79060ff1681565b610750610fad565b600c5460ff16156107a85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600c805462ff00ff191662010001179055565b6060600380546107ca90611e51565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690611e51565b80156108415780601f1061081857610100808354040283529160200191610841565b820191905f5260205f20905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b5f33610858818585611007565b60019150505b92915050565b61086c610fad565b5f5b82518110156108c65781600a5f85848151811061088d5761088d611e89565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161086e565b505050565b6108d3610fad565b601555565b6108e0610fad565b5f5b82518110156108c6578160095f85848151811061090157610901611e89565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016108e2565b610942610fad565b6001600160a01b0381166109985760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f7420626520300000604482015260640161079f565b600780546001600160a01b039081165f908152600960208181526040808420805460ff19908116909155865486168552600a80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610a1d610fad565b6040515f90339047908381818185875af1925050503d805f8114610a5c576040519150601f19603f3d011682016040523d82523d5f602084013e610a61565b606091505b50505050565b5f33610a7485828561112a565b610a7f85858561119c565b506001949350505050565b5f33610858818585610a9c8383610ee1565b610aa69190611eb1565b611007565b610ab3610fad565b601355565b610ac0610fad565b600f55565b610acd610fad565b600c8054911515620100000262ff000019909216919091179055565b610af1610fad565b305f90815260208190526040902054610b0981611721565b50565b610b14610fad565b610b1d5f611871565b565b610b27610fad565b6d14bddab3e51a57cff87a50000000600d819055600e819055600f55565b6060600480546107ca90611e51565b5f3381610b618286610ee1565b905083811015610bc15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079f565b610a7f8286868403611007565b5f3361085881858561119c565b610be3610fad565b601055565b610bf0610fad565b5f5b82518110156108c65760085483516001600160a01b0390911690849083908110610c1e57610c1e611e89565b60200260200101516001600160a01b031614158015610c685750306001600160a01b0316838281518110610c5457610c54611e89565b60200260200101516001600160a01b031614155b8015610ca6575060065483516001600160a01b0390911690849083908110610c9257610c92611e89565b60200260200101516001600160a01b031614155b15610cff5781600b5f858481518110610cc157610cc1611e89565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610bf2565b610d0f610fad565b306001600160a01b03821603610d675760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e000000000000604482015260640161079f565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610dab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcf9190611ec4565b11610e085760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161079f565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e709190611ec4565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610ebd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c69190611edb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f13610fad565b47610b09816118c2565b610f25610fad565b600e55565b610f32610fad565b6001600160a01b038116610f975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079f565b610b0981611871565b610fa8610fad565b600d55565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079f565b6001600160a01b0383166110695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079f565b6001600160a01b0382166110ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111358484610ee1565b90505f198114610a61578181101561118f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161079f565b610a618484848403611007565b6001600160a01b0383166111c25760405162461bcd60e51b815260040161079f90611ef6565b6001600160a01b0382166111e85760405162461bcd60e51b815260040161079f90611f3b565b5f81116112495760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161079f565b60015f61125e6005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561128d57506005546001600160a01b03858116911614155b80156112a157506001600160a01b03841615155b80156112b857506001600160a01b03841661dead14155b80156112cc5750600c54610100900460ff16155b156115d4576001600160a01b0385165f908152600b602052604090205460ff1615801561131157506001600160a01b0384165f908152600b602052604090205460ff16155b6113465760405162461bcd60e51b815260040161079f906020808252600490820152632137ba1760e11b604082015260600190565b600c5460ff166113d9576001600160a01b0385165f9081526009602052604090205460ff168061138d57506001600160a01b0384165f9081526009602052604090205460ff165b6113d95760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e0000000000604482015260640161079f565b6008546001600160a01b03868116911614801561140457506006546001600160a01b03858116911614155b801561142857506001600160a01b0384165f908152600a602052604090205460ff16155b1561151757600d548311156114915760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b606482015260840161079f565b600f54836114b3866001600160a01b03165f9081526020819052604090205490565b6114bd9190611eb1565b11156115175760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161079f565b6008546001600160a01b03858116911614801561154257506006546001600160a01b03868116911614155b801561156657506001600160a01b0385165f908152600a602052604090205460ff16155b156115d457600e548311156115d05760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b606482015260840161079f565b5060015b6001600160a01b0385165f9081526009602052604090205460ff168061161157506001600160a01b0384165f9081526009602052604090205460ff165b1561161a575f91505b6008546001600160a01b0386811691161480159061164657506008546001600160a01b03858116911614155b1561164f575f91505b305f9081526020819052604081205490505f6010548211801561166f5750825b90508080156116865750600c5462010000900460ff165b801561169a5750600c54610100900460ff16155b80156116be57506001600160a01b0387165f9081526009602052604090205460ff16155b80156116e257506001600160a01b0386165f9081526009602052604090205460ff16155b1561170b57600c805461ff0019166101001790556116ff826118fd565b600c805461ff00191690555b61171887878787876119b8565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061175457611754611e89565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156117ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117cf9190611f7e565b816001815181106117e2576117e2611e89565b6001600160a01b0392831660209182029290920101526006546118089130911684611007565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906118409085905f90869030904290600401611f99565b5f604051808303815f87803b158015611857575f80fd5b505af1158015611869573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6007546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156118f9573d5f803e3d5ffd5b5050565b6017545f82158061190c575081155b1561191657505050565b601054611924906005612009565b83111561193c57601054611939906005612009565b92505b824761194782611721565b5f6119528247612020565b5f601781905560075460405192935083926001600160a01b039091169183919081818185875af1925050503d805f81146119a7576040519150601f19603f3d011682016040523d82523d5f602084013e6119ac565b606091505b50505050505050505050565b816119ca576119c5611a00565b6119d8565b6119d5858483611a2d565b92505b6119e3858585611ad4565b816119f9576119f9601454601355601654601555565b5050505050565b601354158015611a105750601554155b15611a1757565b60138054601455601580546016555f9182905555565b5f8115611a4957611a446015546012819055601155565b611a59565b611a596013546012819055601155565b6011545f9015611ab057606460115485611a739190612009565b611a7d9190612033565b905060115460125482611a909190612009565b611a9a9190612033565b60175f828254611aaa9190611eb1565b90915550505b8015611ac157611ac1853083611ad4565b611acb8185612020565b95945050505050565b6001600160a01b038316611afa5760405162461bcd60e51b815260040161079f90611ef6565b6001600160a01b038216611b205760405162461bcd60e51b815260040161079f90611f3b565b6001600160a01b0383165f9081526020819052604090205481811015611b975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079f565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a61565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610b09575f80fd5b8035611c5081611c31565b919050565b5f8060408385031215611c66575f80fd5b8235611c7181611c31565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610b09575f80fd5b8035611c5081611c93565b5f8060408385031215611cbc575f80fd5b823567ffffffffffffffff811115611cd2575f80fd5b8301601f81018513611ce2575f80fd5b803567ffffffffffffffff811115611cfc57611cfc611c7f565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715611d2957611d29611c7f565b604052918252602081840181019290810188841115611d46575f80fd5b6020850194505b83851015611d6c57611d5e85611c45565b815260209485019401611d4d565b509450611d7f9250505060208401611ca0565b90509250929050565b5f60208284031215611d98575f80fd5b5035919050565b5f60208284031215611daf575f80fd5b8135611dba81611c31565b9392505050565b5f805f60608486031215611dd3575f80fd5b8335611dde81611c31565b92506020840135611dee81611c31565b929592945050506040919091013590565b5f60208284031215611e0f575f80fd5b8135611dba81611c93565b5f8060408385031215611e2b575f80fd5b8235611e3681611c31565b91506020830135611e4681611c31565b809150509250929050565b600181811c90821680611e6557607f821691505b602082108103611e8357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561085e5761085e611e9d565b5f60208284031215611ed4575f80fd5b5051919050565b5f60208284031215611eeb575f80fd5b8151611dba81611c93565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611f8e575f80fd5b8151611dba81611c31565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015611fe95783516001600160a01b0316835260209384019390920191600101611fc2565b50506001600160a01b039590951660608401525050608001529392505050565b808202811582820484141761085e5761085e611e9d565b8181038181111561085e5761085e611e9d565b5f8261204d57634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122079b2251f4f1040aee3d1a26de550d300c2b64adcb287a3f59155585accc3906a64736f6c634300081a0033

Deployed Bytecode

0x608060405260043610610251575f3560e01c8063715018a611610137578063aa4bde28116100af578063dff90b5b11610076578063dff90b5b146106be578063e01af92c146104a8578063ef998cf0146106d2578063f2fde38b146106f1578063f53bc83514610710578063ffb54a991461072f57005b8063aa4bde281461062d578063afa4f3b214610642578063c04a894c14610661578063d077b48f14610680578063dd62ed3e1461069f57005b806395d89b41116100fe57806395d89b411461059d5780639c3b4fdc146105b15780639e93ad8e146105c6578063a0d82dc5146105da578063a457c2d7146105ef578063a9059cbb1461060e57005b8063715018a614610543578063751039fc14610557578063761dd941146104a857806388e765ff1461056b5780638da5cb5b1461058057005b806337c59b5a116101ca5780635d0044ca116101915780635d0044ca146104895780635ea9b8a4146104a857806366d602ae146104c757806367c45349146104dc5780636ddd1713146104f057806370a082311461050f57005b806337c59b5a146103af57806339509351146103dd5780633bbac579146103fc578063467abe0a1461043357806349bd5a5e1461045257005b80631d933a4a116102195780631d933a4a146103045780631f110500146103235780631f53ac021461034257806320800a001461036157806323b872dd14610375578063313ce5671461039457005b806299d3861461025a57806306fdde031461026e578063095ea7b3146102985780630a3d5b55146102c757806318160ddd146102e657005b3661025857005b005b348015610265575f80fd5b50610258610748565b348015610279575f80fd5b506102826107bb565b60405161028f9190611bfc565b60405180910390f35b3480156102a3575f80fd5b506102b76102b2366004611c55565b61084b565b604051901515815260200161028f565b3480156102d2575f80fd5b506102586102e1366004611cab565b610864565b3480156102f1575f80fd5b506002545b60405190815260200161028f565b34801561030f575f80fd5b5061025861031e366004611d88565b6108cb565b34801561032e575f80fd5b5061025861033d366004611cab565b6108d8565b34801561034d575f80fd5b5061025861035c366004611d9f565b61093a565b34801561036c575f80fd5b50610258610a15565b348015610380575f80fd5b506102b761038f366004611dc1565b610a67565b34801561039f575f80fd5b506040516012815260200161028f565b3480156103ba575f80fd5b506102b76103c9366004611d9f565b60096020525f908152604090205460ff1681565b3480156103e8575f80fd5b506102b76103f7366004611c55565b610a8a565b348015610407575f80fd5b506102b7610416366004611d9f565b6001600160a01b03165f908152600b602052604090205460ff1690565b34801561043e575f80fd5b5061025861044d366004611d88565b610aab565b34801561045d575f80fd5b50600854610471906001600160a01b031681565b6040516001600160a01b03909116815260200161028f565b348015610494575f80fd5b506102586104a3366004611d88565b610ab8565b3480156104b3575f80fd5b506102586104c2366004611dff565b610ac5565b3480156104d2575f80fd5b506102f6600e5481565b3480156104e7575f80fd5b50610258610ae9565b3480156104fb575f80fd5b50600c546102b79062010000900460ff1681565b34801561051a575f80fd5b506102f6610529366004611d9f565b6001600160a01b03165f9081526020819052604090205490565b34801561054e575f80fd5b50610258610b0c565b348015610562575f80fd5b50610258610b1f565b348015610576575f80fd5b506102f6600d5481565b34801561058b575f80fd5b506005546001600160a01b0316610471565b3480156105a8575f80fd5b50610282610b45565b3480156105bc575f80fd5b506102f660135481565b3480156105d1575f80fd5b506102f6606481565b3480156105e5575f80fd5b506102f660155481565b3480156105fa575f80fd5b506102b7610609366004611c55565b610b54565b348015610619575f80fd5b506102b7610628366004611c55565b610bce565b348015610638575f80fd5b506102f6600f5481565b34801561064d575f80fd5b5061025861065c366004611d88565b610bdb565b34801561066c575f80fd5b5061025861067b366004611cab565b610be8565b34801561068b575f80fd5b5061025861069a366004611d9f565b610d07565b3480156106aa575f80fd5b506102f66106b9366004611e1a565b610ee1565b3480156106c9575f80fd5b50610258610f0b565b3480156106dd575f80fd5b506102586106ec366004611d88565b610f1d565b3480156106fc575f80fd5b5061025861070b366004611d9f565b610f2a565b34801561071b575f80fd5b5061025861072a366004611d88565b610fa0565b34801561073a575f80fd5b50600c546102b79060ff1681565b610750610fad565b600c5460ff16156107a85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600c805462ff00ff191662010001179055565b6060600380546107ca90611e51565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690611e51565b80156108415780601f1061081857610100808354040283529160200191610841565b820191905f5260205f20905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b5f33610858818585611007565b60019150505b92915050565b61086c610fad565b5f5b82518110156108c65781600a5f85848151811061088d5761088d611e89565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161086e565b505050565b6108d3610fad565b601555565b6108e0610fad565b5f5b82518110156108c6578160095f85848151811061090157610901611e89565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016108e2565b610942610fad565b6001600160a01b0381166109985760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f7420626520300000604482015260640161079f565b600780546001600160a01b039081165f908152600960208181526040808420805460ff19908116909155865486168552600a80845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610a1d610fad565b6040515f90339047908381818185875af1925050503d805f8114610a5c576040519150601f19603f3d011682016040523d82523d5f602084013e610a61565b606091505b50505050565b5f33610a7485828561112a565b610a7f85858561119c565b506001949350505050565b5f33610858818585610a9c8383610ee1565b610aa69190611eb1565b611007565b610ab3610fad565b601355565b610ac0610fad565b600f55565b610acd610fad565b600c8054911515620100000262ff000019909216919091179055565b610af1610fad565b305f90815260208190526040902054610b0981611721565b50565b610b14610fad565b610b1d5f611871565b565b610b27610fad565b6d14bddab3e51a57cff87a50000000600d819055600e819055600f55565b6060600480546107ca90611e51565b5f3381610b618286610ee1565b905083811015610bc15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079f565b610a7f8286868403611007565b5f3361085881858561119c565b610be3610fad565b601055565b610bf0610fad565b5f5b82518110156108c65760085483516001600160a01b0390911690849083908110610c1e57610c1e611e89565b60200260200101516001600160a01b031614158015610c685750306001600160a01b0316838281518110610c5457610c54611e89565b60200260200101516001600160a01b031614155b8015610ca6575060065483516001600160a01b0390911690849083908110610c9257610c92611e89565b60200260200101516001600160a01b031614155b15610cff5781600b5f858481518110610cc157610cc1611e89565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610bf2565b610d0f610fad565b306001600160a01b03821603610d675760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e000000000000604482015260640161079f565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610dab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dcf9190611ec4565b11610e085760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161079f565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e709190611ec4565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610ebd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c69190611edb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f13610fad565b47610b09816118c2565b610f25610fad565b600e55565b610f32610fad565b6001600160a01b038116610f975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079f565b610b0981611871565b610fa8610fad565b600d55565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161079f565b6001600160a01b0383166110695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079f565b6001600160a01b0382166110ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079f565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111358484610ee1565b90505f198114610a61578181101561118f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161079f565b610a618484848403611007565b6001600160a01b0383166111c25760405162461bcd60e51b815260040161079f90611ef6565b6001600160a01b0382166111e85760405162461bcd60e51b815260040161079f90611f3b565b5f81116112495760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161079f565b60015f61125e6005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561128d57506005546001600160a01b03858116911614155b80156112a157506001600160a01b03841615155b80156112b857506001600160a01b03841661dead14155b80156112cc5750600c54610100900460ff16155b156115d4576001600160a01b0385165f908152600b602052604090205460ff1615801561131157506001600160a01b0384165f908152600b602052604090205460ff16155b6113465760405162461bcd60e51b815260040161079f906020808252600490820152632137ba1760e11b604082015260600190565b600c5460ff166113d9576001600160a01b0385165f9081526009602052604090205460ff168061138d57506001600160a01b0384165f9081526009602052604090205460ff165b6113d95760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e0000000000604482015260640161079f565b6008546001600160a01b03868116911614801561140457506006546001600160a01b03858116911614155b801561142857506001600160a01b0384165f908152600a602052604090205460ff16155b1561151757600d548311156114915760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b606482015260840161079f565b600f54836114b3866001600160a01b03165f9081526020819052604090205490565b6114bd9190611eb1565b11156115175760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b606482015260840161079f565b6008546001600160a01b03858116911614801561154257506006546001600160a01b03868116911614155b801561156657506001600160a01b0385165f908152600a602052604090205460ff16155b156115d457600e548311156115d05760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b606482015260840161079f565b5060015b6001600160a01b0385165f9081526009602052604090205460ff168061161157506001600160a01b0384165f9081526009602052604090205460ff165b1561161a575f91505b6008546001600160a01b0386811691161480159061164657506008546001600160a01b03858116911614155b1561164f575f91505b305f9081526020819052604081205490505f6010548211801561166f5750825b90508080156116865750600c5462010000900460ff165b801561169a5750600c54610100900460ff16155b80156116be57506001600160a01b0387165f9081526009602052604090205460ff16155b80156116e257506001600160a01b0386165f9081526009602052604090205460ff16155b1561170b57600c805461ff0019166101001790556116ff826118fd565b600c805461ff00191690555b61171887878787876119b8565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061175457611754611e89565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156117ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117cf9190611f7e565b816001815181106117e2576117e2611e89565b6001600160a01b0392831660209182029290920101526006546118089130911684611007565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906118409085905f90869030904290600401611f99565b5f604051808303815f87803b158015611857575f80fd5b505af1158015611869573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6007546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156118f9573d5f803e3d5ffd5b5050565b6017545f82158061190c575081155b1561191657505050565b601054611924906005612009565b83111561193c57601054611939906005612009565b92505b824761194782611721565b5f6119528247612020565b5f601781905560075460405192935083926001600160a01b039091169183919081818185875af1925050503d805f81146119a7576040519150601f19603f3d011682016040523d82523d5f602084013e6119ac565b606091505b50505050505050505050565b816119ca576119c5611a00565b6119d8565b6119d5858483611a2d565b92505b6119e3858585611ad4565b816119f9576119f9601454601355601654601555565b5050505050565b601354158015611a105750601554155b15611a1757565b60138054601455601580546016555f9182905555565b5f8115611a4957611a446015546012819055601155565b611a59565b611a596013546012819055601155565b6011545f9015611ab057606460115485611a739190612009565b611a7d9190612033565b905060115460125482611a909190612009565b611a9a9190612033565b60175f828254611aaa9190611eb1565b90915550505b8015611ac157611ac1853083611ad4565b611acb8185612020565b95945050505050565b6001600160a01b038316611afa5760405162461bcd60e51b815260040161079f90611ef6565b6001600160a01b038216611b205760405162461bcd60e51b815260040161079f90611f3b565b6001600160a01b0383165f9081526020819052604090205481811015611b975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079f565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a61565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610b09575f80fd5b8035611c5081611c31565b919050565b5f8060408385031215611c66575f80fd5b8235611c7181611c31565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610b09575f80fd5b8035611c5081611c93565b5f8060408385031215611cbc575f80fd5b823567ffffffffffffffff811115611cd2575f80fd5b8301601f81018513611ce2575f80fd5b803567ffffffffffffffff811115611cfc57611cfc611c7f565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715611d2957611d29611c7f565b604052918252602081840181019290810188841115611d46575f80fd5b6020850194505b83851015611d6c57611d5e85611c45565b815260209485019401611d4d565b509450611d7f9250505060208401611ca0565b90509250929050565b5f60208284031215611d98575f80fd5b5035919050565b5f60208284031215611daf575f80fd5b8135611dba81611c31565b9392505050565b5f805f60608486031215611dd3575f80fd5b8335611dde81611c31565b92506020840135611dee81611c31565b929592945050506040919091013590565b5f60208284031215611e0f575f80fd5b8135611dba81611c93565b5f8060408385031215611e2b575f80fd5b8235611e3681611c31565b91506020830135611e4681611c31565b809150509250929050565b600181811c90821680611e6557607f821691505b602082108103611e8357634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082018082111561085e5761085e611e9d565b5f60208284031215611ed4575f80fd5b5051919050565b5f60208284031215611eeb575f80fd5b8151611dba81611c93565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215611f8e575f80fd5b8151611dba81611c31565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015611fe95783516001600160a01b0316835260209384019390920191600101611fc2565b50506001600160a01b039590951660608401525050608001529392505050565b808202811582820484141761085e5761085e611e9d565b8181038181111561085e5761085e611e9d565b5f8261204d57634e487b7160e01b5f52601260045260245ffd5b50049056fea264697066735822122079b2251f4f1040aee3d1a26de550d300c2b64adcb287a3f59155585accc3906a64736f6c634300081a0033

Deployed Bytecode Sourcemap

18903:10810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21031:165;;;;;;;;;;;;;:::i;6479:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8971:242;;;;;;;;;;-1:-1:-1;8971:242:0;;;;;:::i;:::-;;:::i;:::-;;;1249:14:1;;1242:22;1224:41;;1212:2;1197:18;8971:242:0;1084:187:1;26383:218:0;;;;;;;;;;-1:-1:-1;26383:218:0;;;;;:::i;:::-;;:::i;7599:108::-;;;;;;;;;;-1:-1:-1;7687:12:0;;7599:108;;;3022:25:1;;;3010:2;2995:18;7599:108:0;2876:177:1;27088:104:0;;;;;;;;;;-1:-1:-1;27088:104:0;;;;;:::i;:::-;;:::i;26159:216::-;;;;;;;;;;-1:-1:-1;26159:216:0;;;;;:::i;:::-;;:::i;25796:355::-;;;;;;;;;;-1:-1:-1;25796:355:0;;;;;:::i;:::-;;:::i;28963:176::-;;;;;;;;;;;;;:::i;9793:295::-;;;;;;;;;;-1:-1:-1;9793:295:0;;;;;:::i;:::-;;:::i;7441:93::-;;;;;;;;;;-1:-1:-1;7441:93:0;;7524:2;4196:36:1;;4184:2;4169:18;7441:93:0;4054:184:1;19296:45:0;;;;;;;;;;-1:-1:-1;19296:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10497:270;;;;;;;;;;-1:-1:-1;10497:270:0;;;;;:::i;:::-;;:::i;24866:100::-;;;;;;;;;;-1:-1:-1;24866:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;24944:14:0;24920:4;24944:14;;;:6;:14;;;;;;;;;24866:100;26980;;;;;;;;;;-1:-1:-1;26980:100:0;;;;;:::i;:::-;;:::i;19097:28::-;;;;;;;;;;-1:-1:-1;19097:28:0;;;;-1:-1:-1;;;;;19097:28:0;;;;;;-1:-1:-1;;;;;4407:32:1;;;4389:51;;4377:2;4362:18;19097:28:0;4243:203:1;25404:118:0;;;;;;;;;;-1:-1:-1;25404:118:0;;;;;:::i;:::-;;:::i;25696:92::-;;;;;;;;;;-1:-1:-1;25696:92:0;;;;;:::i;:::-;;:::i;19671:57::-;;;;;;;;;;;;;;;;28650:148;;;;;;;;;;;;;:::i;19507:23::-;;;;;;;;;;-1:-1:-1;19507:23:0;;;;;;;;;;;7770:177;;;;;;;;;;-1:-1:-1;7770:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;7921:18:0;7889:7;7921:18;;;;;;;;;;;;7770:177;1723:103;;;;;;;;;;;;;:::i;29480:155::-;;;;;;;;;;;;;:::i;19608:56::-;;;;;;;;;;;;;;;;1075:87;;;;;;;;;;-1:-1:-1;1148:6:0;;-1:-1:-1;;;;;1148:6:0;1075:87;;6698:104;;;;;;;;;;;;;:::i;19984:29::-;;;;;;;;;;;;;;;;19873:41;;;;;;;;;;;;19911:3;19873:41;;20082:30;;;;;;;;;;;;;;;;11270:503;;;;;;;;;;-1:-1:-1;11270:503:0;;;;;:::i;:::-;;:::i;8153:234::-;;;;;;;;;;-1:-1:-1;8153:234:0;;;;;:::i;:::-;;:::i;19735:59::-;;;;;;;;;;;;;;;;25530:158;;;;;;;;;;-1:-1:-1;25530:158:0;;;;;:::i;:::-;;:::i;26609:363::-;;;;;;;;;;-1:-1:-1;26609:363:0;;;;;:::i;:::-;;:::i;29147:325::-;;;;;;;;;;-1:-1:-1;29147:325:0;;;;;:::i;:::-;;:::i;8450:201::-;;;;;;;;;;-1:-1:-1;8450:201:0;;;;;:::i;:::-;;:::i;28806:149::-;;;;;;;;;;;;;:::i;25286:110::-;;;;;;;;;;-1:-1:-1;25286:110:0;;;;;:::i;:::-;;:::i;1981:238::-;;;;;;;;;;-1:-1:-1;1981:238:0;;;;;:::i;:::-;;:::i;25172:106::-;;;;;;;;;;-1:-1:-1;25172:106:0;;;;;:::i;:::-;;:::i;19448:23::-;;;;;;;;;;-1:-1:-1;19448:23:0;;;;;;;;21031:165;961:13;:11;:13::i;:::-;21091:11:::1;::::0;::::1;;21090:12;21082:48;;;::::0;-1:-1:-1;;;21082:48:0;;5292:2:1;21082:48:0::1;::::0;::::1;5274:21:1::0;5331:2;5311:18;;;5304:30;5370:25;5350:18;;;5343:53;5413:18;;21082:48:0::1;;;;;;;;;21141:11;:18:::0;;-1:-1:-1;;21170:18:0;;;;;21031:165::o;6479:100::-;6533:13;6566:5;6559:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6479:100;:::o;8971:242::-;9090:4;316:10;9151:32;316:10;9167:7;9176:6;9151:8;:32::i;:::-;9201:4;9194:11;;;8971:242;;;;;:::o;26383:218::-;961:13;:11;:13::i;:::-;26502:9:::1;26497:96;26521:8;:15;26517:1;:19;26497:96;;;26586:7;26556:14;:27;26571:8;26580:1;26571:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;26556:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;26556:27:0;:37;;-1:-1:-1;;26556:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;26538:3:0::1;26497:96;;;;26383:218:::0;;:::o;27088:104::-;961:13;:11;:13::i;:::-;27160:10:::1;:24:::0;27088:104::o;26159:216::-;961:13;:11;:13::i;:::-;26277:9:::1;26272:95;26296:8;:15;26292:1;:19;26272:95;;;26360:7;26331:13;:26;26345:8;26354:1;26345:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;26331:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;26331:26:0;:36;;-1:-1:-1;;26331:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;26313:3:0::1;26272:95;;25796:355:::0;961:13;:11;:13::i;:::-;-1:-1:-1;;;;;25873:17:0;::::1;25865:60;;;::::0;-1:-1:-1;;;25865:60:0;;6161:2:1;25865:60:0::1;::::0;::::1;6143:21:1::0;6200:2;6180:18;;;6173:30;6239:32;6219:18;;;6212:60;6289:18;;25865:60:0::1;5959:354:1::0;25865:60:0::1;25950:10;::::0;;-1:-1:-1;;;;;25950:10:0;;::::1;25964:5;25936:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;25936:33:0;;::::1;::::0;;;25995:10;;;::::1;25980:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;26025:31;;-1:-1:-1;;;;;;26025:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;26067:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;26067:32:0;;::::1;::::0;;;26125:10;;;;::::1;26110:26:::0;;;;;;;:33;;;;::::1;;::::0;;25796:355::o;28963:176::-;961:13;:11;:13::i;:::-;29049:82:::1;::::0;29012:12:::1;::::0;29057:10:::1;::::0;29081:21:::1;::::0;29012:12;29049:82;29012:12;29049:82;29081:21;29057:10;29049:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;28963:176:0:o;9793:295::-;9924:4;316:10;9982:38;9998:4;316:10;10013:6;9982:15;:38::i;:::-;10031:27;10041:4;10047:2;10051:6;10031:9;:27::i;:::-;-1:-1:-1;10076:4:0;;9793:295;-1:-1:-1;;;;9793:295:0:o;10497:270::-;10612:4;316:10;10673:64;316:10;10689:7;10726:10;10698:25;316:10;10689:7;10698:9;:25::i;:::-;:38;;;;:::i;:::-;10673:8;:64::i;26980:100::-;961:13;:11;:13::i;:::-;27050:9:::1;:22:::0;26980:100::o;25404:118::-;961:13;:11;:13::i;:::-;25480:15:::1;:34:::0;25404:118::o;25696:92::-;961:13;:11;:13::i;:::-;25761:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;25761:19:0;;::::1;::::0;;;::::1;::::0;;25696:92::o;28650:148::-;961:13;:11;:13::i;:::-;28740:4:::1;28696:23;7921:18:::0;;;;;;;;;;;28757:33:::1;7921:18:::0;28757:16:::1;:33::i;:::-;28685:113;28650:148::o:0;1723:103::-;961:13;:11;:13::i;:::-;1788:30:::1;1815:1;1788:18;:30::i;:::-;1723:103::o:0;29480:155::-;961:13;:11;:13::i;:::-;19575:26:::1;29532:12;:23:::0;;;29566:13:::1;:24:::0;;;29601:15:::1;:26:::0;29480:155::o;6698:104::-;6754:13;6787:7;6780:14;;;;;:::i;11270:503::-;11390:4;316:10;11390:4;11478:25;316:10;11495:7;11478:9;:25::i;:::-;11451:52;;11556:15;11536:16;:35;;11514:122;;;;-1:-1:-1;;;11514:122:0;;6992:2:1;11514:122:0;;;6974:21:1;7031:2;7011:18;;;7004:30;7070:34;7050:18;;;7043:62;-1:-1:-1;;;7121:18:1;;;7114:35;7166:19;;11514:122:0;6790:401:1;11514:122:0;11672:60;11681:5;11688:7;11716:15;11697:16;:34;11672:8;:60::i;8153:234::-;8268:4;316:10;8329:28;316:10;8346:2;8350:6;8329:9;:28::i;25530:158::-;961:13;:11;:13::i;:::-;25640:19:::1;:40:::0;25530:158::o;26609:363::-;961:13;:11;:13::i;:::-;26692:9:::1;26687:278;26711:8;:15;26707:1;:19;26687:278;;;26786:13;::::0;26771:11;;-1:-1:-1;;;;;26786:13:0;;::::1;::::0;26771:8;;26780:1;;26771:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;26771:28:0::1;;;26770:81;;;;;26845:4;-1:-1:-1::0;;;;;26822:28:0::1;:8;26831:1;26822:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;26822:28:0::1;;;26770:81;:143;;;;-1:-1:-1::0;26896:15:0::1;::::0;26873:11;;-1:-1:-1;;;;;26896:15:0;;::::1;::::0;26873:8;;26882:1;;26873:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;26873:39:0::1;;;26770:143;26748:205;;;26951:2;26929:6;:19;26936:8;26945:1;26936:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;26929:19:0::1;-1:-1:-1::0;;;;;26929:19:0::1;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;26748:205;26728:3;;26687:278;;29147:325:::0;961:13;:11;:13::i;:::-;29240:4:::1;-1:-1:-1::0;;;;;29225:20:0;::::1;::::0;29217:59:::1;;;::::0;-1:-1:-1;;;29217:59:0;;7398:2:1;29217:59:0::1;::::0;::::1;7380:21:1::0;7437:2;7417:18;;;7410:30;7476:28;7456:18;;;7449:56;7522:18;;29217:59:0::1;7196:350:1::0;29217:59:0::1;29295:36;::::0;-1:-1:-1;;;29295:36:0;;29325:4:::1;29295:36;::::0;::::1;4389:51:1::0;29334:1:0::1;::::0;-1:-1:-1;;;;;29295:21:0;::::1;::::0;::::1;::::0;4362:18:1;;29295:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;29287:62;;;::::0;-1:-1:-1;;;29287:62:0;;7942:2:1;29287:62:0::1;::::0;::::1;7924:21:1::0;7981:1;7961:18;;;7954:29;-1:-1:-1;;;7999:18:1;;;7992:39;8048:18;;29287:62:0::1;7740:332:1::0;29287:62:0::1;29377:36;::::0;-1:-1:-1;;;29377:36:0;;29407:4:::1;29377:36;::::0;::::1;4389:51:1::0;29360:14:0::1;::::0;-1:-1:-1;;;;;29377:21:0;::::1;::::0;::::1;::::0;4362:18:1;;29377:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29424:40;::::0;-1:-1:-1;;;29424:40:0;;29445:10:::1;29424:40;::::0;::::1;8251:51:1::0;8318:18;;;8311:34;;;29360:53:0;;-1:-1:-1;;;;;;29424:20:0;::::1;::::0;::::1;::::0;8224:18:1;;29424:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;8450:201::-:0;-1:-1:-1;;;;;8616:18:0;;;8584:7;8616:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8450:201::o;28806:149::-;961:13;:11;:13::i;:::-;28883:21:::1;28915:32;28883:21:::0;28915:12:::1;:32::i;25286:110::-:0;961:13;:11;:13::i;:::-;25358::::1;:30:::0;25286:110::o;1981:238::-;961:13;:11;:13::i;:::-;-1:-1:-1;;;;;2084:22:0;::::1;2062:110;;;::::0;-1:-1:-1;;;2062:110:0;;8808:2:1;2062:110:0::1;::::0;::::1;8790:21:1::0;8847:2;8827:18;;;8820:30;8886:34;8866:18;;;8859:62;-1:-1:-1;;;8937:18:1;;;8930:36;8983:19;;2062:110:0::1;8606:402:1::0;2062:110:0::1;2183:28;2202:8;2183:18;:28::i;25172:106::-:0;961:13;:11;:13::i;:::-;25242:12:::1;:28:::0;25172:106::o;1240:132::-;1148:6;;-1:-1:-1;;;;;1148:6:0;316:10;1304:23;1296:68;;;;-1:-1:-1;;;1296:68:0;;9215:2:1;1296:68:0;;;9197:21:1;;;9234:18;;;9227:30;9293:34;9273:18;;;9266:62;9345:18;;1296:68:0;9013:356:1;15379:378:0;-1:-1:-1;;;;;15515:19:0;;15507:68;;;;-1:-1:-1;;;15507:68:0;;9576:2:1;15507:68:0;;;9558:21:1;9615:2;9595:18;;;9588:30;9654:34;9634:18;;;9627:62;-1:-1:-1;;;9705:18:1;;;9698:34;9749:19;;15507:68:0;9374:400:1;15507:68:0;-1:-1:-1;;;;;15594:21:0;;15586:68;;;;-1:-1:-1;;;15586:68:0;;9981:2:1;15586:68:0;;;9963:21:1;10020:2;10000:18;;;9993:30;10059:34;10039:18;;;10032:62;-1:-1:-1;;;10110:18:1;;;10103:32;10152:19;;15586:68:0;9779:398:1;15586:68:0;-1:-1:-1;;;;;15665:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15717:32;;3022:25:1;;;15717:32:0;;2995:18:1;15717:32:0;;;;;;;15379:378;;;:::o;16048:502::-;16183:24;16210:25;16220:5;16227:7;16210:9;:25::i;:::-;16183:52;;-1:-1:-1;;16250:16:0;:37;16246:297;;16350:6;16330:16;:26;;16304:117;;;;-1:-1:-1;;;16304:117:0;;10384:2:1;16304:117:0;;;10366:21:1;10423:2;10403:18;;;10396:30;10462:31;10442:18;;;10435:59;10511:18;;16304:117:0;10182:353:1;16304:117:0;16465:51;16474:5;16481:7;16509:6;16490:16;:25;16465:8;:51::i;21204:2357::-;-1:-1:-1;;;;;21336:12:0;;21328:62;;;;-1:-1:-1;;;21328:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21409:10:0;;21401:58;;;;-1:-1:-1;;;21401:58:0;;;;;;;:::i;:::-;21487:1;21478:6;:10;21470:64;;;;-1:-1:-1;;;21470:64:0;;11552:2:1;21470:64:0;;;11534:21:1;11591:2;11571:18;;;11564:30;11630:34;11610:18;;;11603:62;-1:-1:-1;;;11681:18:1;;;11674:39;11730:19;;21470:64:0;11350:405:1;21470:64:0;21560:4;21545:12;21635:7;1148:6;;-1:-1:-1;;;;;1148:6:0;;1075:87;21635:7;-1:-1:-1;;;;;21627:15:0;:4;-1:-1:-1;;;;;21627:15:0;;;:45;;;;-1:-1:-1;1148:6:0;;-1:-1:-1;;;;;21659:13:0;;;1148:6;;21659:13;;21627:45;:72;;;;-1:-1:-1;;;;;;21689:10:0;;;;21627:72;:99;;;;-1:-1:-1;;;;;;21716:10:0;;19164:42;21716:10;;21627:99;:126;;;;-1:-1:-1;21744:9:0;;;;;;;21743:10;21627:126;21609:1303;;;-1:-1:-1;;;;;21789:12:0;;;;;;:6;:12;;;;;;;;21788:13;:28;;;;-1:-1:-1;;;;;;21806:10:0;;;;;;:6;:10;;;;;;;;21805:11;21788:28;21780:45;;;;-1:-1:-1;;;21780:45:0;;;;;;11962:2:1;11944:21;;;12001:1;11981:18;;;11974:29;-1:-1:-1;;;12034:2:1;12019:18;;12012:34;12078:2;12063:18;;11760:327;21780:45:0;21845:11;;;;21840:176;;-1:-1:-1;;;;;21905:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;21928:17:0;;;;;;:13;:17;;;;;;;;21905:40;21875:141;;;;-1:-1:-1;;;21875:141:0;;12294:2:1;21875:141:0;;;12276:21:1;12333:2;12313:18;;;12306:30;12372:29;12352:18;;;12345:57;12419:18;;21875:141:0;12092:351:1;21875:141:0;22061:13;;-1:-1:-1;;;;;22053:21:0;;;22061:13;;22053:21;:72;;;;-1:-1:-1;22109:15:0;;-1:-1:-1;;;;;22095:30:0;;;22109:15;;22095:30;;22053:72;:112;;;;-1:-1:-1;;;;;;22147:18:0;;;;;;:14;:18;;;;;;;;22146:19;22053:112;22031:492;;;22240:12;;22230:6;:22;;22200:137;;;;-1:-1:-1;;;22200:137:0;;12650:2:1;22200:137:0;;;12632:21:1;12689:2;12669:18;;;12662:30;12728:34;12708:18;;;12701:62;-1:-1:-1;;;12779:18:1;;;12772:39;12828:19;;22200:137:0;12448:405:1;22200:137:0;22412:15;;22402:6;22386:13;22396:2;-1:-1:-1;;;;;7921:18:0;7889:7;7921:18;;;;;;;;;;;;7770:177;22386:13;:22;;;;:::i;:::-;:41;;22356:151;;;;-1:-1:-1;;;22356:151:0;;13060:2:1;22356:151:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:34;13118:18;;;13111:62;-1:-1:-1;;;13189:18:1;;;13182:34;13233:19;;22356:151:0;12858:400:1;22356:151:0;22567:13;;-1:-1:-1;;;;;22561:19:0;;;22567:13;;22561:19;:72;;;;-1:-1:-1;22617:15:0;;-1:-1:-1;;;;;22601:32:0;;;22617:15;;22601:32;;22561:72;:114;;;;-1:-1:-1;;;;;;22655:20:0;;;;;;:14;:20;;;;;;;;22654:21;22561:114;22539:362;;;22750:13;;22740:6;:23;;22710:139;;;;-1:-1:-1;;;22710:139:0;;13465:2:1;22710:139:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;13594:18:1;;;13587:40;13644:19;;22710:139:0;13263:406:1;22710:139:0;-1:-1:-1;22881:4:0;22539:362;-1:-1:-1;;;;;22926:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;22949:17:0;;;;;;:13;:17;;;;;;;;22926:40;22922:61;;;22978:5;22968:15;;22922:61;23006:13;;-1:-1:-1;;;;;22998:21:0;;;23006:13;;22998:21;;;;:44;;-1:-1:-1;23029:13:0;;-1:-1:-1;;;;;23023:19:0;;;23029:13;;23023:19;;22998:44;22994:65;;;23054:5;23044:15;;22994:65;23114:4;23070:23;7921:18;;;;;;;;;;;23070:50;;23131:12;23165:19;;23147:15;:37;23146:53;;;;;23189:10;23146:53;23131:68;;23228:7;:35;;;;-1:-1:-1;23252:11:0;;;;;;;23228:35;:62;;;;-1:-1:-1;23281:9:0;;;;;;;23280:10;23228:62;:99;;;;-1:-1:-1;;;;;;23308:19:0;;;;;;:13;:19;;;;;;;;23307:20;23228:99;:134;;;;-1:-1:-1;;;;;;23345:17:0;;;;;;:13;:17;;;;;;;;23344:18;23228:134;23210:280;;;23389:9;:16;;-1:-1:-1;;23389:16:0;;;;;23420:26;23430:15;23420:9;:26::i;:::-;23461:9;:17;;-1:-1:-1;;23461:17:0;;;23210:280;23500:53;23515:4;23521:2;23525:6;23533:7;23542:10;23500:14;:53::i;:::-;21317:2244;;;;21204:2357;;;:::o;24285:472::-;24376:16;;;24390:1;24376:16;;;;;;;;24352:21;;24376:16;;;;;;;;;;-1:-1:-1;24376:16:0;24352:40;;24421:4;24403;24408:1;24403:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24403:23:0;;;:7;;;;;;;;;;:23;;;;24447:15;;:22;;;-1:-1:-1;;;24447:22:0;;;;:15;;;;;:20;;:22;;;;;24403:7;;24447:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24437:4;24442:1;24437:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24437:32:0;;;:7;;;;;;;;;:32;24512:15;;24480:62;;24497:4;;24512:15;24530:11;24480:8;:62::i;:::-;24553:15;;:196;;-1:-1:-1;;;24553:196:0;;-1:-1:-1;;;;;24553:15:0;;;;:66;;:196;;24634:11;;24553:15;;24676:4;;24703;;24723:15;;24553:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24341:416;24285:472;:::o;2379:191::-;2472:6;;;-1:-1:-1;;;;;2489:17:0;;;-1:-1:-1;;;;;;2489:17:0;;;;;;;2522:40;;2472:6;;;2489:17;2472:6;;2522:40;;2453:16;;2522:40;2442:128;2379:191;:::o;24765:93::-;24823:10;;:27;;-1:-1:-1;;;;;24823:10:0;;;;:27;;;;;24843:6;;24823:10;:27;:10;:27;24843:6;24823:10;:27;;;;;;;;;;;;;;;;;;;;;24765:93;:::o;23569:708::-;23662:13;;23633:25;23716:20;;;:46;;-1:-1:-1;23740:22:0;;23716:46;23712:59;;;23764:7;;23569:708;:::o;23712:59::-;23803:19;;:25;;23826:1;23803:25;:::i;:::-;23785:15;:43;23781:105;;;23861:19;;:25;;23884:1;23861:25;:::i;:::-;23843:43;;23781:105;23928:15;23982:21;24014:36;23928:15;24014:16;:36::i;:::-;24063:18;24084:43;24109:17;24084:21;:43;:::i;:::-;24138:17;24181:13;:17;;;24231:10;;24223:46;;24063:64;;-1:-1:-1;24063:64:0;;-1:-1:-1;;;;;24231:10:0;;;;24063:64;;24223:46;;24138:17;24223:46;24063:64;24231:10;24223:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;23569:708:0:o;27574:363::-;27753:7;27748:86;;27762:14;:12;:14::i;:::-;27748:86;;;27801:33;27811:6;27819;27827;27801:9;:33::i;:::-;27792:42;;27748:86;27845:42;27861:6;27869:9;27880:6;27845:15;:42::i;:::-;27905:7;27900:29;;27914:15;27497:18;;27485:9;:30;27539:19;;27526:10;:32;27440:126;27914:15;27574:363;;;;;:::o;27200:232::-;27248:9;;:14;:33;;;;-1:-1:-1;27266:10:0;;:15;27248:33;27244:46;;;27200:232::o;27244:46::-;27323:9;;;27302:18;:30;27365:10;;;27343:19;:32;-1:-1:-1;27386:13:0;;;;27410:14;27200:232::o;27945:481::-;28061:7;28085:6;28081:47;;;28093:10;28484;;28474:7;:20;;;28505:10;:22;28434:101;28093:10;28081:47;;;28119:9;28592;;28582:7;:19;;;28612:10;:22;28543:99;28119:9;28168:10;;28141:12;;28168:14;28164:154;;19911:3;28217:10;;28207:6;:21;;;;:::i;:::-;28206:39;;;;:::i;:::-;28199:46;;28296:10;;28285:7;;28278:4;:14;;;;:::i;:::-;28277:29;;;;:::i;:::-;28260:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;28164:154:0;28332:8;;28328:58;;28342:44;28358:6;28374:4;28381;28342:15;:44::i;:::-;28404:14;28414:4;28404:14;;:::i;:::-;;27945:481;-1:-1:-1;;;;;27945:481:0:o;12243:869::-;-1:-1:-1;;;;;12374:18:0;;12366:68;;;;-1:-1:-1;;;12366:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12453:16:0;;12445:64;;;;-1:-1:-1;;;12445:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12591:15:0;;12569:19;12591:15;;;;;;;;;;;12639:21;;;;12617:109;;;;-1:-1:-1;;;12617:109:0;;15624:2:1;12617:109:0;;;15606:21:1;15663:2;15643:18;;;15636:30;15702:34;15682:18;;;15675:62;-1:-1:-1;;;15753:18:1;;;15746:36;15799:19;;12617:109:0;15422:402:1;12617:109:0;-1:-1:-1;;;;;12762:15:0;;;:9;:15;;;;;;;;;;;12780:20;;;12762:38;;12980:13;;;;;;;;;;:23;;;;;;13030:26;;3022:25:1;;;12980:13:0;;13030:26;;2995:18:1;13030:26:0;;;;;;;13067:37;26383:218;14:418:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:134;641:20;;670:31;641:20;670:31;:::i;:::-;573:134;;;:::o;712:367::-;780:6;788;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;896:9;883:23;915:31;940:5;915:31;:::i;:::-;965:5;1043:2;1028:18;;;;1015:32;;-1:-1:-1;;;712:367:1:o;1276:127::-;1337:10;1332:3;1328:20;1325:1;1318:31;1368:4;1365:1;1358:15;1392:4;1389:1;1382:15;1408:118;1494:5;1487:13;1480:21;1473:5;1470:32;1460:60;;1516:1;1513;1506:12;1531:128;1596:20;;1625:28;1596:20;1625:28;:::i;1664:1207::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:52;;;1831:1;1828;1821:12;1783:52;1871:9;1858:23;1904:18;1896:6;1893:30;1890:50;;;1936:1;1933;1926:12;1890:50;1959:22;;2012:4;2004:13;;2000:27;-1:-1:-1;1990:55:1;;2041:1;2038;2031:12;1990:55;2081:2;2068:16;2107:18;2099:6;2096:30;2093:56;;;2129:18;;:::i;:::-;2175:6;2172:1;2168:14;2211:2;2205:9;2274:2;2270:7;2265:2;2261;2257:11;2253:25;2245:6;2241:38;2345:6;2333:10;2330:22;2309:18;2297:10;2294:34;2291:62;2288:88;;;2356:18;;:::i;:::-;2392:2;2385:22;2442;;;2492:4;2524:11;;;2520:22;;;2442;2480:17;;2554:19;;;2551:39;;;2586:1;2583;2576:12;2551:39;2618:4;2614:2;2610:13;2599:24;;2632:152;2648:6;2643:3;2640:15;2632:152;;;2716:23;2735:3;2716:23;:::i;:::-;2704:36;;2769:4;2665:14;;;;2760;2632:152;;;-1:-1:-1;2803:6:1;-1:-1:-1;2828:37:1;;-1:-1:-1;;;2859:4:1;2844:20;;2828:37;:::i;:::-;2818:47;;1664:1207;;;;;:::o;3058:226::-;3117:6;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;-1:-1:-1;3231:23:1;;3058:226;-1:-1:-1;3058:226:1:o;3289:247::-;3348:6;3401:2;3389:9;3380:7;3376:23;3372:32;3369:52;;;3417:1;3414;3407:12;3369:52;3456:9;3443:23;3475:31;3500:5;3475:31;:::i;:::-;3525:5;3289:247;-1:-1:-1;;;3289:247:1:o;3541:508::-;3618:6;3626;3634;3687:2;3675:9;3666:7;3662:23;3658:32;3655:52;;;3703:1;3700;3693:12;3655:52;3742:9;3729:23;3761:31;3786:5;3761:31;:::i;:::-;3811:5;-1:-1:-1;3868:2:1;3853:18;;3840:32;3881:33;3840:32;3881:33;:::i;:::-;3541:508;;3933:7;;-1:-1:-1;;;4013:2:1;3998:18;;;;3985:32;;3541:508::o;4451:241::-;4507:6;4560:2;4548:9;4539:7;4535:23;4531:32;4528:52;;;4576:1;4573;4566:12;4528:52;4615:9;4602:23;4634:28;4656:5;4634:28;:::i;4697:388::-;4765:6;4773;4826:2;4814:9;4805:7;4801:23;4797:32;4794:52;;;4842:1;4839;4832:12;4794:52;4881:9;4868:23;4900:31;4925:5;4900:31;:::i;:::-;4950:5;-1:-1:-1;5007:2:1;4992:18;;4979:32;5020:33;4979:32;5020:33;:::i;:::-;5072:7;5062:17;;;4697:388;;;;;:::o;5442:380::-;5521:1;5517:12;;;;5564;;;5585:61;;5639:4;5631:6;5627:17;5617:27;;5585:61;5692:2;5684:6;5681:14;5661:18;5658:38;5655:161;;5738:10;5733:3;5729:20;5726:1;5719:31;5773:4;5770:1;5763:15;5801:4;5798:1;5791:15;5655:161;;5442:380;;;:::o;5827:127::-;5888:10;5883:3;5879:20;5876:1;5869:31;5919:4;5916:1;5909:15;5943:4;5940:1;5933:15;6528:127;6589:10;6584:3;6580:20;6577:1;6570:31;6620:4;6617:1;6610:15;6644:4;6641:1;6634:15;6660:125;6725:9;;;6746:10;;;6743:36;;;6759:18;;:::i;7551:184::-;7621:6;7674:2;7662:9;7653:7;7649:23;7645:32;7642:52;;;7690:1;7687;7680:12;7642:52;-1:-1:-1;7713:16:1;;7551:184;-1:-1:-1;7551:184:1:o;8356:245::-;8423:6;8476:2;8464:9;8455:7;8451:23;8447:32;8444:52;;;8492:1;8489;8482:12;8444:52;8524:9;8518:16;8543:28;8565:5;8543:28;:::i;10540:401::-;10742:2;10724:21;;;10781:2;10761:18;;;10754:30;10820:34;10815:2;10800:18;;10793:62;-1:-1:-1;;;10886:2:1;10871:18;;10864:35;10931:3;10916:19;;10540:401::o;10946:399::-;11148:2;11130:21;;;11187:2;11167:18;;;11160:30;11226:34;11221:2;11206:18;;11199:62;-1:-1:-1;;;11292:2:1;11277:18;;11270:33;11335:3;11320:19;;10946:399::o;13674:251::-;13744:6;13797:2;13785:9;13776:7;13772:23;13768:32;13765:52;;;13813:1;13810;13803:12;13765:52;13845:9;13839:16;13864:31;13889:5;13864:31;:::i;13930:959::-;14192:4;14240:3;14229:9;14225:19;14271:6;14260:9;14253:25;14314:6;14309:2;14298:9;14294:18;14287:34;14357:3;14352:2;14341:9;14337:18;14330:31;14381:6;14416;14410:13;14447:6;14439;14432:22;14485:3;14474:9;14470:19;14463:26;;14524:2;14516:6;14512:15;14498:29;;14545:1;14555:195;14569:6;14566:1;14563:13;14555:195;;;14634:13;;-1:-1:-1;;;;;14630:39:1;14618:52;;14699:2;14725:15;;;;14690:12;;;;14666:1;14584:9;14555:195;;;-1:-1:-1;;;;;;;14806:32:1;;;;14801:2;14786:18;;14779:60;-1:-1:-1;;14870:3:1;14855:19;14848:35;14767:3;13930:959;-1:-1:-1;;;13930:959:1:o;14894:168::-;14967:9;;;14998;;15015:15;;;15009:22;;14995:37;14985:71;;15036:18;;:::i;15067:128::-;15134:9;;;15155:11;;;15152:37;;;15169:18;;:::i;15200:217::-;15240:1;15266;15256:132;;15310:10;15305:3;15301:20;15298:1;15291:31;15345:4;15342:1;15335:15;15373:4;15370:1;15363:15;15256:132;-1:-1:-1;15402:9:1;;15200:217::o

Swarm Source

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