APE Price: $1.13 (-6.42%)

Token

MB Coin (Moon)

Overview

Max Total Supply

1,000,000,000 Moon

Holders

22,498

Market

Price

$0.00 @ 0.000000 APE

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 Moon

Value
$0.00
0x5da37db23db912a23ebbee66638abe85386eb153
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MBCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-12-21
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @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.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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 ERC-20
 * applications.
 */
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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

// File: contracts/MBCoin.sol



// For The Community By The Community
pragma solidity ^0.8.20;




contract MBCoin is ERC20, ERC20Burnable, Ownable {
    uint256 public constant MAX_SUPPLY = 1_000_000_000 * 10 ** 18;
    bool public protectionEnabled;
    uint256 public immutable deploymentTime;
    uint256 public constant PROTECTION_WINDOW = 4 hours;
    address public constant AIRDROPPER = 0xfB3023d0a507D975fDead35D615F0b9Df7f988B4;

    constructor() ERC20("MB Coin", "Moon") Ownable(msg.sender) {
        _mint(AIRDROPPER, MAX_SUPPLY);
        protectionEnabled = true;
        deploymentTime = block.timestamp;
    }

    function toggleProtection() external onlyOwner {
        if (block.timestamp > deploymentTime + PROTECTION_WINDOW && !protectionEnabled) {
            revert("Protection cannot be re-enabled after 4 hours");
        }
        protectionEnabled = !protectionEnabled;
    }

    function isProtectionEnabled() external view returns (bool) {
        return protectionEnabled;
    }

    function _update(address from, address to, uint256 value) internal virtual override {
        if (
            protectionEnabled &&
            from != owner() &&
            from != address(0) &&
            from != AIRDROPPER
        ) {
            revert("Transfer amount exceeds the maximum allowed during anti-bot period");
        }
        super._update(from, to, value);
    }
}

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":"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":"AIRDROPPER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROTECTION_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deploymentTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isProtectionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protectionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleProtection","outputs":[],"stateMutability":"nonpayable","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"}]

