ETH Price: $3,150.04 (-4.90%)
 

Overview

Max Total Supply

1 KODE

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0098 KODE

Value
$0.00
0xe11d2724e0dc92aa4ed723c851b83ed0a660bf13
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:
HashKode

Compiler Version
v0.8.28+commit.7893614a

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-09
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;

/*
  H A S H K O D E : Securing the Future with Smart AI & Blockchain

  Web:        https://www.HashKode.com
  Twitter:    https://x.com/HashKodecom
  LinkedIn:   https://www.linkedin.com/company/HashKodecom
  Facebook:   https://www.facebook.com/HashKodecom
  Instagram:  https://instagram.com/HashKodecom
  GitHub:     https://github.com/HashKodecom
*/

/**
 * @dev Interface for the DEX version 2 factory contract
 */
interface IDexV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

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

/**
 * @dev Interface for the DEX version 2 router contract
 */
interface IDexV2Router {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

/**
 * @dev 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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(
        address sender,
        uint256 balance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(
        address spender,
        uint256 allowance,
        uint256 needed
    );

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value,
        bool emitEvent
    ) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

/**
 * @dev ERC20 token with taxation and liquidity swap functionalities.
 */
contract HashKode is ERC20, Ownable {
    address public kodeFundWallet = 0x05Cdebb11D4AC7c0b97453De3D5B105EfB67206C;
    address public operationsWallet = 0x43Ffc2895753850C6D37A277AdECEb09345d626e;
    uint256 public maxBuySellLimit = 1 * 10 ** 16;
    uint256 public maxWalletLimit = 2 * 10 ** 16;
    string public kodeFundTax = "1.5%";
    string public operationsTax = "0.5%";
    uint8 private _kodeFundTax = 15;
    uint8 private _operationsTax = 5;
    bool private _inSwapAndLiquify;
    
    mapping(address => bool) public isExcludedFromTax;
    mapping(address => bool) public isExcludedFromMaxBuySellLimit;
    mapping(address => bool) public isExcludedFromMaxWalletLimit;
    mapping(address => bool) public dexPairStatus;
    mapping(address => address) public pairToRouter;
    mapping(address => address) public routerToPair;

    event TaxExclusionUpdated(address indexed account, bool indexed status);
    event MaxWalletLimitExclusionUpdated(address indexed account, bool indexed status);
    event MaxBuySellLimitExclusionUpdated(address indexed account, bool indexed status);
    event KodeFundWalletChanged(address indexed oldWallet, address indexed newWallet);
    event OperationsWalletChanged(address indexed oldWallet, address indexed newWallet);
    event NewRouterAdded(address indexed routerAddress, address indexed pairAddress);

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

    /**
     * @dev Constructor to initialize the Kode token contract.
     */
    constructor() ERC20("HashKode", "KODE") Ownable(kodeFundWallet) {
        isExcludedFromTax[kodeFundWallet] = true;
        isExcludedFromMaxBuySellLimit[kodeFundWallet] = true;
        isExcludedFromMaxWalletLimit[kodeFundWallet] = true;
        
        isExcludedFromTax[operationsWallet] = true;
        isExcludedFromMaxBuySellLimit[operationsWallet] = true;
        isExcludedFromMaxWalletLimit[operationsWallet] = true;

        isExcludedFromMaxWalletLimit[address(this)] = true;
        _mint(kodeFundWallet, 1 * 10 ** decimals());
    }

    /**
     * @dev Adds a new DEX router to the contract.
     * @param routerAddress The address of the new DEX router.
     * Requirements:
     * - Caller must be the owner of the contract.
     */
    function addNewDexRouter(address routerAddress) external onlyOwner {
        IDexV2Router newRouter = IDexV2Router(routerAddress);
        address newPair;
        try IDexV2Factory(newRouter.factory()).createPair(address(this), newRouter.WETH())
        {}
        catch
        {}
        newPair = IDexV2Factory(newRouter.factory()).getPair(address(this), newRouter.WETH());
        dexPairStatus[newPair] = true;
        pairToRouter[newPair] = routerAddress;
        routerToPair[routerAddress] = newPair;
        isExcludedFromMaxWalletLimit[newPair] = true;

        emit NewRouterAdded(routerAddress, newPair);
    }

    /**
     * @dev Internal function to update balances and apply taxes on token transfers.
     * @param from Address from which tokens are transferred.
     * @param to Address to which tokens are transferred.
     * @param value Amount of tokens transferred.
     */
    function _update(address from, address to, uint256 value) internal override {
        if ((dexPairStatus[from] || dexPairStatus[to]) && !(isExcludedFromTax[from] || isExcludedFromTax[to]) && !_inSwapAndLiquify) {
            uint256 taxValue = (value * (_kodeFundTax + _operationsTax)) / 1000;
            value -= taxValue;

            if (dexPairStatus[to]) { // sell
                _transferETH(to);
                require((isExcludedFromMaxBuySellLimit[from] || value <= maxBuySellLimit), "ERC20: maxBuySellLimit exceeded");
            }
            else { // buy
                require((isExcludedFromMaxBuySellLimit[to] || value <= maxBuySellLimit), "ERC20: maxBuySellLimit exceeded");
            }
            
            super._update(from, address(this), taxValue);
        }
        require((isExcludedFromMaxWalletLimit[to] || (value + balanceOf(to)) <= maxWalletLimit), "ERC20: maxWalletLimit exceeded");
        super._update(from, to, value);
    }

    /**
     * @dev Internal function to convert tokens to ETH and distribute taxes.
     * Transfers tokens to ETH if the token worth in ETH exceeds a threshold, distributes taxes to designated wallets, and updates balances accordingly.
     * This function is called when selling tokens on a DEX pair.
     */
    function _transferETH(address to) private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= 1000000000000000) {
            _swapTokensForEth(contractBalance, to);
            payable(kodeFundWallet).transfer((address(this).balance * _kodeFundTax) / 20);
            payable(operationsWallet).transfer(address(this).balance);
        }
    }

    /**
     * @dev Converts the accumulated tokens to ETH.
     */
    function _swapTokensForEth(uint256 tokenAmount, address pair) private lockTheSwap {
        IDexV2Router dexRouter = IDexV2Router(pairToRouter[pair]);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

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

    /**
     * @dev Sets the address of the new kode fund wallet.
     * @param newWallet The address of the new kode fund wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {KodeFundWalletChanged} event.
     */
    function changeKodeFundWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = kodeFundWallet;
        kodeFundWallet = newWallet;

        emit KodeFundWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Sets the address of the new operations wallet.
     * @param newWallet The address of the new operations wallet.
     * Requirements:
     * `newWallet` cannot be the zero address.
     * Emits a {OperationsWalletChanged} event.
     */
    function changeOperationsWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "ERC20: new wallet is zero address");
        address oldWallet = operationsWallet;
        operationsWallet = newWallet;

        emit OperationsWalletChanged(oldWallet, newWallet);
    }

    /**
     * @dev Excludes or includes an account from taxation.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for tax exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromTax(address account, bool status) external onlyOwner {
        isExcludedFromTax[account] = status;

        emit TaxExclusionUpdated(account, status);
    }

    /**
     * @dev Excludes or includes an account from the maximum buy/sell limit.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for maximum buy/sell limit exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromMaxBuySellLimit(address account, bool status) external onlyOwner {
        isExcludedFromMaxBuySellLimit[account] = status;

        emit MaxBuySellLimitExclusionUpdated(account, status);
    }

    /**
     * @dev Excludes or includes an account from the maximum wallet limit.
     * @param account The address of the account to be excluded or included.
     * @param status The status to set for maximum wallet limit exclusion (true for exclusion, false for inclusion).
     * Requirements:
     * - The caller must be the contract owner.
     */
    function excludeFromMaxWalletLimit(address account, bool status) external onlyOwner {
        isExcludedFromMaxWalletLimit[account] = status;

        emit MaxWalletLimitExclusionUpdated(account, status);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"KodeFundWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"MaxBuySellLimitExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"MaxWalletLimitExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerAddress","type":"address"},{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"}],"name":"NewRouterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"OperationsWalletChanged","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":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"TaxExclusionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"addNewDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeKodeFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dexPairStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxBuySellLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxBuySellLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kodeFundTax","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kodeFundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuySellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"operationsTax","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pairToRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routerToPair","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"}]

