APE Price: $1.31 (-16.98%)

Token

BAYC (BAYC)

Overview

Max Total Supply

1,001,215.088888888888888864 BAYC

Holders

19

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,028.196938345536611176 BAYC

Value
$0.00
0x63f9f9399d54a2cd98f030be91001eb69c816bc8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BAYCToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

pragma solidity >=0.6.2;

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

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

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

pragma solidity >=0.6.2;

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

    function swBAYCxactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swBAYCxactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swBAYCxactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity >=0.5.0;

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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


pragma solidity =0.8.19;

contract BAYCToken is ERC20, Ownable {
    address constant DEAD_ADDRESS = 0x000000000000000000000000000000000000dEaD;
    address payable constant MARKETING_ADDRESS = payable(0x89a1cB13a789183ad8e4C16055648D9d9794550e);
    address constant ROUTER_ADDRESS = 0x252999A4ec069352A9be309368e4acF2FFd06287;
    IUniswapV2Router02 constant ROUTER = IUniswapV2Router02(ROUTER_ADDRESS);
    address constant WETH_ADDRESS = 0x48b62137EdfA95a428D35C09E44256a739F6B557;

    address immutable CONTRACT_ADDRESS;
    address public immutable PAIR_ADDRESS;

    constructor() payable ERC20("BAYC", "BAYC") {
        _mint(msg.sender, 1_000_000 * 1e18);
        CONTRACT_ADDRESS = address(this);
        PAIR_ADDRESS = IUniswapV2Factory(ROUTER.factory()).createPair(CONTRACT_ADDRESS, WETH_ADDRESS);

        isExcludedFromTaxes[msg.sender] = true;
        isExcludedFromTaxes[CONTRACT_ADDRESS] = true;
        isExcludedFromTaxes[MARKETING_ADDRESS] = true;
    }

    mapping(address => bool) isExcludedFromTaxes;

    uint256 public tax = 5;
    uint256 public marketingBalance;

    error Blocked();

    receive() external payable {}


    function _transfer(address from, address to, uint256 amount) internal override {
        bool isBuy = from == PAIR_ADDRESS;
        bool isSell = to == PAIR_ADDRESS;
        bool isTransfer = !isBuy && !isSell;
        bool isExcluded = isExcludedFromTaxes[from] || isExcludedFromTaxes[to];
        bool isTaxFree = isExcluded || isTransfer;

        if (!isTaxFree) {
            uint256 taxedTokensAmount = (amount * tax) / 100;
            if (taxedTokensAmount != 0) {
                amount -= taxedTokensAmount;
                marketingBalance += taxedTokensAmount;
                super._transfer(from, CONTRACT_ADDRESS, taxedTokensAmount);
            }

            if (isSell) {
                if (marketingBalance > 0) {
                    uint256 balance = marketingBalance;
                    marketingBalance = 0;
                    swapTokensForETH(MARKETING_ADDRESS, balance);
                }
            }
        }

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

    function swapTokensForETH(address to, uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = CONTRACT_ADDRESS;
        path[1] = WETH_ADDRESS;
        _approve(CONTRACT_ADDRESS, ROUTER_ADDRESS, tokenAmount);
        uint256[] memory amounts = ROUTER.getAmountsOut(tokenAmount, path);
        uint256 expectedEthAmount = ROUTER.quote(tokenAmount, amounts[0], amounts[1]);
        uint256 ethMin = expectedEthAmount - (expectedEthAmount * 5) / 100;
        ROUTER.swBAYCxactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, ethMin, path, to, block.timestamp);
    }

    function dropTokens(address[] calldata addresses, uint256[] calldata amounts) external onlyOwner {
        uint256 length = addresses.length;
        if (length != amounts.length) {
            revert Blocked();
        }
        for (uint256 i = 0; i < length; i++) {
            super.transfer(addresses[i], amounts[i]);
        }
    }

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }

    function setTax(uint256 newTax) external onlyOwner {
        if (newTax > 20) {
            revert Blocked();
        }
        tax = newTax;
    }

    function pullTokens(uint256 amount) public {
        _transfer(CONTRACT_ADDRESS, MARKETING_ADDRESS, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"Blocked","type":"error"},{"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"},{"inputs":[],"name":"PAIR_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"dropTokens","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":[],"name":"marketingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pullTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6005600755600460c0818152634241594360e01b60e081905261014060405261010092835261012052906003620000378382620003cc565b506004620000468282620003cc565b505050620000636200005d6200020760201b60201c565b6200020b565b620000793369d3c21bcecceda10000006200025d565b306080526040805163c45a015560e01b8152905173252999a4ec069352a9be309368e4acf2ffd062879163c45a01559160048083019260209291908290030181865afa158015620000ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000f4919062000498565b6080516040516364e329cb60e11b81526001600160a01b0391821660048201527348b62137edfa95a428d35c09e44256a739f6b557602482015291169063c9c65396906044016020604051808303816000875af11580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000180919062000498565b6001600160a01b0390811660a052336000908152600660205260408082208054600160ff199182168117909255608051909416835290822080548416821790557389a1cb13a789183ad8e4c16055648d9d9794550e9091527f7659b5dd746dc923e9c3f1add8d896c7bf9e031b4d330d916f241f4f82dc3b128054909216179055620004f2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002cc9190620004ca565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035357607f821691505b6020821081036200037457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032357600081815260208120601f850160051c81016020861015620003a35750805b601f850160051c820191505b81811015620003c457828155600101620003af565b505050505050565b81516001600160401b03811115620003e857620003e862000328565b6200040081620003f984546200033e565b846200037a565b602080601f8311600181146200043857600084156200041f5750858301515b600019600386901b1c1916600185901b178555620003c4565b600085815260208120601f198616915b82811015620004695788860151825594840194600190910190840162000448565b5085821015620004885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620004ab57600080fd5b81516001600160a01b0381168114620004c357600080fd5b9392505050565b80820180821115620004ec57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516114f5620005346000396000818161026401526109150152600081816105ef015281816109ef01528181610d940152610e3301526114f56000f3fe60806040526004361061012e5760003560e01c806358e55365116100ab57806395d89b411161006f57806395d89b411461035d57806399c8d55614610372578063a457c2d714610388578063a9059cbb146103a8578063dd62ed3e146103c8578063f2fde38b146103e857600080fd5b806358e55365146102be57806370a08231146102d4578063715018a61461030a5780637e0db6cc1461031f5780638da5cb5b1461033f57600080fd5b8063313ce567116100f2578063313ce567146101f6578063395093511461021257806340c10f191461023257806345ce2a0b146102525780635422bdb51461029e57600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b45780632e5bb6ff146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610408565b60405161015c919061105d565b60405180910390f35b34801561017157600080fd5b506101856101803660046110c7565b61049a565b604051901515815260200161015c565b3480156101a157600080fd5b506002545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf3660046110f1565b6104b4565b3480156101e057600080fd5b506101f46101ef36600461112d565b6104d8565b005b34801561020257600080fd5b506040516012815260200161015c565b34801561021e57600080fd5b5061018561022d3660046110c7565b610507565b34801561023e57600080fd5b506101f461024d3660046110c7565b610529565b34801561025e57600080fd5b506102867f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161015c565b3480156102aa57600080fd5b506101f46102b9366004611192565b61053f565b3480156102ca57600080fd5b506101a660085481565b3480156102e057600080fd5b506101a66102ef3660046111fe565b6001600160a01b031660009081526020819052604090205490565b34801561031657600080fd5b506101f46105d6565b34801561032b57600080fd5b506101f461033a36600461112d565b6105ea565b34801561034b57600080fd5b506005546001600160a01b0316610286565b34801561036957600080fd5b5061014f61062c565b34801561037e57600080fd5b506101a660075481565b34801561039457600080fd5b506101856103a33660046110c7565b61063b565b3480156103b457600080fd5b506101856103c33660046110c7565b6106bb565b3480156103d457600080fd5b506101a66103e3366004611220565b6106c9565b3480156103f457600080fd5b506101f46104033660046111fe565b6106f4565b60606003805461041790611253565b80601f016020809104026020016040519081016040528092919081815260200182805461044390611253565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b5050505050905090565b6000336104a881858561076a565b60019150505b92915050565b6000336104c285828561088e565b6104cd858585610908565b506001949350505050565b6104e0610a62565b60148111156105025760405163a5baf15160e01b815260040160405180910390fd5b600755565b6000336104a881858561051a83836106c9565b61052491906112a3565b61076a565b610531610a62565b61053b8282610abc565b5050565b610547610a62565b828181146105685760405163a5baf15160e01b815260040160405180910390fd5b60005b818110156105ce576105bb868683818110610588576105886112b6565b905060200201602081019061059d91906111fe565b8585848181106105af576105af6112b6565b905060200201356106bb565b50806105c6816112cc565b91505061056b565b505050505050565b6105de610a62565b6105e86000610b7b565b565b6106297f00000000000000000000000000000000000000000000000000000000000000007389a1cb13a789183ad8e4c16055648d9d9794550e83610908565b50565b60606004805461041790611253565b6000338161064982866106c9565b9050838110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104cd828686840361076a565b6000336104a8818585610908565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106fc610a62565b6001600160a01b0381166107615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a5565b61062981610b7b565b6001600160a01b0383166107cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a5565b6001600160a01b03821661082d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089a84846106c9565b9050600019811461090257818110156108f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a5565b610902848484840361076a565b50505050565b6001600160a01b038381167f0000000000000000000000000000000000000000000000000000000000000000821690811491841614600082158361094a575081155b6001600160a01b0387166000908152600660205260408120549192509060ff168061098d57506001600160a01b03861660009081526006602052604090205460ff165b90506000818061099a5750825b905080610a4d5760006064600754886109b391906112e5565b6109bd91906112fc565b90508015610a14576109cf818861131e565b965080600860008282546109e391906112a3565b90915550610a149050897f000000000000000000000000000000000000000000000000000000000000000083610bcd565b8415610a4b5760085415610a4b57600880546000909155610a497389a1cb13a789183ad8e4c16055648d9d9794550e82610d71565b505b505b610a58888888610bcd565b5050505050505050565b6005546001600160a01b031633146105e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a5565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a5565b8060026000828254610b2491906112a3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c315760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a5565b6001600160a01b038216610c935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a5565b6001600160a01b03831660009081526020819052604090205481811015610d0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610902565b6040805160028082526060820183526000926020830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000081600081518110610dc657610dc66112b6565b60200260200101906001600160a01b031690816001600160a01b0316815250507348b62137edfa95a428d35c09e44256a739f6b55781600181518110610e0e57610e0e6112b6565b60200260200101906001600160a01b031690816001600160a01b031681525050610e6d7f000000000000000000000000000000000000000000000000000000000000000073252999a4ec069352a9be309368e4acf2ffd062878461076a565b60405163d06ca61f60e01b815260009073252999a4ec069352a9be309368e4acf2ffd062879063d06ca61f90610ea9908690869060040161138b565b600060405180830381865afa158015610ec6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610eee91908101906113ac565b9050600073252999a4ec069352a9be309368e4acf2ffd062876001600160a01b031663ad615dec8584600081518110610f2957610f296112b6565b602002602001015185600181518110610f4457610f446112b6565b60200260200101516040518463ffffffff1660e01b8152600401610f7b939291909283526020830191909152604082015260600190565b602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc919061146a565b905060006064610fcd8360056112e5565b610fd791906112fc565b610fe1908361131e565b6040516310dc70b760e11b815290915073252999a4ec069352a9be309368e4acf2ffd06287906321b8e16e90611023908890859089908c904290600401611483565b600060405180830381600087803b15801561103d57600080fd5b505af1158015611051573d6000803e3d6000fd5b50505050505050505050565b600060208083528351808285015260005b8181101561108a5785810183015185820160400152820161106e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110c257600080fd5b919050565b600080604083850312156110da57600080fd5b6110e3836110ab565b946020939093013593505050565b60008060006060848603121561110657600080fd5b61110f846110ab565b925061111d602085016110ab565b9150604084013590509250925092565b60006020828403121561113f57600080fd5b5035919050565b60008083601f84011261115857600080fd5b50813567ffffffffffffffff81111561117057600080fd5b6020830191508360208260051b850101111561118b57600080fd5b9250929050565b600080600080604085870312156111a857600080fd5b843567ffffffffffffffff808211156111c057600080fd5b6111cc88838901611146565b909650945060208701359150808211156111e557600080fd5b506111f287828801611146565b95989497509550505050565b60006020828403121561121057600080fd5b611219826110ab565b9392505050565b6000806040838503121561123357600080fd5b61123c836110ab565b915061124a602084016110ab565b90509250929050565b600181811c9082168061126757607f821691505b60208210810361128757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104ae576104ae61128d565b634e487b7160e01b600052603260045260246000fd5b6000600182016112de576112de61128d565b5060010190565b80820281158282048414176104ae576104ae61128d565b60008261131957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104ae576104ae61128d565b634e487b7160e01b600052604160045260246000fd5b600081518084526020808501945080840160005b838110156113805781516001600160a01b03168752958201959082019060010161135b565b509495945050505050565b8281526040602082015260006113a46040830184611347565b949350505050565b600060208083850312156113bf57600080fd5b825167ffffffffffffffff808211156113d757600080fd5b818501915085601f8301126113eb57600080fd5b8151818111156113fd576113fd611331565b8060051b604051601f19603f8301168101818110858211171561142257611422611331565b60405291825284820192508381018501918883111561144057600080fd5b938501935b8285101561145e57845184529385019392850192611445565b98975050505050505050565b60006020828403121561147c57600080fd5b5051919050565b85815284602082015260a0604082015260006114a260a0830186611347565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220c84ec80d08942567829897dce1e14a41130530afe5ec50663779642f1e4d8d8e64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c806358e55365116100ab57806395d89b411161006f57806395d89b411461035d57806399c8d55614610372578063a457c2d714610388578063a9059cbb146103a8578063dd62ed3e146103c8578063f2fde38b146103e857600080fd5b806358e55365146102be57806370a08231146102d4578063715018a61461030a5780637e0db6cc1461031f5780638da5cb5b1461033f57600080fd5b8063313ce567116100f2578063313ce567146101f6578063395093511461021257806340c10f191461023257806345ce2a0b146102525780635422bdb51461029e57600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b45780632e5bb6ff146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f610408565b60405161015c919061105d565b60405180910390f35b34801561017157600080fd5b506101856101803660046110c7565b61049a565b604051901515815260200161015c565b3480156101a157600080fd5b506002545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf3660046110f1565b6104b4565b3480156101e057600080fd5b506101f46101ef36600461112d565b6104d8565b005b34801561020257600080fd5b506040516012815260200161015c565b34801561021e57600080fd5b5061018561022d3660046110c7565b610507565b34801561023e57600080fd5b506101f461024d3660046110c7565b610529565b34801561025e57600080fd5b506102867f000000000000000000000000586cbbd160125ff0479269fb1d5ec1307befc7fe81565b6040516001600160a01b03909116815260200161015c565b3480156102aa57600080fd5b506101f46102b9366004611192565b61053f565b3480156102ca57600080fd5b506101a660085481565b3480156102e057600080fd5b506101a66102ef3660046111fe565b6001600160a01b031660009081526020819052604090205490565b34801561031657600080fd5b506101f46105d6565b34801561032b57600080fd5b506101f461033a36600461112d565b6105ea565b34801561034b57600080fd5b506005546001600160a01b0316610286565b34801561036957600080fd5b5061014f61062c565b34801561037e57600080fd5b506101a660075481565b34801561039457600080fd5b506101856103a33660046110c7565b61063b565b3480156103b457600080fd5b506101856103c33660046110c7565b6106bb565b3480156103d457600080fd5b506101a66103e3366004611220565b6106c9565b3480156103f457600080fd5b506101f46104033660046111fe565b6106f4565b60606003805461041790611253565b80601f016020809104026020016040519081016040528092919081815260200182805461044390611253565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b5050505050905090565b6000336104a881858561076a565b60019150505b92915050565b6000336104c285828561088e565b6104cd858585610908565b506001949350505050565b6104e0610a62565b60148111156105025760405163a5baf15160e01b815260040160405180910390fd5b600755565b6000336104a881858561051a83836106c9565b61052491906112a3565b61076a565b610531610a62565b61053b8282610abc565b5050565b610547610a62565b828181146105685760405163a5baf15160e01b815260040160405180910390fd5b60005b818110156105ce576105bb868683818110610588576105886112b6565b905060200201602081019061059d91906111fe565b8585848181106105af576105af6112b6565b905060200201356106bb565b50806105c6816112cc565b91505061056b565b505050505050565b6105de610a62565b6105e86000610b7b565b565b6106297f0000000000000000000000003ee9074e93c364c7040d8d1498bb1c36207edb2b7389a1cb13a789183ad8e4c16055648d9d9794550e83610908565b50565b60606004805461041790611253565b6000338161064982866106c9565b9050838110156106ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104cd828686840361076a565b6000336104a8818585610908565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106fc610a62565b6001600160a01b0381166107615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a5565b61062981610b7b565b6001600160a01b0383166107cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a5565b6001600160a01b03821661082d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061089a84846106c9565b9050600019811461090257818110156108f55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a5565b610902848484840361076a565b50505050565b6001600160a01b038381167f000000000000000000000000586cbbd160125ff0479269fb1d5ec1307befc7fe821690811491841614600082158361094a575081155b6001600160a01b0387166000908152600660205260408120549192509060ff168061098d57506001600160a01b03861660009081526006602052604090205460ff165b90506000818061099a5750825b905080610a4d5760006064600754886109b391906112e5565b6109bd91906112fc565b90508015610a14576109cf818861131e565b965080600860008282546109e391906112a3565b90915550610a149050897f0000000000000000000000003ee9074e93c364c7040d8d1498bb1c36207edb2b83610bcd565b8415610a4b5760085415610a4b57600880546000909155610a497389a1cb13a789183ad8e4c16055648d9d9794550e82610d71565b505b505b610a58888888610bcd565b5050505050505050565b6005546001600160a01b031633146105e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a5565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106a5565b8060026000828254610b2491906112a3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c315760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a5565b6001600160a01b038216610c935760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a5565b6001600160a01b03831660009081526020819052604090205481811015610d0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a5565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610902565b6040805160028082526060820183526000926020830190803683370190505090507f0000000000000000000000003ee9074e93c364c7040d8d1498bb1c36207edb2b81600081518110610dc657610dc66112b6565b60200260200101906001600160a01b031690816001600160a01b0316815250507348b62137edfa95a428d35c09e44256a739f6b55781600181518110610e0e57610e0e6112b6565b60200260200101906001600160a01b031690816001600160a01b031681525050610e6d7f0000000000000000000000003ee9074e93c364c7040d8d1498bb1c36207edb2b73252999a4ec069352a9be309368e4acf2ffd062878461076a565b60405163d06ca61f60e01b815260009073252999a4ec069352a9be309368e4acf2ffd062879063d06ca61f90610ea9908690869060040161138b565b600060405180830381865afa158015610ec6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610eee91908101906113ac565b9050600073252999a4ec069352a9be309368e4acf2ffd062876001600160a01b031663ad615dec8584600081518110610f2957610f296112b6565b602002602001015185600181518110610f4457610f446112b6565b60200260200101516040518463ffffffff1660e01b8152600401610f7b939291909283526020830191909152604082015260600190565b602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc919061146a565b905060006064610fcd8360056112e5565b610fd791906112fc565b610fe1908361131e565b6040516310dc70b760e11b815290915073252999a4ec069352a9be309368e4acf2ffd06287906321b8e16e90611023908890859089908c904290600401611483565b600060405180830381600087803b15801561103d57600080fd5b505af1158015611051573d6000803e3d6000fd5b50505050505050505050565b600060208083528351808285015260005b8181101561108a5785810183015185820160400152820161106e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110c257600080fd5b919050565b600080604083850312156110da57600080fd5b6110e3836110ab565b946020939093013593505050565b60008060006060848603121561110657600080fd5b61110f846110ab565b925061111d602085016110ab565b9150604084013590509250925092565b60006020828403121561113f57600080fd5b5035919050565b60008083601f84011261115857600080fd5b50813567ffffffffffffffff81111561117057600080fd5b6020830191508360208260051b850101111561118b57600080fd5b9250929050565b600080600080604085870312156111a857600080fd5b843567ffffffffffffffff808211156111c057600080fd5b6111cc88838901611146565b909650945060208701359150808211156111e557600080fd5b506111f287828801611146565b95989497509550505050565b60006020828403121561121057600080fd5b611219826110ab565b9392505050565b6000806040838503121561123357600080fd5b61123c836110ab565b915061124a602084016110ab565b90509250929050565b600181811c9082168061126757607f821691505b60208210810361128757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104ae576104ae61128d565b634e487b7160e01b600052603260045260246000fd5b6000600182016112de576112de61128d565b5060010190565b80820281158282048414176104ae576104ae61128d565b60008261131957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156104ae576104ae61128d565b634e487b7160e01b600052604160045260246000fd5b600081518084526020808501945080840160005b838110156113805781516001600160a01b03168752958201959082019060010161135b565b509495945050505050565b8281526040602082015260006113a46040830184611347565b949350505050565b600060208083850312156113bf57600080fd5b825167ffffffffffffffff808211156113d757600080fd5b818501915085601f8301126113eb57600080fd5b8151818111156113fd576113fd611331565b8060051b604051601f19603f8301168101818110858211171561142257611422611331565b60405291825284820192508381018501918883111561144057600080fd5b938501935b8285101561145e57845184529385019392850192611445565b98975050505050505050565b60006020828403121561147c57600080fd5b5051919050565b85815284602082015260a0604082015260006114a260a0830186611347565b6001600160a01b039490941660608301525060800152939250505056fea2646970667358221220c84ec80d08942567829897dce1e14a41130530afe5ec50663779642f1e4d8d8e64736f6c63430008130033

Deployed Bytecode Sourcemap

25243:3551:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11672:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14032:201;;;;;;;;;;-1:-1:-1;14032:201:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14032:201:0;1004:187:1;12801:108:0;;;;;;;;;;-1:-1:-1;12889:12:0;;12801:108;;;1342:25:1;;;1330:2;1315:18;12801:108:0;1196:177:1;14813:261:0;;;;;;;;;;-1:-1:-1;14813:261:0;;;;;:::i;:::-;;:::i;28515:152::-;;;;;;;;;;-1:-1:-1;28515:152:0;;;;;:::i;:::-;;:::i;:::-;;12643:93;;;;;;;;;;-1:-1:-1;12643:93:0;;12726:2;2038:36:1;;2026:2;2011:18;12643:93:0;1896:184:1;15483:238:0;;;;;;;;;;-1:-1:-1;15483:238:0;;;;;:::i;:::-;;:::i;28408:99::-;;;;;;;;;;-1:-1:-1;28408:99:0;;;;;:::i;:::-;;:::i;25756:37::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2249:32:1;;;2231:51;;2219:2;2204:18;25756:37:0;2085:203:1;28054:346:0;;;;;;;;;;-1:-1:-1;28054:346:0;;;;;:::i;:::-;;:::i;26299:31::-;;;;;;;;;;;;;;;;12972:127;;;;;;;;;;-1:-1:-1;12972:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;13073:18:0;13046:7;13073:18;;;;;;;;;;;;12972:127;24396:103;;;;;;;;;;;;;:::i;28675:116::-;;;;;;;;;;-1:-1:-1;28675:116:0;;;;;:::i;:::-;;:::i;23755:87::-;;;;;;;;;;-1:-1:-1;23828:6:0;;-1:-1:-1;;;;;23828:6:0;23755:87;;11891:104;;;;;;;;;;;;;:::i;26270:22::-;;;;;;;;;;;;;;;;16224:436;;;;;;;;;;-1:-1:-1;16224:436:0;;;;;:::i;:::-;;:::i;13305:193::-;;;;;;;;;;-1:-1:-1;13305:193:0;;;;;:::i;:::-;;:::i;13561:151::-;;;;;;;;;;-1:-1:-1;13561:151:0;;;;;:::i;:::-;;:::i;24654:201::-;;;;;;;;;;-1:-1:-1;24654:201:0;;;;;:::i;:::-;;:::i;11672:100::-;11726:13;11759:5;11752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11672:100;:::o;14032:201::-;14115:4;3965:10;14171:32;3965:10;14187:7;14196:6;14171:8;:32::i;:::-;14221:4;14214:11;;;14032:201;;;;;:::o;14813:261::-;14910:4;3965:10;14968:38;14984:4;3965:10;14999:6;14968:15;:38::i;:::-;15017:27;15027:4;15033:2;15037:6;15017:9;:27::i;:::-;-1:-1:-1;15062:4:0;;14813:261;-1:-1:-1;;;;14813:261:0:o;28515:152::-;23641:13;:11;:13::i;:::-;28590:2:::1;28581:6;:11;28577:60;;;28616:9;;-1:-1:-1::0;;;28616:9:0::1;;;;;;;;;;;28577:60;28647:3;:12:::0;28515:152::o;15483:238::-;15571:4;3965:10;15627:64;3965:10;15643:7;15680:10;15652:25;3965:10;15643:7;15652:9;:25::i;:::-;:38;;;;:::i;:::-;15627:8;:64::i;28408:99::-;23641:13;:11;:13::i;:::-;28480:19:::1;28486:3;28491:7;28480:5;:19::i;:::-;28408:99:::0;;:::o;28054:346::-;23641:13;:11;:13::i;:::-;28179:9;28210:24;;::::1;28206:73;;28258:9;;-1:-1:-1::0;;;28258:9:0::1;;;;;;;;;;;28206:73;28294:9;28289:104;28313:6;28309:1;:10;28289:104;;;28341:40;28356:9;;28366:1;28356:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;28370:7;;28378:1;28370:10;;;;;;;:::i;:::-;;;;;;;28341:14;:40::i;:::-;-1:-1:-1::0;28321:3:0;::::1;::::0;::::1;:::i;:::-;;;;28289:104;;;;28151:249;28054:346:::0;;;;:::o;24396:103::-;23641:13;:11;:13::i;:::-;24461:30:::1;24488:1;24461:18;:30::i;:::-;24396:103::o:0;28675:116::-;28729:54;28739:16;25421:42;28776:6;28729:9;:54::i;:::-;28675:116;:::o;11891:104::-;11947:13;11980:7;11973:14;;;;;:::i;16224:436::-;16317:4;3965:10;16317:4;16400:25;3965:10;16417:7;16400:9;:25::i;:::-;16373:52;;16464:15;16444:16;:35;;16436:85;;;;-1:-1:-1;;;16436:85:0;;5020:2:1;16436:85:0;;;5002:21:1;5059:2;5039:18;;;5032:30;5098:34;5078:18;;;5071:62;-1:-1:-1;;;5149:18:1;;;5142:35;5194:19;;16436:85:0;;;;;;;;;16557:60;16566:5;16573:7;16601:15;16582:16;:34;16557:8;:60::i;13305:193::-;13384:4;3965:10;13440:28;3965:10;13457:2;13461:6;13440:9;:28::i;13561:151::-;-1:-1:-1;;;;;13677:18:0;;;13650:7;13677:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13561:151::o;24654:201::-;23641:13;:11;:13::i;:::-;-1:-1:-1;;;;;24743:22:0;::::1;24735:73;;;::::0;-1:-1:-1;;;24735:73:0;;5426:2:1;24735:73:0::1;::::0;::::1;5408:21:1::0;5465:2;5445:18;;;5438:30;5504:34;5484:18;;;5477:62;-1:-1:-1;;;5555:18:1;;;5548:36;5601:19;;24735:73:0::1;5224:402:1::0;24735:73:0::1;24819:28;24838:8;24819:18;:28::i;20201:346::-:0;-1:-1:-1;;;;;20303:19:0;;20295:68;;;;-1:-1:-1;;;20295:68:0;;5833:2:1;20295:68:0;;;5815:21:1;5872:2;5852:18;;;5845:30;5911:34;5891:18;;;5884:62;-1:-1:-1;;;5962:18:1;;;5955:34;6006:19;;20295:68:0;5631:400:1;20295:68:0;-1:-1:-1;;;;;20382:21:0;;20374:68;;;;-1:-1:-1;;;20374:68:0;;6238:2:1;20374:68:0;;;6220:21:1;6277:2;6257:18;;;6250:30;6316:34;6296:18;;;6289:62;-1:-1:-1;;;6367:18:1;;;6360:32;6409:19;;20374:68:0;6036:398:1;20374:68:0;-1:-1:-1;;;;;20455:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20507:32;;1342:25:1;;;20507:32:0;;1315:18:1;20507:32:0;;;;;;;20201:346;;;:::o;20838:419::-;20939:24;20966:25;20976:5;20983:7;20966:9;:25::i;:::-;20939:52;;-1:-1:-1;;21006:16:0;:37;21002:248;;21088:6;21068:16;:26;;21060:68;;;;-1:-1:-1;;;21060:68:0;;6641:2:1;21060:68:0;;;6623:21:1;6680:2;6660:18;;;6653:30;6719:31;6699:18;;;6692:59;6768:18;;21060:68:0;6439:353:1;21060:68:0;21172:51;21181:5;21188:7;21216:6;21197:16;:25;21172:8;:51::i;:::-;20928:329;20838:419;;;:::o;26402:1014::-;-1:-1:-1;;;;;26505:20:0;;;26513:12;26505:20;;;;;;26550:18;;;26492:10;26597:6;;26505:20;26597:17;;;26608:6;26607:7;26597:17;-1:-1:-1;;;;;26643:25:0;;26625:15;26643:25;;;:19;:25;;;;;;26579:35;;-1:-1:-1;26625:15:0;26643:25;;;:52;;-1:-1:-1;;;;;;26672:23:0;;;;;;:19;:23;;;;;;;;26643:52;26625:70;;26706:14;26723:10;:24;;;;26737:10;26723:24;26706:41;;26765:9;26760:603;;26791:25;26836:3;26829;;26820:6;:12;;;;:::i;:::-;26819:20;;;;:::i;:::-;26791:48;-1:-1:-1;26858:22:0;;26854:223;;26901:27;26911:17;26901:27;;:::i;:::-;;;26967:17;26947:16;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;27003:58:0;;-1:-1:-1;27019:4:0;27025:16;27043:17;27003:15;:58::i;:::-;27097:6;27093:259;;;27128:16;;:20;27124:213;;27191:16;;;27173:15;27230:20;;;27273:44;25421:42;27191:16;27273;:44::i;:::-;27150:187;27124:213;26776:587;26760:603;27375:33;27391:4;27397:2;27401:6;27375:15;:33::i;:::-;26481:935;;;;;26402:1014;;;:::o;23920:132::-;23828:6;;-1:-1:-1;;;;;23828:6:0;3965:10;23984:23;23976:68;;;;-1:-1:-1;;;23976:68:0;;7527:2:1;23976:68:0;;;7509:21:1;;;7546:18;;;7539:30;7605:34;7585:18;;;7578:62;7657:18;;23976:68:0;7325:356:1;18215:544:0;-1:-1:-1;;;;;18299:21:0;;18291:65;;;;-1:-1:-1;;;18291:65:0;;7888:2:1;18291:65:0;;;7870:21:1;7927:2;7907:18;;;7900:30;7966:33;7946:18;;;7939:61;8017:18;;18291:65:0;7686:355:1;18291:65:0;18447:6;18431:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18598:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;18653:37;1342:25:1;;;18653:37:0;;1315:18:1;18653:37:0;;;;;;;28408:99;;:::o;25015:191::-;25108:6;;;-1:-1:-1;;;;;25125:17:0;;;-1:-1:-1;;;;;;25125:17:0;;;;;;;25158:40;;25108:6;;;25125:17;25108:6;;25158:40;;25089:16;;25158:40;25078:128;25015:191;:::o;17130:798::-;-1:-1:-1;;;;;17227:18:0;;17219:68;;;;-1:-1:-1;;;17219:68:0;;8248:2:1;17219:68:0;;;8230:21:1;8287:2;8267:18;;;8260:30;8326:34;8306:18;;;8299:62;-1:-1:-1;;;8377:18:1;;;8370:35;8422:19;;17219:68:0;8046:401:1;17219:68:0;-1:-1:-1;;;;;17306:16:0;;17298:64;;;;-1:-1:-1;;;17298:64:0;;8654:2:1;17298:64:0;;;8636:21:1;8693:2;8673:18;;;8666:30;8732:34;8712:18;;;8705:62;-1:-1:-1;;;8783:18:1;;;8776:33;8826:19;;17298:64:0;8452:399:1;17298:64:0;-1:-1:-1;;;;;17448:15:0;;17426:19;17448:15;;;;;;;;;;;17482:21;;;;17474:72;;;;-1:-1:-1;;;17474:72:0;;9058:2:1;17474:72:0;;;9040:21:1;9097:2;9077:18;;;9070:30;9136:34;9116:18;;;9109:62;-1:-1:-1;;;9187:18:1;;;9180:36;9233:19;;17474:72:0;8856:402:1;17474:72:0;-1:-1:-1;;;;;17582:15:0;;;:9;:15;;;;;;;;;;;17600:20;;;17582:38;;17792:13;;;;;;;;;;:23;;;;;;17844:26;;1342:25:1;;;17792:13:0;;17844:26;;1315:18:1;17844:26:0;;;;;;;17883:37;21857:91;27424:622;27527:16;;;27541:1;27527:16;;;;;;;;27503:21;;27527:16;;;;;;;;;;-1:-1:-1;27527:16:0;27503:40;;27564:16;27554:4;27559:1;27554:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;27554:26:0;;;-1:-1:-1;;;;;27554:26:0;;;;;25664:42;27591:4;27596:1;27591:7;;;;;;;;:::i;:::-;;;;;;:22;-1:-1:-1;;;;;27591:22:0;;;-1:-1:-1;;;;;27591:22:0;;;;;27624:55;27633:16;25505:42;27667:11;27624:8;:55::i;:::-;27717:39;;-1:-1:-1;;;27717:39:0;;27690:24;;25505:42;;27717:20;;:39;;27738:11;;27751:4;;27717:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27717:39:0;;;;;;;;;;;;:::i;:::-;27690:66;;27767:25;25505:42;-1:-1:-1;;;;;27795:12:0;;27808:11;27821:7;27829:1;27821:10;;;;;;;;:::i;:::-;;;;;;;27833:7;27841:1;27833:10;;;;;;;;:::i;:::-;;;;;;;27795:49;;;;;;;;;;;;;;;;11510:25:1;;;11566:2;11551:18;;11544:34;;;;11609:2;11594:18;;11587:34;11498:2;11483:18;;11308:319;27795:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27767:77;-1:-1:-1;27855:14:0;27918:3;27893:21;27767:77;27913:1;27893:21;:::i;:::-;27892:29;;;;:::i;:::-;27872:49;;:17;:49;:::i;:::-;27932:106;;-1:-1:-1;;;27932:106:0;;27855:66;;-1:-1:-1;25505:42:0;;27932:58;;:106;;27991:11;;27855:66;;28012:4;;28018:2;;28022:15;;27932:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27492:554;;;;27424:622;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;2293:367::-;2356:8;2366:6;2420:3;2413:4;2405:6;2401:17;2397:27;2387:55;;2438:1;2435;2428:12;2387:55;-1:-1:-1;2461:20:1;;2504:18;2493:30;;2490:50;;;2536:1;2533;2526:12;2490:50;2573:4;2565:6;2561:17;2549:29;;2633:3;2626:4;2616:6;2613:1;2609:14;2601:6;2597:27;2593:38;2590:47;2587:67;;;2650:1;2647;2640:12;2587:67;2293:367;;;;;:::o;2665:773::-;2787:6;2795;2803;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2920:9;2907:23;2949:18;2990:2;2982:6;2979:14;2976:34;;;3006:1;3003;2996:12;2976:34;3045:70;3107:7;3098:6;3087:9;3083:22;3045:70;:::i;:::-;3134:8;;-1:-1:-1;3019:96:1;-1:-1:-1;3222:2:1;3207:18;;3194:32;;-1:-1:-1;3238:16:1;;;3235:36;;;3267:1;3264;3257:12;3235:36;;3306:72;3370:7;3359:8;3348:9;3344:24;3306:72;:::i;:::-;2665:773;;;;-1:-1:-1;3397:8:1;-1:-1:-1;;;;2665:773:1:o;3443:186::-;3502:6;3555:2;3543:9;3534:7;3530:23;3526:32;3523:52;;;3571:1;3568;3561:12;3523:52;3594:29;3613:9;3594:29;:::i;:::-;3584:39;3443:186;-1:-1:-1;;;3443:186:1:o;3634:260::-;3702:6;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:52;;;3779:1;3776;3769:12;3731:52;3802:29;3821:9;3802:29;:::i;:::-;3792:39;;3850:38;3884:2;3873:9;3869:18;3850:38;:::i;:::-;3840:48;;3634:260;;;;;:::o;3899:380::-;3978:1;3974:12;;;;4021;;;4042:61;;4096:4;4088:6;4084:17;4074:27;;4042:61;4149:2;4141:6;4138:14;4118:18;4115:38;4112:161;;4195:10;4190:3;4186:20;4183:1;4176:31;4230:4;4227:1;4220:15;4258:4;4255:1;4248:15;4112:161;;3899:380;;;:::o;4284:127::-;4345:10;4340:3;4336:20;4333:1;4326:31;4376:4;4373:1;4366:15;4400:4;4397:1;4390:15;4416:125;4481:9;;;4502:10;;;4499:36;;;4515:18;;:::i;4546:127::-;4607:10;4602:3;4598:20;4595:1;4588:31;4638:4;4635:1;4628:15;4662:4;4659:1;4652:15;4678:135;4717:3;4738:17;;;4735:43;;4758:18;;:::i;:::-;-1:-1:-1;4805:1:1;4794:13;;4678:135::o;6797:168::-;6870:9;;;6901;;6918:15;;;6912:22;;6898:37;6888:71;;6939:18;;:::i;6970:217::-;7010:1;7036;7026:132;;7080:10;7075:3;7071:20;7068:1;7061:31;7115:4;7112:1;7105:15;7143:4;7140:1;7133:15;7026:132;-1:-1:-1;7172:9:1;;6970:217::o;7192:128::-;7259:9;;;7280:11;;;7277:37;;;7294:18;;:::i;9263:127::-;9324:10;9319:3;9315:20;9312:1;9305:31;9355:4;9352:1;9345:15;9379:4;9376:1;9369:15;9395:461;9448:3;9486:5;9480:12;9513:6;9508:3;9501:19;9539:4;9568:2;9563:3;9559:12;9552:19;;9605:2;9598:5;9594:14;9626:1;9636:195;9650:6;9647:1;9644:13;9636:195;;;9715:13;;-1:-1:-1;;;;;9711:39:1;9699:52;;9771:12;;;;9806:15;;;;9747:1;9665:9;9636:195;;;-1:-1:-1;9847:3:1;;9395:461;-1:-1:-1;;;;;9395:461:1:o;9861:332::-;10068:6;10057:9;10050:25;10111:2;10106;10095:9;10091:18;10084:30;10031:4;10131:56;10183:2;10172:9;10168:18;10160:6;10131:56;:::i;:::-;10123:64;9861:332;-1:-1:-1;;;;9861:332:1:o;10198:1105::-;10293:6;10324:2;10367;10355:9;10346:7;10342:23;10338:32;10335:52;;;10383:1;10380;10373:12;10335:52;10416:9;10410:16;10445:18;10486:2;10478:6;10475:14;10472:34;;;10502:1;10499;10492:12;10472:34;10540:6;10529:9;10525:22;10515:32;;10585:7;10578:4;10574:2;10570:13;10566:27;10556:55;;10607:1;10604;10597:12;10556:55;10636:2;10630:9;10658:2;10654;10651:10;10648:36;;;10664:18;;:::i;:::-;10710:2;10707:1;10703:10;10742:2;10736:9;10805:2;10801:7;10796:2;10792;10788:11;10784:25;10776:6;10772:38;10860:6;10848:10;10845:22;10840:2;10828:10;10825:18;10822:46;10819:72;;;10871:18;;:::i;:::-;10907:2;10900:22;10957:18;;;10991:15;;;;-1:-1:-1;11033:11:1;;;11029:20;;;11061:19;;;11058:39;;;11093:1;11090;11083:12;11058:39;11117:11;;;;11137:135;11153:6;11148:3;11145:15;11137:135;;;11219:10;;11207:23;;11170:12;;;;11250;;;;11137:135;;;11291:6;10198:1105;-1:-1:-1;;;;;;;;10198:1105:1:o;11632:184::-;11702:6;11755:2;11743:9;11734:7;11730:23;11726:32;11723:52;;;11771:1;11768;11761:12;11723:52;-1:-1:-1;11794:16:1;;11632:184;-1:-1:-1;11632:184:1:o;11821:574::-;12112:6;12101:9;12094:25;12155:6;12150:2;12139:9;12135:18;12128:34;12198:3;12193:2;12182:9;12178:18;12171:31;12075:4;12219:57;12271:3;12260:9;12256:19;12248:6;12219:57;:::i;:::-;-1:-1:-1;;;;;12312:32:1;;;;12307:2;12292:18;;12285:60;-1:-1:-1;12376:3:1;12361:19;12354:35;12211:65;11821:574;-1:-1:-1;;;11821:574:1:o

Swarm Source

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