60a060405234801562000010575f80fd5b50336040518060400160405280600781526020017f4d4220436f696e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d6f6f6e0000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620008ba565b508060049081620000a19190620008ba565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e9190620009e1565b60405180910390fd5b62000128816200018460201b60201c565b506200015b73fb3023d0a507d975fdead35d615f0b9df7f988b46b033b2e3c9fd0803ce80000006200024760201b60201c565b6001600560146101000a81548160ff021916908315150217905550426080818152505062000b94565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ba575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002b19190620009e1565b60405180910390fd5b620002cd5f8383620002d160201b60201c565b5050565b600560149054906101000a900460ff168015620003295750620002f96200040a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200036257505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620003af575073fb3023d0a507d975fdead35d615f0b9df7f988b473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15620003f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e99062000aa6565b60405180910390fd5b620004058383836200043260201b60201c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000486578060025f82825462000479919062000af3565b9250508190555062000557565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000512578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005099392919062000b3e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005a0578060025f8282540392505081905550620005ea565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000649919062000b79565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006d257607f821691505b602082108103620006e857620006e76200068d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200074c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200070f565b6200075886836200070f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007a26200079c620007968462000770565b62000779565b62000770565b9050919050565b5f819050919050565b620007bd8362000782565b620007d5620007cc82620007a9565b8484546200071b565b825550505050565b5f90565b620007eb620007dd565b620007f8818484620007b2565b505050565b5b818110156200081f57620008135f82620007e1565b600181019050620007fe565b5050565b601f8211156200086e576200083881620006ee565b620008438462000700565b8101602085101562000853578190505b6200086b620008628562000700565b830182620007fd565b50505b505050565b5f82821c905092915050565b5f620008905f198460080262000873565b1980831691505092915050565b5f620008aa83836200087f565b9150826002028217905092915050565b620008c58262000656565b67ffffffffffffffff811115620008e157620008e062000660565b5b620008ed8254620006ba565b620008fa82828562000823565b5f60209050601f83116001811462000930575f84156200091b578287015190505b6200092785826200089d565b86555062000996565b601f1984166200094086620006ee565b5f5b82811015620009695784890151825560018201915060208501945060208101905062000942565b8683101562000989578489015162000985601f8916826200087f565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009c9826200099e565b9050919050565b620009db81620009bd565b82525050565b5f602082019050620009f65f830184620009d0565b92915050565b5f82825260208201905092915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178695f8201527f6d756d20616c6c6f77656420647572696e6720616e74692d626f74207065726960208201527f6f64000000000000000000000000000000000000000000000000000000000000604082015250565b5f62000a8e604283620009fc565b915062000a9b8262000a0c565b606082019050919050565b5f6020820190508181035f83015262000abf8162000a80565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000aff8262000770565b915062000b0c8362000770565b925082820190508082111562000b275762000b2662000ac6565b5b92915050565b62000b388162000770565b82525050565b5f60608201905062000b535f830186620009d0565b62000b62602083018562000b2d565b62000b71604083018462000b2d565b949350505050565b5f60208201905062000b8e5f83018462000b2d565b92915050565b60805161165d62000bb45f395f818161051b01526107ca015261165d5ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80636727877a116100b65780638da5cb5b1161007a5780638da5cb5b1461030557806395d89b4114610323578063a9059cbb14610341578063dd62ed3e14610371578063ecda10f5146103a1578063f2fde38b146103bf57610135565b80636727877a1461027357806370a0823114610291578063715018a6146102c15780637516baec146102cb57806379cc6790146102e957610135565b8063313ce567116100fd578063313ce567146101f357806332cb6b0c14610211578063368a5e341461022f57806342966c681461024d5780634ae021161461026957610135565b806306fdde0314610139578063095ea7b3146101575780630f1814e21461018757806318160ddd146101a557806323b872dd146101c3575b5f80fd5b6101416103db565b60405161014e9190611169565b60405180910390f35b610171600480360381019061016c919061121a565b61046b565b60405161017e9190611272565b60405180910390f35b61018f61048d565b60405161019c919061129a565b60405180910390f35b6101ad610493565b6040516101ba919061129a565b60405180910390f35b6101dd60048036038101906101d891906112b3565b61049c565b6040516101ea9190611272565b60405180910390f35b6101fb6104ca565b604051610208919061131e565b60405180910390f35b6102196104d2565b604051610226919061129a565b60405180910390f35b6102376104e2565b6040516102449190611346565b60405180910390f35b6102676004803603810190610262919061135f565b6104fa565b005b61027161050e565b005b61027b6105cb565b6040516102889190611272565b60405180910390f35b6102ab60048036038101906102a6919061138a565b6105e1565b6040516102b8919061129a565b60405180910390f35b6102c9610626565b005b6102d3610639565b6040516102e09190611272565b60405180910390f35b61030360048036038101906102fe919061121a565b61064c565b005b61030d61066c565b60405161031a9190611346565b60405180910390f35b61032b610694565b6040516103389190611169565b60405180910390f35b61035b6004803603810190610356919061121a565b610724565b6040516103689190611272565b60405180910390f35b61038b600480360381019061038691906113b5565b610746565b604051610398919061129a565b60405180910390f35b6103a96107c8565b6040516103b6919061129a565b60405180910390f35b6103d960048036038101906103d4919061138a565b6107ec565b005b6060600380546103ea90611420565b80601f016020809104026020016040519081016040528092919081815260200182805461041690611420565b80156104615780601f1061043857610100808354040283529160200191610461565b820191905f5260205f20905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b5f80610475610870565b9050610482818585610877565b600191505092915050565b61384081565b5f600254905090565b5f806104a6610870565b90506104b3858285610889565b6104be85858561091b565b60019150509392505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b73fb3023d0a507d975fdead35d615f0b9df7f988b481565b61050b610505610870565b82610a0b565b50565b610516610a8a565b6138407f0000000000000000000000000000000000000000000000000000000000000000610544919061147d565b4211801561055f5750600560149054906101000a900460ff16155b1561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611520565b60405180910390fd5b600560149054906101000a900460ff1615600560146101000a81548160ff021916908315150217905550565b5f600560149054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61062e610a8a565b6106375f610b11565b565b600560149054906101000a900460ff1681565b61065e82610658610870565b83610889565b6106688282610a0b565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a390611420565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90611420565b801561071a5780601f106106f15761010080835404028352916020019161071a565b820191905f5260205f20905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b5f8061072e610870565b905061073b81858561091b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6107f4610a8a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610864575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161085b9190611346565b60405180910390fd5b61086d81610b11565b50565b5f33905090565b6108848383836001610bd4565b505050565b5f6108948484610746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109155781811015610906578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108fd9392919061153e565b60405180910390fd5b61091484848484035f610bd4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109829190611346565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109f29190611346565b60405180910390fd5b610a06838383610da3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a729190611346565b60405180910390fd5b610a86825f83610da3565b5050565b610a92610870565b73ffffffffffffffffffffffffffffffffffffffff16610ab061066c565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f57610ad3610870565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b069190611346565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c44575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c3b9190611346565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb4575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cab9190611346565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d9d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d94919061129a565b60405180910390a35b50505050565b600560149054906101000a900460ff168015610df25750610dc261066c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e2a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e76575073fb3023d0a507d975fdead35d615f0b9df7f988b473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611609565b60405180910390fd5b610ec1838383610ec6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f16578060025f828254610f0a919061147d565b92505081905550610fe4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f9f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f969392919061153e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102b578060025f8282540392505081905550611075565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110d2919061129a565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156111165780820151818401526020810190506110fb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61113b826110df565b61114581856110e9565b93506111558185602086016110f9565b61115e81611121565b840191505092915050565b5f6020820190508181035f8301526111818184611131565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111b68261118d565b9050919050565b6111c6816111ac565b81146111d0575f80fd5b50565b5f813590506111e1816111bd565b92915050565b5f819050919050565b6111f9816111e7565b8114611203575f80fd5b50565b5f81359050611214816111f0565b92915050565b5f80604083850312156112305761122f611189565b5b5f61123d858286016111d3565b925050602061124e85828601611206565b9150509250929050565b5f8115159050919050565b61126c81611258565b82525050565b5f6020820190506112855f830184611263565b92915050565b611294816111e7565b82525050565b5f6020820190506112ad5f83018461128b565b92915050565b5f805f606084860312156112ca576112c9611189565b5b5f6112d7868287016111d3565b93505060206112e8868287016111d3565b92505060406112f986828701611206565b9150509250925092565b5f60ff82169050919050565b61131881611303565b82525050565b5f6020820190506113315f83018461130f565b92915050565b611340816111ac565b82525050565b5f6020820190506113595f830184611337565b92915050565b5f6020828403121561137457611373611189565b5b5f61138184828501611206565b91505092915050565b5f6020828403121561139f5761139e611189565b5b5f6113ac848285016111d3565b91505092915050565b5f80604083850312156113cb576113ca611189565b5b5f6113d8858286016111d3565b92505060206113e9858286016111d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061143757607f821691505b60208210810361144a576114496113f3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611487826111e7565b9150611492836111e7565b92508282019050808211156114aa576114a9611450565b5b92915050565b7f50726f74656374696f6e2063616e6e6f742062652072652d656e61626c6564205f8201527f6166746572203420686f75727300000000000000000000000000000000000000602082015250565b5f61150a602d836110e9565b9150611515826114b0565b604082019050919050565b5f6020820190508181035f830152611537816114fe565b9050919050565b5f6060820190506115515f830186611337565b61155e602083018561128b565b61156b604083018461128b565b949350505050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178695f8201527f6d756d20616c6c6f77656420647572696e6720616e74692d626f74207065726960208201527f6f64000000000000000000000000000000000000000000000000000000000000604082015250565b5f6115f36042836110e9565b91506115fe82611573565b606082019050919050565b5f6020820190508181035f830152611620816115e7565b905091905056fea264697066735822122006b3434461021400935f1e4d686d3e8459baca8879b884cdf8f281c62c7f4f7a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80636727877a116100b65780638da5cb5b1161007a5780638da5cb5b1461030557806395d89b4114610323578063a9059cbb14610341578063dd62ed3e14610371578063ecda10f5146103a1578063f2fde38b146103bf57610135565b80636727877a1461027357806370a0823114610291578063715018a6146102c15780637516baec146102cb57806379cc6790146102e957610135565b8063313ce567116100fd578063313ce567146101f357806332cb6b0c14610211578063368a5e341461022f57806342966c681461024d5780634ae021161461026957610135565b806306fdde0314610139578063095ea7b3146101575780630f1814e21461018757806318160ddd146101a557806323b872dd146101c3575b5f80fd5b6101416103db565b60405161014e9190611169565b60405180910390f35b610171600480360381019061016c919061121a565b61046b565b60405161017e9190611272565b60405180910390f35b61018f61048d565b60405161019c919061129a565b60405180910390f35b6101ad610493565b6040516101ba919061129a565b60405180910390f35b6101dd60048036038101906101d891906112b3565b61049c565b6040516101ea9190611272565b60405180910390f35b6101fb6104ca565b604051610208919061131e565b60405180910390f35b6102196104d2565b604051610226919061129a565b60405180910390f35b6102376104e2565b6040516102449190611346565b60405180910390f35b6102676004803603810190610262919061135f565b6104fa565b005b61027161050e565b005b61027b6105cb565b6040516102889190611272565b60405180910390f35b6102ab60048036038101906102a6919061138a565b6105e1565b6040516102b8919061129a565b60405180910390f35b6102c9610626565b005b6102d3610639565b6040516102e09190611272565b60405180910390f35b61030360048036038101906102fe919061121a565b61064c565b005b61030d61066c565b60405161031a9190611346565b60405180910390f35b61032b610694565b6040516103389190611169565b60405180910390f35b61035b6004803603810190610356919061121a565b610724565b6040516103689190611272565b60405180910390f35b61038b600480360381019061038691906113b5565b610746565b604051610398919061129a565b60405180910390f35b6103a96107c8565b6040516103b6919061129a565b60405180910390f35b6103d960048036038101906103d4919061138a565b6107ec565b005b6060600380546103ea90611420565b80601f016020809104026020016040519081016040528092919081815260200182805461041690611420565b80156104615780601f1061043857610100808354040283529160200191610461565b820191905f5260205f20905b81548152906001019060200180831161044457829003601f168201915b5050505050905090565b5f80610475610870565b9050610482818585610877565b600191505092915050565b61384081565b5f600254905090565b5f806104a6610870565b90506104b3858285610889565b6104be85858561091b565b60019150509392505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b73fb3023d0a507d975fdead35d615f0b9df7f988b481565b61050b610505610870565b82610a0b565b50565b610516610a8a565b6138407f000000000000000000000000000000000000000000000000000000006765b0c2610544919061147d565b4211801561055f5750600560149054906101000a900460ff16155b1561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611520565b60405180910390fd5b600560149054906101000a900460ff1615600560146101000a81548160ff021916908315150217905550565b5f600560149054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61062e610a8a565b6106375f610b11565b565b600560149054906101000a900460ff1681565b61065e82610658610870565b83610889565b6106688282610a0b565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106a390611420565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90611420565b801561071a5780601f106106f15761010080835404028352916020019161071a565b820191905f5260205f20905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b5f8061072e610870565b905061073b81858561091b565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000000000000000000000000000000000006765b0c281565b6107f4610a8a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610864575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161085b9190611346565b60405180910390fd5b61086d81610b11565b50565b5f33905090565b6108848383836001610bd4565b505050565b5f6108948484610746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109155781811015610906578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108fd9392919061153e565b60405180910390fd5b61091484848484035f610bd4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109829190611346565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109fb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109f29190611346565b60405180910390fd5b610a06838383610da3565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a729190611346565b60405180910390fd5b610a86825f83610da3565b5050565b610a92610870565b73ffffffffffffffffffffffffffffffffffffffff16610ab061066c565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f57610ad3610870565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b069190611346565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c44575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c3b9190611346565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cb4575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cab9190611346565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d9d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d94919061129a565b60405180910390a35b50505050565b600560149054906101000a900460ff168015610df25750610dc261066c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e2a57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610e76575073fb3023d0a507d975fdead35d615f0b9df7f988b473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90611609565b60405180910390fd5b610ec1838383610ec6565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f16578060025f828254610f0a919061147d565b92505081905550610fe4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f9f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f969392919061153e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361102b578060025f8282540392505081905550611075565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110d2919061129a565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156111165780820151818401526020810190506110fb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61113b826110df565b61114581856110e9565b93506111558185602086016110f9565b61115e81611121565b840191505092915050565b5f6020820190508181035f8301526111818184611131565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111b68261118d565b9050919050565b6111c6816111ac565b81146111d0575f80fd5b50565b5f813590506111e1816111bd565b92915050565b5f819050919050565b6111f9816111e7565b8114611203575f80fd5b50565b5f81359050611214816111f0565b92915050565b5f80604083850312156112305761122f611189565b5b5f61123d858286016111d3565b925050602061124e85828601611206565b9150509250929050565b5f8115159050919050565b61126c81611258565b82525050565b5f6020820190506112855f830184611263565b92915050565b611294816111e7565b82525050565b5f6020820190506112ad5f83018461128b565b92915050565b5f805f606084860312156112ca576112c9611189565b5b5f6112d7868287016111d3565b93505060206112e8868287016111d3565b92505060406112f986828701611206565b9150509250925092565b5f60ff82169050919050565b61131881611303565b82525050565b5f6020820190506113315f83018461130f565b92915050565b611340816111ac565b82525050565b5f6020820190506113595f830184611337565b92915050565b5f6020828403121561137457611373611189565b5b5f61138184828501611206565b91505092915050565b5f6020828403121561139f5761139e611189565b5b5f6113ac848285016111d3565b91505092915050565b5f80604083850312156113cb576113ca611189565b5b5f6113d8858286016111d3565b92505060206113e9858286016111d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061143757607f821691505b60208210810361144a576114496113f3565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611487826111e7565b9150611492836111e7565b92508282019050808211156114aa576114a9611450565b5b92915050565b7f50726f74656374696f6e2063616e6e6f742062652072652d656e61626c6564205f8201527f6166746572203420686f75727300000000000000000000000000000000000000602082015250565b5f61150a602d836110e9565b9150611515826114b0565b604082019050919050565b5f6020820190508181035f830152611537816114fe565b9050919050565b5f6060820190506115515f830186611337565b61155e602083018561128b565b61156b604083018461128b565b949350505050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178695f8201527f6d756d20616c6c6f77656420647572696e6720616e74692d626f74207065726960208201527f6f64000000000000000000000000000000000000000000000000000000000000604082015250565b5f6115f36042836110e9565b91506115fe82611573565b606082019050919050565b5f6020820190508181035f830152611620816115e7565b905091905056fea264697066735822122006b3434461021400935f1e4d686d3e8459baca8879b884cdf8f281c62c7f4f7a64736f6c63430008140033