600680546001600160a01b03199081167305cdebb11d4ac7c0b97453de3d5b105efb67206c17909155600780549091167343ffc2895753850c6d37a277adeceb09345d626e179055662386f26fc1000060085566470de4df82000060095560c06040526004608090815263312e352560e01b60a052600a906100819082610a2a565b50604080518082019091526004815263302e352560e01b6020820152600b906100aa9082610a2a565b50600c805461ffff191661050f1790553480156100c5575f5ffd5b506006546040805180820182526008815267486173684b6f646560c01b602080830191909152825180840190935260048352634b4f444560e01b908301526001600160a01b039092169190600361011c8382610a2a565b5060046101298282610a2a565b5050506001600160a01b03811661015a57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101638161023c565b50600680546001600160a01b039081165f908152600d602081815260408084208054600160ff199182168117909255875487168652600e8085528387208054831684179055885488168752600f8086528488208054841685179055600780548a16895296865284882080548416851790558654891688529085528387208054831684179055945487168652939092528084208054841683179055308452909220805490911690911790559054610237911661021c601290565b61022790600a610bdd565b610232906001610bf2565b61028d565b610d11565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166102b65760405163ec442f0560e01b81525f6004820152602401610151565b6102c15f83836102c5565b5050565b6001600160a01b0383165f9081526010602052604090205460ff168061030257506001600160a01b0382165f9081526010602052604090205460ff165b801561034857506001600160a01b0383165f908152600d602052604090205460ff168061034657506001600160a01b0382165f908152600d602052604090205460ff165b155b801561035d5750600c5462010000900460ff16155b156104a257600c545f906103e89061037f9060ff610100820481169116610c09565b61038c9060ff1684610bf2565b6103969190610c22565b90506103a28183610c41565b6001600160a01b0384165f9081526010602052604090205490925060ff1615610434576103ce83610547565b6001600160a01b0384165f908152600e602052604090205460ff16806103f657506008548211155b61042f5760405162461bcd60e51b815260206004820152601f60248201525f51602061259a5f395f51905f526044820152606401610151565b610495565b6001600160a01b0383165f908152600e602052604090205460ff168061045c57506008548211155b6104955760405162461bcd60e51b815260206004820152601f60248201525f51602061259a5f395f51905f526044820152606401610151565b6104a08430836105fa565b505b6001600160a01b0382165f908152600f602052604090205460ff16806104eb57506009546001600160a01b0383165f908152602081905260409020546104e89083610c54565b11155b6105375760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d697420657863656564656400006044820152606401610151565b6105428383836105fa565b505050565b305f9081526020819052604090205466038d7ea4c6800081106102c15761056e8183610720565b600654600c546001600160a01b03909116906108fc906014906105949060ff1647610bf2565b61059e9190610c22565b6040518115909202915f818181858888f193505050501580156105c3573d5f5f3e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610542573d5f5f3e3d5ffd5b6001600160a01b038316610624578060025f8282546106199190610c54565b909155506106949050565b6001600160a01b0383165f90815260208190526040902054818110156106765760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610151565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166106b0576002805482900390556106ce565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161071391815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f8151811061078457610784610c67565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107e0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108049190610c7b565b8160018151811061081757610817610c67565b6001600160a01b039092166020928302919091019091015261083a3083866108b8565b6001600160a01b03821663791ac947855f84306108594261012c610c54565b6040518663ffffffff1660e01b8152600401610879959493929190610ca1565b5f604051808303815f87803b158015610890575f5ffd5b505af11580156108a2573d5f5f3e3d5ffd5b5050600c805462ff000019169055505050505050565b61054283838360016001600160a01b0384166108e95760405163e602df0560e01b81525f6004820152602401610151565b6001600160a01b03831661091257604051634a1406b160e11b81525f6004820152602401610151565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561098d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161098491815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806109bb57607f821691505b6020821081036109d957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561054257805f5260205f20601f840160051c81016020851015610a045750805b601f840160051c820191505b81811015610a23575f8155600101610a10565b5050505050565b81516001600160401b03811115610a4357610a43610993565b610a5781610a5184546109a7565b846109df565b6020601f821160018114610a89575f8315610a725750848201515b5f19600385901b1c1916600184901b178455610a23565b5f84815260208120601f198516915b82811015610ab85787850151825560209485019460019092019101610a98565b5084821015610ad557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b6001841115610b3357808504811115610b1757610b17610ae4565b6001841615610b2557908102905b60019390931c928002610afc565b935093915050565b5f82610b4957506001610bd7565b81610b5557505f610bd7565b8160018114610b6b5760028114610b7557610b91565b6001915050610bd7565b60ff841115610b8657610b86610ae4565b50506001821b610bd7565b5060208310610133831016604e8410600b8410161715610bb4575081810a610bd7565b610bc05f198484610af8565b805f1904821115610bd357610bd3610ae4565b0290505b92915050565b5f610beb60ff841683610b3b565b9392505050565b8082028115828204841417610bd757610bd7610ae4565b60ff8181168382160190811115610bd757610bd7610ae4565b5f82610c3c57634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610bd757610bd7610ae4565b80820180821115610bd757610bd7610ae4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c8b575f5ffd5b81516001600160a01b0381168114610beb575f5ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b81811015610cf15783516001600160a01b0316835260209384019390920191600101610cca565b50506001600160a01b039590951660608401525050608001529392505050565b61187c80610d1e5f395ff3fe6080604052600436106101c8575f3560e01c80638da5cb5b116100f2578063cb4ca63111610092578063e76779ba11610062578063e76779ba14610572578063f2fde38b14610591578063f7371c24146105b0578063fd72e22a146105e4575f5ffd5b8063cb4ca631146104b3578063dd62ed3e146104e1578063e09294c614610525578063e5a4a89b14610544575f5ffd5b8063a9059cbb116100cd578063a9059cbb14610442578063ab1af54014610461578063c50c94b014610480578063c6a3064714610494575f5ffd5b80638da5cb5b146103e357806395d89b4114610400578063a8a69b9d14610414575f5ffd5b8063313ce5671161016857806366a88d961161013857806366a88d961461036757806370a082311461037c578063715018a6146103b0578063781edb3c146103c4575f5ffd5b8063313ce567146102e85780633928e001146103035780633b67f20a1461031857806354ba54a514610339575f5ffd5b80630cc300eb116101a35780630cc300eb1461027857806318160ddd1461028c57806319eec221146102aa57806323b872dd146102c9575f5ffd5b806306fdde03146101d3578063095ea7b3146101fd5780630ab76f721461022c575f5ffd5b366101cf57005b5f5ffd5b3480156101de575f5ffd5b506101e7610603565b6040516101f4919061156b565b60405180910390f35b348015610208575f5ffd5b5061021c6102173660046115b4565b610693565b60405190151581526020016101f4565b348015610237575f5ffd5b506102606102463660046115de565b60126020525f90815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b348015610283575f5ffd5b506101e76106ac565b348015610297575f5ffd5b506002545b6040519081526020016101f4565b3480156102b5575f5ffd5b50600654610260906001600160a01b031681565b3480156102d4575f5ffd5b5061021c6102e3366004611600565b610738565b3480156102f3575f5ffd5b50604051601281526020016101f4565b34801561030e575f5ffd5b5061029c60085481565b348015610323575f5ffd5b506103376103323660046115de565b61075b565b005b348015610344575f5ffd5b5061021c6103533660046115de565b600e6020525f908152604090205460ff1681565b348015610372575f5ffd5b5061029c60095481565b348015610387575f5ffd5b5061029c6103963660046115de565b6001600160a01b03165f9081526020819052604090205490565b3480156103bb575f5ffd5b506103376107e3565b3480156103cf575f5ffd5b506103376103de36600461163e565b6107f6565b3480156103ee575f5ffd5b506005546001600160a01b0316610260565b34801561040b575f5ffd5b506101e7610851565b34801561041f575f5ffd5b5061021c61042e3660046115de565b600f6020525f908152604090205460ff1681565b34801561044d575f5ffd5b5061021c61045c3660046115b4565b610860565b34801561046c575f5ffd5b5061033761047b36600461163e565b61086d565b34801561048b575f5ffd5b506101e76108c8565b34801561049f575f5ffd5b506103376104ae36600461163e565b6108d5565b3480156104be575f5ffd5b5061021c6104cd3660046115de565b600d6020525f908152604090205460ff1681565b3480156104ec575f5ffd5b5061029c6104fb366004611679565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610530575f5ffd5b5061033761053f3660046115de565b610930565b34801561054f575f5ffd5b5061021c61055e3660046115de565b60106020525f908152604090205460ff1681565b34801561057d575f5ffd5b5061033761058c3660046115de565b6109af565b34801561059c575f5ffd5b506103376105ab3660046115de565b610cd4565b3480156105bb575f5ffd5b506102606105ca3660046115de565b60116020525f90815260409020546001600160a01b031681565b3480156105ef575f5ffd5b50600754610260906001600160a01b031681565b606060038054610612906116a5565b80601f016020809104026020016040519081016040528092919081815260200182805461063e906116a5565b80156106895780601f1061066057610100808354040283529160200191610689565b820191905f5260205f20905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b5f336106a0818585610d11565b60019150505b92915050565b600a80546106b9906116a5565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906116a5565b80156107305780601f1061070757610100808354040283529160200191610730565b820191905f5260205f20905b81548152906001019060200180831161071357829003601f168201915b505050505081565b5f33610745858285610d23565b610750858585610d9e565b506001949350505050565b610763610dfb565b6001600160a01b0381166107925760405162461bcd60e51b8152600401610789906116dd565b60405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f1d13de2de5905fa91afd4d881760820120b00480953a10163602dda148ade6c4905f90a35050565b6107eb610dfb565b6107f45f610e28565b565b6107fe610dfb565b6001600160a01b0382165f818152600f6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b606060048054610612906116a5565b5f336106a0818585610d9e565b610875610dfb565b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f51584c17ee82825617903b80153bb91ca8634415e6080ca2e9a3cc2d902b476d91a35050565b600b80546106b9906116a5565b6108dd610dfb565b6001600160a01b0382165f818152600d6020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610938610dfb565b6001600160a01b03811661095e5760405162461bcd60e51b8152600401610789906116dd565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f02596f53075b4aad7ecd386511117ede9b545a2200645972e978497f4c6c9fb3905f90a35050565b6109b7610dfb565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1c919061171e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8b919061171e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610af3575060408051601f3d908101601f19168201909252610af09181019061171e565b60015b15610afa57505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a919061171e565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc9919061171e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c36919061171e565b6001600160a01b038181165f8181526010602090815260408083208054600160ff1991821681179092556011845282852080546001600160a01b0319908116988d1698891790915587865260128552838620805490911687179055858552600f9093528184208054909316179091555193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610cdc610dfb565b6001600160a01b038116610d0557604051631e4fbdf760e01b81525f6004820152602401610789565b610d0e81610e28565b50565b610d1e8383836001610e79565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d985781811015610d8a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610789565b610d9884848484035f610e79565b50505050565b6001600160a01b038316610dc757604051634b637e8f60e11b81525f6004820152602401610789565b6001600160a01b038216610df05760405163ec442f0560e01b81525f6004820152602401610789565b610d1e838383610f4b565b6005546001600160a01b031633146107f45760405163118cdaa760e01b8152336004820152602401610789565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ea25760405163e602df0560e01b81525f6004820152602401610789565b6001600160a01b038316610ecb57604051634a1406b160e11b81525f6004820152602401610789565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610d9857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f3d91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205460ff1680610f8857506001600160a01b0382165f9081526010602052604090205460ff165b8015610fce57506001600160a01b0383165f908152600d602052604090205460ff1680610fcc57506001600160a01b0382165f908152600d602052604090205460ff165b155b8015610fe35750600c5462010000900460ff16155b1561114e57600c545f906103e8906110059060ff61010082048116911661174d565b6110129060ff1684611766565b61101c919061177d565b9050611028818361179c565b6001600160a01b0384165f9081526010602052604090205490925060ff16156110cd57611054836111ee565b6001600160a01b0384165f908152600e602052604090205460ff168061107c57506008548211155b6110c85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610789565b611141565b6001600160a01b0383165f908152600e602052604090205460ff16806110f557506008548211155b6111415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610789565b61114c8430836112a5565b505b6001600160a01b0382165f908152600f602052604090205460ff168061119757506009546001600160a01b0383165f9081526020819052604090205461119490836117af565b11155b6111e35760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d697420657863656564656400006044820152606401610789565b610d1e8383836112a5565b305f9081526020819052604090205466038d7ea4c6800081106112a15761121581836113cb565b600654600c546001600160a01b03909116906108fc9060149061123b9060ff1647611766565b611245919061177d565b6040518115909202915f818181858888f1935050505015801561126a573d5f5f3e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d1e573d5f5f3e3d5ffd5b5050565b6001600160a01b0383166112cf578060025f8282546112c491906117af565b9091555061133f9050565b6001600160a01b0383165f90815260208190526040902054818110156113215760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610789565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661135b57600280548290039055611379565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113be91815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f8151811061142f5761142f6117c2565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561148b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114af919061171e565b816001815181106114c2576114c26117c2565b60200260200101906001600160a01b031690816001600160a01b0316815250506114ed308386610d11565b6001600160a01b03821663791ac947855f843061150c4261012c6117af565b6040518663ffffffff1660e01b815260040161152c9594939291906117d6565b5f604051808303815f87803b158015611543575f5ffd5b505af1158015611555573d5f5f3e3d5ffd5b5050600c805462ff000019169055505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d0e575f5ffd5b5f5f604083850312156115c5575f5ffd5b82356115d0816115a0565b946020939093013593505050565b5f602082840312156115ee575f5ffd5b81356115f9816115a0565b9392505050565b5f5f5f60608486031215611612575f5ffd5b833561161d816115a0565b9250602084013561162d816115a0565b929592945050506040919091013590565b5f5f6040838503121561164f575f5ffd5b823561165a816115a0565b91506020830135801515811461166e575f5ffd5b809150509250929050565b5f5f6040838503121561168a575f5ffd5b8235611695816115a0565b9150602083013561166e816115a0565b600181811c908216806116b957607f821691505b6020821081036116d757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526021908201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736040820152607360f81b606082015260800190565b5f6020828403121561172e575f5ffd5b81516115f9816115a0565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156106a6576106a6611739565b80820281158282048414176106a6576106a6611739565b5f8261179757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106a6576106a6611739565b808201808211156106a6576106a6611739565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156118265783516001600160a01b03168352602093840193909201916001016117ff565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122045cd0fc89b79683dddf3f3fc5876a3d07107dd6129962378deafee7e631334ac64736f6c634300081c003345524332303a206d617842757953656c6c4c696d697420657863656564656400