Deployed Bytecode Sourcemap

26855:1338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15298:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27061:51;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14107:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16098:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13958:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26911:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27119:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22978:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27400:276;;;:::i;:::-;;27684:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14269:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25909:103;;;:::i;:::-;;26979:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23396:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25234:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13215:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14592:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14837:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27015:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26167:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13005:91;13050:13;13083:5;13076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;:::o;15298:190::-;15371:4;15388:13;15404:12;:10;:12::i;:::-;15388:28;;15427:31;15436:5;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15298:190;;;;:::o;27061:51::-;27105:7;27061:51;:::o;14107:99::-;14159:7;14186:12;;14179:19;;14107:99;:::o;16098:249::-;16185:4;16202:15;16220:12;:10;:12::i;:::-;16202:30;;16243:37;16259:4;16265:7;16274:5;16243:15;:37::i;:::-;16291:26;16301:4;16307:2;16311:5;16291:9;:26::i;:::-;16335:4;16328:11;;;16098:249;;;;;:::o;13958:84::-;14007:5;14032:2;14025:9;;13958:84;:::o;26911:61::-;26948:24;26911:61;:::o;27119:79::-;27156:42;27119:79;:::o;22978:89::-;23033:26;23039:12;:10;:12::i;:::-;23053:5;23033;:26::i;:::-;22978:89;:::o;27400:276::-;25120:13;:11;:13::i;:::-;27105:7:::1;27480:14;:34;;;;:::i;:::-;27462:15;:52;:74;;;;;27519:17;;;;;;;;;;;27518:18;27462:74;27458:162;;;27553:55;;;;;;;;;;:::i;:::-;;;;;;;;27458:162;27651:17;;;;;;;;;;;27650:18;27630:17;;:38;;;;;;;;;;;;;;;;;;27400:276::o:0;27684:103::-;27738:4;27762:17;;;;;;;;;;;27755:24;;27684:103;:::o;14269:118::-;14334:7;14361:9;:18;14371:7;14361:18;;;;;;;;;;;;;;;;14354:25;;14269:118;;;:::o;25909:103::-;25120:13;:11;:13::i;:::-;25974:30:::1;26001:1;25974:18;:30::i;:::-;25909:103::o:0;26979:29::-;;;;;;;;;;;;;:::o;23396:161::-;23472:45;23488:7;23497:12;:10;:12::i;:::-;23511:5;23472:15;:45::i;:::-;23528:21;23534:7;23543:5;23528;:21::i;:::-;23396:161;;:::o;25234:87::-;25280:7;25307:6;;;;;;;;;;;25300:13;;25234:87;:::o;13215:95::-;13262:13;13295:7;13288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13215:95;:::o;14592:182::-;14661:4;14678:13;14694:12;:10;:12::i;:::-;14678:28;;14717:27;14727:5;14734:2;14738:5;14717:9;:27::i;:::-;14762:4;14755:11;;;14592:182;;;;:::o;14837:142::-;14917:7;14944:11;:18;14956:5;14944:18;;;;;;;;;;;;;;;:27;14963:7;14944:27;;;;;;;;;;;;;;;;14937:34;;14837:142;;;;:::o;27015:39::-;;;:::o;26167:220::-;25120:13;:11;:13::i;:::-;26272:1:::1;26252:22;;:8;:22;;::::0;26248:93:::1;;26326:1;26298:31;;;;;;;;;;;:::i;:::-;;;;;;;;26248:93;26351:28;26370:8;26351:18;:28::i;:::-;26167:220:::0;:::o;4304:98::-;4357:7;4384:10;4377:17;;4304:98;:::o;20157:130::-;20242:37;20251:5;20258:7;20267:5;20274:4;20242:8;:37::i;:::-;20157:130;;;:::o;21889:487::-;21989:24;22016:25;22026:5;22033:7;22016:9;:25::i;:::-;21989:52;;22076:17;22056:16;:37;22052:317;;22133:5;22114:16;:24;22110:132;;;22193:7;22202:16;22220:5;22166:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22110:132;22285:57;22294:5;22301:7;22329:5;22310:16;:24;22336:5;22285:8;:57::i;:::-;22052:317;21978:398;21889:487;;;:::o;16732:308::-;16832:1;16816:18;;:4;:18;;;16812:88;;16885:1;16858:30;;;;;;;;;;;:::i;:::-;;;;;;;;16812:88;16928:1;16914:16;;:2;:16;;;16910:88;;16983:1;16954:32;;;;;;;;;;;:::i;:::-;;;;;;;;16910:88;17008:24;17016:4;17022:2;17026:5;17008:7;:24::i;:::-;16732:308;;;:::o;19393:211::-;19483:1;19464:21;;:7;:21;;;19460:91;;19536:1;19509:30;;;;;;;;;;;:::i;:::-;;;;;;;;19460:91;19561:35;19569:7;19586:1;19590:5;19561:7;:35::i;:::-;19393:211;;:::o;25399:166::-;25470:12;:10;:12::i;:::-;25459:23;;:7;:5;:7::i;:::-;:23;;;25455:103;;25533:12;:10;:12::i;:::-;25506:40;;;;;;;;;;;:::i;:::-;;;;;;;;25455:103;25399:166::o;26547:191::-;26621:16;26640:6;;;;;;;;;;;26621:25;;26666:8;26657:6;;:17;;;;;;;;;;;;;;;;;;26721:8;26690:40;;26711:8;26690:40;;;;;;;;;;;;26610:128;26547:191;:::o;21154:443::-;21284:1;21267:19;;:5;:19;;;21263:91;;21339:1;21310:32;;;;;;;;;;;:::i;:::-;;;;;;;;21263:91;21387:1;21368:21;;:7;:21;;;21364:92;;21441:1;21413:31;;;;;;;;;;;:::i;:::-;;;;;;;;21364:92;21496:5;21466:11;:18;21478:5;21466:18;;;;;;;;;;;;;;;:27;21485:7;21466:27;;;;;;;;;;;;;;;:35;;;;21516:9;21512:78;;;21563:7;21547:31;;21556:5;21547:31;;;21572:5;21547:31;;;;;;:::i;:::-;;;;;;;;21512:78;21154:443;;;;:::o;27795:395::-;27908:17;;;;;;;;;;;:49;;;;;27950:7;:5;:7::i;:::-;27942:15;;:4;:15;;;;27908:49;:84;;;;;27990:1;27974:18;;:4;:18;;;;27908:84;:119;;;;;27156:42;28009:18;;:4;:18;;;;27908:119;27890:252;;;28054:76;;;;;;;;;;:::i;:::-;;;;;;;;27890:252;28152:30;28166:4;28172:2;28176:5;28152:13;:30::i;:::-;27795:395;;;:::o;17364:1135::-;17470:1;17454:18;;:4;:18;;;17450:552;;17608:5;17592:12;;:21;;;;;;;:::i;:::-;;;;;;;;17450:552;;;17646:19;17668:9;:15;17678:4;17668:15;;;;;;;;;;;;;;;;17646:37;;17716:5;17702:11;:19;17698:117;;;17774:4;17780:11;17793:5;17749:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17698:117;17970:5;17956:11;:19;17938:9;:15;17948:4;17938:15;;;;;;;;;;;;;;;:37;;;;17631:371;17450:552;18032:1;18018:16;;:2;:16;;;18014:435;;18200:5;18184:12;;:21;;;;;;;;;;;18014:435;;;18417:5;18400:9;:13;18410:2;18400:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18014:435;18481:2;18466:25;;18475:4;18466:25;;;18485:5;18466:25;;;;;;:::i;:::-;;;;;;;;17364:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:232::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:15;7454:2;7446:6;7442:15;7435:40;7250:232;:::o;7488:366::-;7630:3;7651:67;7715:2;7710:3;7651:67;:::i;:::-;7644:74;;7727:93;7816:3;7727:93;:::i;:::-;7845:2;7840:3;7836:12;7829:19;;7488:366;;;:::o;7860:419::-;8026:4;8064:2;8053:9;8049:18;8041:26;;8113:9;8107:4;8103:20;8099:1;8088:9;8084:17;8077:47;8141:131;8267:4;8141:131;:::i;:::-;8133:139;;7860:419;;;:::o;8285:442::-;8434:4;8472:2;8461:9;8457:18;8449:26;;8485:71;8553:1;8542:9;8538:17;8529:6;8485:71;:::i;:::-;8566:72;8634:2;8623:9;8619:18;8610:6;8566:72;:::i;:::-;8648;8716:2;8705:9;8701:18;8692:6;8648:72;:::i;:::-;8285:442;;;;;;:::o;8733:290::-;8873:34;8869:1;8861:6;8857:14;8850:58;8942:34;8937:2;8929:6;8925:15;8918:59;9011:4;9006:2;8998:6;8994:15;8987:29;8733:290;:::o;9029:366::-;9171:3;9192:67;9256:2;9251:3;9192:67;:::i;:::-;9185:74;;9268:93;9357:3;9268:93;:::i;:::-;9386:2;9381:3;9377:12;9370:19;;9029:366;;;:::o;9401:419::-;9567:4;9605:2;9594:9;9590:18;9582:26;;9654:9;9648:4;9644:20;9640:1;9629:9;9625:17;9618:47;9682:131;9808:4;9682:131;:::i;:::-;9674:139;;9401:419;;;:::o

Swarm Source

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