Deployed Bytecode

0x6080604052600436106101c8575f3560e01c80638da5cb5b116100f2578063cb4ca63111610092578063e76779ba11610062578063e76779ba14610572578063f2fde38b14610591578063f7371c24146105b0578063fd72e22a146105e4575f5ffd5b8063cb4ca631146104b3578063dd62ed3e146104e1578063e09294c614610525578063e5a4a89b14610544575f5ffd5b8063a9059cbb116100cd578063a9059cbb14610442578063ab1af54014610461578063c50c94b014610480578063c6a3064714610494575f5ffd5b80638da5cb5b146103e357806395d89b4114610400578063a8a69b9d14610414575f5ffd5b8063313ce5671161016857806366a88d961161013857806366a88d961461036757806370a082311461037c578063715018a6146103b0578063781edb3c146103c4575f5ffd5b8063313ce567146102e85780633928e001146103035780633b67f20a1461031857806354ba54a514610339575f5ffd5b80630cc300eb116101a35780630cc300eb1461027857806318160ddd1461028c57806319eec221146102aa57806323b872dd146102c9575f5ffd5b806306fdde03146101d3578063095ea7b3146101fd5780630ab76f721461022c575f5ffd5b366101cf57005b5f5ffd5b3480156101de575f5ffd5b506101e7610603565b6040516101f4919061156b565b60405180910390f35b348015610208575f5ffd5b5061021c6102173660046115b4565b610693565b60405190151581526020016101f4565b348015610237575f5ffd5b506102606102463660046115de565b60126020525f90815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101f4565b348015610283575f5ffd5b506101e76106ac565b348015610297575f5ffd5b506002545b6040519081526020016101f4565b3480156102b5575f5ffd5b50600654610260906001600160a01b031681565b3480156102d4575f5ffd5b5061021c6102e3366004611600565b610738565b3480156102f3575f5ffd5b50604051601281526020016101f4565b34801561030e575f5ffd5b5061029c60085481565b348015610323575f5ffd5b506103376103323660046115de565b61075b565b005b348015610344575f5ffd5b5061021c6103533660046115de565b600e6020525f908152604090205460ff1681565b348015610372575f5ffd5b5061029c60095481565b348015610387575f5ffd5b5061029c6103963660046115de565b6001600160a01b03165f9081526020819052604090205490565b3480156103bb575f5ffd5b506103376107e3565b3480156103cf575f5ffd5b506103376103de36600461163e565b6107f6565b3480156103ee575f5ffd5b506005546001600160a01b0316610260565b34801561040b575f5ffd5b506101e7610851565b34801561041f575f5ffd5b5061021c61042e3660046115de565b600f6020525f908152604090205460ff1681565b34801561044d575f5ffd5b5061021c61045c3660046115b4565b610860565b34801561046c575f5ffd5b5061033761047b36600461163e565b61086d565b34801561048b575f5ffd5b506101e76108c8565b34801561049f575f5ffd5b506103376104ae36600461163e565b6108d5565b3480156104be575f5ffd5b5061021c6104cd3660046115de565b600d6020525f908152604090205460ff1681565b3480156104ec575f5ffd5b5061029c6104fb366004611679565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610530575f5ffd5b5061033761053f3660046115de565b610930565b34801561054f575f5ffd5b5061021c61055e3660046115de565b60106020525f908152604090205460ff1681565b34801561057d575f5ffd5b5061033761058c3660046115de565b6109af565b34801561059c575f5ffd5b506103376105ab3660046115de565b610cd4565b3480156105bb575f5ffd5b506102606105ca3660046115de565b60116020525f90815260409020546001600160a01b031681565b3480156105ef575f5ffd5b50600754610260906001600160a01b031681565b606060038054610612906116a5565b80601f016020809104026020016040519081016040528092919081815260200182805461063e906116a5565b80156106895780601f1061066057610100808354040283529160200191610689565b820191905f5260205f20905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b5f336106a0818585610d11565b60019150505b92915050565b600a80546106b9906116a5565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906116a5565b80156107305780601f1061070757610100808354040283529160200191610730565b820191905f5260205f20905b81548152906001019060200180831161071357829003601f168201915b505050505081565b5f33610745858285610d23565b610750858585610d9e565b506001949350505050565b610763610dfb565b6001600160a01b0381166107925760405162461bcd60e51b8152600401610789906116dd565b60405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f1d13de2de5905fa91afd4d881760820120b00480953a10163602dda148ade6c4905f90a35050565b6107eb610dfb565b6107f45f610e28565b565b6107fe610dfb565b6001600160a01b0382165f818152600f6020526040808220805460ff191685151590811790915590519092917fb0e21c0d53f57d838a3a08178ccf2c29624b47bd4f5f1080f5b688603c48118891a35050565b606060048054610612906116a5565b5f336106a0818585610d9e565b610875610dfb565b6001600160a01b0382165f818152600e6020526040808220805460ff191685151590811790915590519092917f51584c17ee82825617903b80153bb91ca8634415e6080ca2e9a3cc2d902b476d91a35050565b600b80546106b9906116a5565b6108dd610dfb565b6001600160a01b0382165f818152600d6020526040808220805460ff191685151590811790915590519092917f057dc60ecf6df48e0f4af40ef0f88074d41e0ce54a1fef20925cd23c6de0386091a35050565b610938610dfb565b6001600160a01b03811661095e5760405162461bcd60e51b8152600401610789906116dd565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f02596f53075b4aad7ecd386511117ede9b545a2200645972e978497f4c6c9fb3905f90a35050565b6109b7610dfb565b5f8190505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1c919061171e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8b919061171e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1925050508015610af3575060408051601f3d908101601f19168201909252610af09181019061171e565b60015b15610afa57505b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a919061171e565b6001600160a01b031663e6a4390530846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc9919061171e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610c12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c36919061171e565b6001600160a01b038181165f8181526010602090815260408083208054600160ff1991821681179092556011845282852080546001600160a01b0319908116988d1698891790915587865260128552838620805490911687179055858552600f9093528184208054909316179091555193945090927fd54807570472d7b5bc32453ebc95b1efff2caa5857145789dee1fc1658a09d3a9190a3505050565b610cdc610dfb565b6001600160a01b038116610d0557604051631e4fbdf760e01b81525f6004820152602401610789565b610d0e81610e28565b50565b610d1e8383836001610e79565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610d985781811015610d8a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610789565b610d9884848484035f610e79565b50505050565b6001600160a01b038316610dc757604051634b637e8f60e11b81525f6004820152602401610789565b6001600160a01b038216610df05760405163ec442f0560e01b81525f6004820152602401610789565b610d1e838383610f4b565b6005546001600160a01b031633146107f45760405163118cdaa760e01b8152336004820152602401610789565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416610ea25760405163e602df0560e01b81525f6004820152602401610789565b6001600160a01b038316610ecb57604051634a1406b160e11b81525f6004820152602401610789565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610d9857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f3d91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526010602052604090205460ff1680610f8857506001600160a01b0382165f9081526010602052604090205460ff165b8015610fce57506001600160a01b0383165f908152600d602052604090205460ff1680610fcc57506001600160a01b0382165f908152600d602052604090205460ff165b155b8015610fe35750600c5462010000900460ff16155b1561114e57600c545f906103e8906110059060ff61010082048116911661174d565b6110129060ff1684611766565b61101c919061177d565b9050611028818361179c565b6001600160a01b0384165f9081526010602052604090205490925060ff16156110cd57611054836111ee565b6001600160a01b0384165f908152600e602052604090205460ff168061107c57506008548211155b6110c85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610789565b611141565b6001600160a01b0383165f908152600e602052604090205460ff16806110f557506008548211155b6111415760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d617842757953656c6c4c696d6974206578636565646564006044820152606401610789565b61114c8430836112a5565b505b6001600160a01b0382165f908152600f602052604090205460ff168061119757506009546001600160a01b0383165f9081526020819052604090205461119490836117af565b11155b6111e35760405162461bcd60e51b815260206004820152601e60248201527f45524332303a206d617857616c6c65744c696d697420657863656564656400006044820152606401610789565b610d1e8383836112a5565b305f9081526020819052604090205466038d7ea4c6800081106112a15761121581836113cb565b600654600c546001600160a01b03909116906108fc9060149061123b9060ff1647611766565b611245919061177d565b6040518115909202915f818181858888f1935050505015801561126a573d5f5f3e3d5ffd5b506007546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610d1e573d5f5f3e3d5ffd5b5050565b6001600160a01b0383166112cf578060025f8282546112c491906117af565b9091555061133f9050565b6001600160a01b0383165f90815260208190526040902054818110156113215760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610789565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661135b57600280548290039055611379565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113be91815260200190565b60405180910390a3505050565b600c80546201000062ff0000199091161790556001600160a01b038181165f908152601160205260408082205481516002808252606082019093529316929081602001602082028036833701905050905030815f8151811061142f5761142f6117c2565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561148b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114af919061171e565b816001815181106114c2576114c26117c2565b60200260200101906001600160a01b031690816001600160a01b0316815250506114ed308386610d11565b6001600160a01b03821663791ac947855f843061150c4261012c6117af565b6040518663ffffffff1660e01b815260040161152c9594939291906117d6565b5f604051808303815f87803b158015611543575f5ffd5b505af1158015611555573d5f5f3e3d5ffd5b5050600c805462ff000019169055505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d0e575f5ffd5b5f5f604083850312156115c5575f5ffd5b82356115d0816115a0565b946020939093013593505050565b5f602082840312156115ee575f5ffd5b81356115f9816115a0565b9392505050565b5f5f5f60608486031215611612575f5ffd5b833561161d816115a0565b9250602084013561162d816115a0565b929592945050506040919091013590565b5f5f6040838503121561164f575f5ffd5b823561165a816115a0565b91506020830135801515811461166e575f5ffd5b809150509250929050565b5f5f6040838503121561168a575f5ffd5b8235611695816115a0565b9150602083013561166e816115a0565b600181811c908216806116b957607f821691505b6020821081036116d757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526021908201527f45524332303a206e65772077616c6c6574206973207a65726f206164647265736040820152607360f81b606082015260800190565b5f6020828403121561172e575f5ffd5b81516115f9816115a0565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156106a6576106a6611739565b80820281158282048414176106a6576106a6611739565b5f8261179757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106a6576106a6611739565b808201808211156106a6576106a6611739565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156118265783516001600160a01b03168352602093840193909201916001016117ff565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122045cd0fc89b79683dddf3f3fc5876a3d07107dd6129962378deafee7e631334ac64736f6c634300081c0033

Deployed Bytecode Sourcemap

21136:8508:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8974:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11292:215;;;;;;;;;;-1:-1:-1;11292:215:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;11292:215:0;945:187:1;21947:47:0;;;;;;;;;;-1:-1:-1;21947:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21947:47:0;;;;;;-1:-1:-1;;;;;1553:32:1;;;1535:51;;1523:2;1508:18;21947:47:0;1389:203:1;21446:34:0;;;;;;;;;;;;;:::i;10076:99::-;;;;;;;;;;-1:-1:-1;10155:12:0;;10076:99;;;1743:25:1;;;1731:2;1716:18;10076:99:0;1597:177:1;21179:74:0;;;;;;;;;;-1:-1:-1;21179:74:0;;;;-1:-1:-1;;;;;21179:74:0;;;12085:283;;;;;;;;;;-1:-1:-1;12085:283:0;;;;;:::i;:::-;;:::i;9927:84::-;;;;;;;;;;-1:-1:-1;9927:84:0;;10001:2;2434:36:1;;2422:2;2407:18;9927:84:0;2292:184:1;21343:45:0;;;;;;;;;;;;;;;;27607:307;;;;;;;;;;-1:-1:-1;27607:307:0;;;;;:::i;:::-;;:::i;:::-;;21706:61;;;;;;;;;;-1:-1:-1;21706:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21395:44;;;;;;;;;;;;;;;;10238:118;;;;;;;;;;-1:-1:-1;10238:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;10330:18:0;10303:7;10330:18;;;;;;;;;;;;10238:118;20219:103;;;;;;;;;;;;;:::i;29390:214::-;;;;;;;;;;-1:-1:-1;29390:214:0;;;;;:::i;:::-;;:::i;19544:87::-;;;;;;;;;;-1:-1:-1;19617:6:0;;-1:-1:-1;;;;;19617:6:0;19544:87;;9184:95;;;;;;;;;;;;;:::i;21774:60::-;;;;;;;;;;-1:-1:-1;21774:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10561:182;;;;;;;;;;-1:-1:-1;10561:182:0;;;;;:::i;:::-;;:::i;28804:217::-;;;;;;;;;;-1:-1:-1;28804:217:0;;;;;:::i;:::-;;:::i;21487:36::-;;;;;;;;;;;;;:::i;28250:181::-;;;;;;;;;;-1:-1:-1;28250:181:0;;;;;:::i;:::-;;:::i;21650:49::-;;;;;;;;;;-1:-1:-1;21650:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10806:167;;;;;;;;;;-1:-1:-1;10806:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;10938:18:0;;;10911:7;10938:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10806:167;27036:299;;;;;;;;;;-1:-1:-1;27036:299:0;;;;;:::i;:::-;;:::i;21841:45::-;;;;;;;;;;-1:-1:-1;21841:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23504:638;;;;;;;;;;-1:-1:-1;23504:638:0;;;;;:::i;:::-;;:::i;20477:220::-;;;;;;;;;;-1:-1:-1;20477:220:0;;;;;:::i;:::-;;:::i;21893:47::-;;;;;;;;;;-1:-1:-1;21893:47:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;21893:47:0;;;21260:76;;;;;;;;;;-1:-1:-1;21260:76:0;;;;-1:-1:-1;;;;;21260:76:0;;;8974:91;9019:13;9052:5;9045:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8974:91;:::o;11292:215::-;11390:4;1817:10;11446:31;1817:10;11462:7;11471:5;11446:8;:31::i;:::-;11495:4;11488:11;;;11292:215;;;;;:::o;21446:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12085:283::-;12206:4;1817:10;12264:37;12280:4;1817:10;12295:5;12264:15;:37::i;:::-;12312:26;12322:4;12328:2;12332:5;12312:9;:26::i;:::-;-1:-1:-1;12356:4:0;;12085:283;-1:-1:-1;;;;12085:283:0:o;27607:307::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;27696:23:0;::::1;27688:69;;;;-1:-1:-1::0;;;27688:69:0::1;;;;;;;:::i;:::-;;;;;;;;;27788:16;::::0;;-1:-1:-1;;;;;27815:28:0;;::::1;-1:-1:-1::0;;;;;;27815:28:0;::::1;::::0;::::1;::::0;;;27861:45:::1;::::0;27788:16;::::1;::::0;27815:28;27788:16;;27861:45:::1;::::0;27768:17:::1;::::0;27861:45:::1;27677:237;27607:307:::0;:::o;20219:103::-;19430:13;:11;:13::i;:::-;20284:30:::1;20311:1;20284:18;:30::i;:::-;20219:103::o:0;29390:214::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;29485:37:0;::::1;;::::0;;;:28:::1;:37;::::0;;;;;:46;;-1:-1:-1;;29485:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29549:47;;29485:46;;:37;29549:47:::1;::::0;::::1;29390:214:::0;;:::o;9184:95::-;9231:13;9264:7;9257:14;;;;;:::i;10561:182::-;10630:4;1817:10;10686:27;1817:10;10703:2;10707:5;10686:9;:27::i;28804:217::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;28900:38:0;::::1;;::::0;;;:29:::1;:38;::::0;;;;;:47;;-1:-1:-1;;28900:47:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28965:48;;28900:47;;:38;28965:48:::1;::::0;::::1;28804:217:::0;;:::o;21487:36::-;;;;;;;:::i;28250:181::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;28334:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;:35;;-1:-1:-1;;28334:35:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28387:36;;28334:35;;:26;28387:36:::1;::::0;::::1;28250:181:::0;;:::o;27036:299::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;27123:23:0;::::1;27115:69;;;;-1:-1:-1::0;;;27115:69:0::1;;;;;;;:::i;:::-;27215:14;::::0;;-1:-1:-1;;;;;27240:26:0;;::::1;-1:-1:-1::0;;;;;;27240:26:0;::::1;::::0;::::1;::::0;;;27284:43:::1;::::0;27215:14;::::1;::::0;27240:26;27215:14;;27284:43:::1;::::0;27195:17:::1;::::0;27284:43:::1;27104:231;27036:299:::0;:::o;23504:638::-;19430:13;:11;:13::i;:::-;23582:22:::1;23620:13;23582:52;;23645:15;23689:9;-1:-1:-1::0;;;;;23689:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23675:45:0::1;;23729:4;23736:9;-1:-1:-1::0;;;;;23736:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23675:78;::::0;-1:-1:-1;;;;;;23675:78:0::1;::::0;;;;;;-1:-1:-1;;;;;4530:32:1;;;23675:78:0::1;::::0;::::1;4512:51:1::0;4599:32;;4579:18;;;4572:60;4485:18;;23675:78:0::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;23675:78:0::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;23675:78:0::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;23671:121:::0;::::1;;;;23826:9;-1:-1:-1::0;;;;;23826:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23812:42:0::1;;23863:4;23870:9;-1:-1:-1::0;;;;;23870:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23812:75;::::0;-1:-1:-1;;;;;;23812:75:0::1;::::0;;;;;;-1:-1:-1;;;;;4530:32:1;;;23812:75:0::1;::::0;::::1;4512:51:1::0;4599:32;;4579:18;;;4572:60;4485:18;;23812:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23898:22:0;;::::1;;::::0;;;:13:::1;:22;::::0;;;;;;;:29;;23923:4:::1;-1:-1:-1::0;;23898:29:0;;::::1;::::0;::::1;::::0;;;23938:12:::1;:21:::0;;;;;:37;;-1:-1:-1;;;;;;23938:37:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;23986:27;;;:12:::1;:27:::0;;;;;:37;;;;::::1;::::0;::::1;::::0;;24034;;;:28:::1;:37:::0;;;;;;:44;;;;::::1;;::::0;;;24096:38;23898:22;;-1:-1:-1;23898:22:0;;24096:38:::1;::::0;23898:22;24096:38:::1;23571:571;;23504:638:::0;:::o;20477:220::-;19430:13;:11;:13::i;:::-;-1:-1:-1;;;;;20562:22:0;::::1;20558:93;;20608:31;::::0;-1:-1:-1;;;20608:31:0;;20636:1:::1;20608:31;::::0;::::1;1535:51:1::0;1508:18;;20608:31:0::1;1389:203:1::0;20558:93:0::1;20661:28;20680:8;20661:18;:28::i;:::-;20477:220:::0;:::o;15639:130::-;15724:37;15733:5;15740:7;15749:5;15756:4;15724:8;:37::i;:::-;15639:130;;;:::o;17398:603::-;-1:-1:-1;;;;;10938:18:0;;;17532:24;10938:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17599:37:0;;17595:399;;17676:5;17657:16;:24;17653:214;;;17709:142;;-1:-1:-1;;;17709:142:0;;-1:-1:-1;;;;;4863:32:1;;17709:142:0;;;4845:51:1;4912:18;;;4905:34;;;4955:18;;;4948:34;;;4818:18;;17709:142:0;4643:345:1;17653:214:0;17910:57;17919:5;17926:7;17954:5;17935:16;:24;17961:5;17910:8;:57::i;:::-;17521:480;17398:603;;;:::o;12753:308::-;-1:-1:-1;;;;;12837:18:0;;12833:88;;12879:30;;-1:-1:-1;;;12879:30:0;;12906:1;12879:30;;;1535:51:1;1508:18;;12879:30:0;1389:203:1;12833:88:0;-1:-1:-1;;;;;12935:16:0;;12931:88;;12975:32;;-1:-1:-1;;;12975:32:0;;13004:1;12975:32;;;1535:51:1;1508:18;;12975:32:0;1389:203:1;12931:88:0;13029:24;13037:4;13043:2;13047:5;13029:7;:24::i;19709:166::-;19617:6;;-1:-1:-1;;;;;19617:6:0;1817:10;19769:23;19765:103;;19816:40;;-1:-1:-1;;;19816:40:0;;1817:10;19816:40;;;1535:51:1;1508:18;;19816:40:0;1389:203:1;20857:191:0;20950:6;;;-1:-1:-1;;;;;20967:17:0;;;-1:-1:-1;;;;;;20967:17:0;;;;;;;21000:40;;20950:6;;;20967:17;20950:6;;21000:40;;20931:16;;21000:40;20920:128;20857:191;:::o;16620:486::-;-1:-1:-1;;;;;16776:19:0;;16772:91;;16819:32;;-1:-1:-1;;;16819:32:0;;16848:1;16819:32;;;1535:51:1;1508:18;;16819:32:0;1389:203:1;16772:91:0;-1:-1:-1;;;;;16877:21:0;;16873:92;;16922:31;;-1:-1:-1;;;16922:31:0;;16950:1;16922:31;;;1535:51:1;1508:18;;16922:31:0;1389:203:1;16873:92:0;-1:-1:-1;;;;;16975:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;17021:78;;;;17072:7;-1:-1:-1;;;;;17056:31:0;17065:5;-1:-1:-1;;;;;17056:31:0;;17081:5;17056:31;;;;1743:25:1;;1731:2;1716:18;;1597:177;17056:31:0;;;;;;;;16620:486;;;;:::o;24427:986::-;-1:-1:-1;;;;;24519:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;24542:17:0;;;;;;:13;:17;;;;;;;;24519:40;24518:97;;;;-1:-1:-1;;;;;;24566:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;24593:21:0;;;;;;:17;:21;;;;;;;;24566:48;24564:51;24518:97;:119;;;;-1:-1:-1;24620:17:0;;;;;;;24619:18;24518:119;24514:718;;;24698:14;;24654:16;;24717:4;;24683:29;;24698:14;;;;;;;24683:12;:29;:::i;:::-;24674:39;;;;:5;:39;:::i;:::-;24673:48;;;;:::i;:::-;24654:67;-1:-1:-1;24736:17:0;24654:67;24736:17;;:::i;:::-;-1:-1:-1;;;;;24774:17:0;;;;;;:13;:17;;;;;;24736;;-1:-1:-1;24774:17:0;;24770:378;;;24820:16;24833:2;24820:12;:16::i;:::-;-1:-1:-1;;;;;24864:35:0;;;;;;:29;:35;;;;;;;;;:63;;;24912:15;;24903:5;:24;;24864:63;24855:109;;;;-1:-1:-1;;;24855:109:0;;6008:2:1;24855:109:0;;;5990:21:1;6047:2;6027:18;;;6020:30;6086:33;6066:18;;;6059:61;6137:18;;24855:109:0;5806:355:1;24855:109:0;24770:378;;;-1:-1:-1;;;;;25034:33:0;;;;;;:29;:33;;;;;;;;;:61;;;25080:15;;25071:5;:24;;25034:61;25025:107;;;;-1:-1:-1;;;25025:107:0;;6008:2:1;25025:107:0;;;5990:21:1;6047:2;6027:18;;;6020:30;6086:33;6066:18;;;6059:61;6137:18;;25025:107:0;5806:355:1;25025:107:0;25176:44;25190:4;25204;25211:8;25176:13;:44::i;:::-;24639:593;24514:718;-1:-1:-1;;;;;25251:32:0;;;;;;:28;:32;;;;;;;;;:77;;-1:-1:-1;25314:14:0;;-1:-1:-1;;;;;10330:18:0;;10303:7;10330:18;;;;;;;;;;;25288:21;;:5;:21;:::i;:::-;25287:41;;25251:77;25242:122;;;;-1:-1:-1;;;25242:122:0;;6498:2:1;25242:122:0;;;6480:21:1;6537:2;6517:18;;;6510:30;6576:32;6556:18;;;6549:60;6626:18;;25242:122:0;6296:354:1;25242:122:0;25375:30;25389:4;25395:2;25399:5;25375:13;:30::i;25738:391::-;25835:4;25791:23;10330:18;;;;;;;;;;;25875:16;25856:35;;25852:270;;25908:38;25926:15;25943:2;25908:17;:38::i;:::-;25969:14;;26019:12;;-1:-1:-1;;;;;25969:14:0;;;;25961:77;;26035:2;;25995:36;;26019:12;;25995:21;:36;:::i;:::-;25994:43;;;;:::i;:::-;25961:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26061:16:0;;26053:57;;-1:-1:-1;;;;;26061:16:0;;;;26088:21;26053:57;;;;;26061:16;26053:57;26061:16;26053:57;26088:21;26061:16;26053:57;;;;;;;;;;;;;;;;;;;25852:270;25780:349;25738:391;:::o;13385:1135::-;-1:-1:-1;;;;;13475:18:0;;13471:552;;13629:5;13613:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;13471:552:0;;-1:-1:-1;13471:552:0;;-1:-1:-1;;;;;13689:15:0;;13667:19;13689:15;;;;;;;;;;;13723:19;;;13719:117;;;13770:50;;-1:-1:-1;;;13770:50:0;;-1:-1:-1;;;;;4863:32:1;;13770:50:0;;;4845:51:1;4912:18;;;4905:34;;;4955:18;;;4948:34;;;4818:18;;13770:50:0;4643:345:1;13719:117:0;-1:-1:-1;;;;;13959:15:0;;:9;:15;;;;;;;;;;13977:19;;;;13959:37;;13471:552;-1:-1:-1;;;;;14039:16:0;;14035:435;;14205:12;:21;;;;;;;14035:435;;;-1:-1:-1;;;;;14421:13:0;;:9;:13;;;;;;;;;;:22;;;;;;14035:435;14502:2;-1:-1:-1;;;;;14487:25:0;14496:4;-1:-1:-1;;;;;14487:25:0;;14506:5;14487:25;;;;1743::1;;1731:2;1716:18;;1597:177;14487:25:0;;;;;;;;13385:1135;;;:::o;26208:560::-;22561:17;:24;;;-1:-1:-1;;22561:24:0;;;;;;-1:-1:-1;;;;;26339:18:0;;::::1;-1:-1:-1::0;26339:18:0;;;:12:::1;:18;::::0;;;;;;26393:16;;22561:17;26393:16;;;;;::::1;::::0;;;26339:18;::::1;::::0;26393:16;::::1;;;;;;;;;;;::::0;-1:-1:-1;26393:16:0::1;26369:40;;26438:4;26420;26425:1;26420:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;26420:23:0::1;;;-1:-1:-1::0;;;;;26420:23:0::1;;;::::0;::::1;26464:9;-1:-1:-1::0;;;;;26464:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26454:4;26459:1;26454:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1::0;;;;;26454:26:0::1;;;-1:-1:-1::0;;;;;26454:26:0::1;;;::::0;::::1;26493:56;26510:4;26525:9;26537:11;26493:8;:56::i;:::-;-1:-1:-1::0;;;;;26562:60:0;::::1;;26637:11:::0;26663:1:::1;26679:4:::0;26706::::1;26727:21;:15;26745:3;26727:21;:::i;:::-;26562:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;22608:17:0;:25;;-1:-1:-1;;22608:25:0;;;-1:-1:-1;;;;;;26208:560:0:o;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:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:247::-;1196:6;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1304:9;1291:23;1323:31;1348:5;1323:31;:::i;:::-;1373:5;1137:247;-1:-1:-1;;;1137:247:1:o;1779:508::-;1856:6;1864;1872;1925:2;1913:9;1904:7;1900:23;1896:32;1893:52;;;1941:1;1938;1931:12;1893:52;1980:9;1967:23;1999:31;2024:5;1999:31;:::i;:::-;2049:5;-1:-1:-1;2106:2:1;2091:18;;2078:32;2119:33;2078:32;2119:33;:::i;:::-;1779:508;;2171:7;;-1:-1:-1;;;2251:2:1;2236:18;;;;2223:32;;1779:508::o;2481:416::-;2546:6;2554;2607:2;2595:9;2586:7;2582:23;2578:32;2575:52;;;2623:1;2620;2613:12;2575:52;2662:9;2649:23;2681:31;2706:5;2681:31;:::i;:::-;2731:5;-1:-1:-1;2788:2:1;2773:18;;2760:32;2830:15;;2823:23;2811:36;;2801:64;;2861:1;2858;2851:12;2801:64;2884:7;2874:17;;;2481:416;;;;;:::o;2902:388::-;2970:6;2978;3031:2;3019:9;3010:7;3006:23;3002:32;2999:52;;;3047:1;3044;3037:12;2999:52;3086:9;3073:23;3105:31;3130:5;3105:31;:::i;:::-;3155:5;-1:-1:-1;3212:2:1;3197:18;;3184:32;3225:33;3184:32;3225:33;:::i;3295:380::-;3374:1;3370:12;;;;3417;;;3438:61;;3492:4;3484:6;3480:17;3470:27;;3438:61;3545:2;3537:6;3534:14;3514:18;3511:38;3508:161;;3591:10;3586:3;3582:20;3579:1;3572:31;3626:4;3623:1;3616:15;3654:4;3651:1;3644:15;3508:161;;3295:380;;;:::o;3680:397::-;3882:2;3864:21;;;3921:2;3901:18;;;3894:30;3960:34;3955:2;3940:18;;3933:62;-1:-1:-1;;;4026:2:1;4011:18;;4004:31;4067:3;4052:19;;3680:397::o;4082:251::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;4253:9;4247:16;4272:31;4297:5;4272:31;:::i;4993:127::-;5054:10;5049:3;5045:20;5042:1;5035:31;5085:4;5082:1;5075:15;5109:4;5106:1;5099:15;5125:148;5213:4;5192:12;;;5206;;;5188:31;;5231:13;;5228:39;;;5247:18;;:::i;5278:168::-;5351:9;;;5382;;5399:15;;;5393:22;;5379:37;5369:71;;5420:18;;:::i;5451:217::-;5491:1;5517;5507:132;;5561:10;5556:3;5552:20;5549:1;5542:31;5596:4;5593:1;5586:15;5624:4;5621:1;5614:15;5507:132;-1:-1:-1;5653:9:1;;5451:217::o;5673:128::-;5740:9;;;5761:11;;;5758:37;;;5775:18;;:::i;6166:125::-;6231:9;;;6252:10;;;6249:36;;;6265:18;;:::i;6787:127::-;6848:10;6843:3;6839:20;6836:1;6829:31;6879:4;6876:1;6869:15;6903:4;6900:1;6893:15;6919:959;7181:4;7229:3;7218:9;7214:19;7260:6;7249:9;7242:25;7303:6;7298:2;7287:9;7283:18;7276:34;7346:3;7341:2;7330:9;7326:18;7319:31;7370:6;7405;7399:13;7436:6;7428;7421:22;7474:3;7463:9;7459:19;7452:26;;7513:2;7505:6;7501:15;7487:29;;7534:1;7544:195;7558:6;7555:1;7552:13;7544:195;;;7623:13;;-1:-1:-1;;;;;7619:39:1;7607:52;;7688:2;7714:15;;;;7679:12;;;;7655:1;7573:9;7544:195;;;-1:-1:-1;;;;;;;7795:32:1;;;;7790:2;7775:18;;7768:60;-1:-1:-1;;7859:3:1;7844:19;7837:35;7756:3;6919:959;-1:-1:-1;;;6919:959:1:o

Swarm Source

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