S Price: $0.867368 (+0.20%)

Token

Tribe (TRIBE)

Overview

Max Total Supply

9,864,390,489 TRIBE

Holders

420

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
244,815.1716564885 TRIBE

Value
$0.00
0x05A256AE5ab12f3eDdfbB60Dbee61fF3BC8d49D0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TribeToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-19
*/

// 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.2.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/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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: TribeToken.sol


pragma solidity ^0.8.20;





contract TribeToken is ERC20, Ownable, ReentrancyGuard, Pausable {
    event TokensBurned(address indexed burner, uint256 amount);
    event OwnershipTransferInitiated(address indexed previousOwner, address indexed newOwner);
    event OwnershipTransferTimeoutUpdated(uint256 newTimeout);
    event MintingDisabled(address indexed owner);

    uint256 public constant INITIAL_SUPPLY = 9_864_390_489;
    uint256 public immutable MAX_SUPPLY;
    address private _pendingOwner;
    uint256 public ownershipTransferTimeout;
    uint256 public ownershipTransferDeadline;
    bool private _mintingDisabled;

    constructor() ERC20("Tribe", "TRIBE") Ownable(msg.sender) {
        MAX_SUPPLY = INITIAL_SUPPLY * 10 ** decimals();
        ownershipTransferTimeout = 2 days;
        _mint(msg.sender, INITIAL_SUPPLY * 10 ** decimals());
        _mintingDisabled = true;
        emit MintingDisabled(msg.sender);
    }

    modifier onlyPendingOwner() {
        require(msg.sender == _pendingOwner, "TribeToken: caller is not the pending owner");
        _;
    }

    modifier mintingEnabled() {
        require(!_mintingDisabled, "TribeToken: minting is disabled");
        _;
    }

    function burn(uint256 amount) public whenNotPaused nonReentrant {
        require(amount > 0, "TribeToken: burn amount must be greater than zero");
        _burn(msg.sender, amount);
        emit TokensBurned(msg.sender, amount);
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        require(newOwner != address(0), "TribeToken: new owner cannot be zero address");
        require(newOwner != owner(), "TribeToken: new owner cannot be current owner");
        
        _pendingOwner = newOwner;
        ownershipTransferDeadline = block.timestamp + ownershipTransferTimeout;
        emit OwnershipTransferInitiated(owner(), newOwner);
    }

    function acceptOwnership() public onlyPendingOwner {
        require(block.timestamp <= ownershipTransferDeadline, "TribeToken: ownership transfer expired");
        
        address oldOwner = owner();
        _transferOwnership(_pendingOwner);
        _pendingOwner = address(0);
        ownershipTransferDeadline = 0;
        
        emit OwnershipTransferred(oldOwner, msg.sender);
    }

    function updateOwnershipTransferTimeout(uint256 newTimeout) public onlyOwner {
        require(newTimeout > 1 hours, "TribeToken: timeout too short");
        require(newTimeout < 7 days, "TribeToken: timeout too long");
        ownershipTransferTimeout = newTimeout;
        emit OwnershipTransferTimeoutUpdated(newTimeout);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function renounceOwnership(string memory confirmationText) public onlyOwner {
        require(
            keccak256(abi.encodePacked(confirmationText)) == 
            keccak256(abi.encodePacked("I confirm ownership renouncement")),
            "TribeToken: invalid confirmation text"
        );
        _transferOwnership(address(0));
    }

    function transfer(address to, uint256 amount) public override whenNotPaused returns (bool) {
        return super.transfer(to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) public override whenNotPaused returns (bool) {
        return super.transferFrom(from, to, amount);
    }
}

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":"owner","type":"address"}],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTimeout","type":"uint256"}],"name":"OwnershipTransferTimeoutUpdated","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBurned","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"ownershipTransferDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownershipTransferTimeout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"confirmationText","type":"string"}],"name":"renounceOwnership","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTimeout","type":"uint256"}],"name":"updateOwnershipTransferTimeout","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801562000010575f80fd5b503360405180604001604052806005815260200164547269626560d81b81525060405180604001604052806005815260200164545249424560d81b81525081600390816200005f9190620003a7565b5060046200006e8282620003a7565b5050506001600160a01b038116620000a057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000ab816200014b565b5060016006556007805460ff19169055620000c96012600a6200057e565b620000da9064024bf6a75962000595565b6080526202a3006008556200010e33620000f76012600a6200057e565b620001089064024bf6a75962000595565b6200019c565b600a805460ff1916600117905560405133907f340bf1b235fa0bbed4b1b74504c172953a38e3ef4bd71a7042fd2a0057455b73905f90a2620005c5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001c75760405163ec442f0560e01b81525f600482015260240162000097565b620001d45f8383620001d8565b5050565b6001600160a01b03831662000206578060025f828254620001fa9190620005af565b90915550620002789050565b6001600160a01b0383165f90815260208190526040902054818110156200025a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000097565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200029657600280548290039055620002b4565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002fa91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200033057607f821691505b6020821081036200034f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003a2575f81815260208120601f850160051c810160208610156200037d5750805b601f850160051c820191505b818110156200039e5782815560010162000389565b5050505b505050565b81516001600160401b03811115620003c357620003c362000307565b620003db81620003d484546200031b565b8462000355565b602080601f83116001811462000411575f8415620003f95750858301515b5f19600386901b1c1916600185901b1785556200039e565b5f85815260208120601f198616915b82811015620004415788860151825594840194600190910190840162000420565b50858210156200045f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620004c357815f1904821115620004a757620004a76200046f565b80851615620004b557918102915b93841c939080029062000488565b509250929050565b5f82620004db5750600162000578565b81620004e957505f62000578565b81600181146200050257600281146200050d576200052d565b600191505062000578565b60ff8411156200052157620005216200046f565b50506001821b62000578565b5060208310610133831016604e8410600b841016171562000552575081810a62000578565b6200055e838362000483565b805f19048211156200057457620005746200046f565b0290505b92915050565b5f6200058e60ff841683620004cb565b9392505050565b80820281158282048414176200057857620005786200046f565b808201808211156200057857620005786200046f565b60805161115c620005de5f395f6101df015261115c5ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c80635c975abb116100bf57806395d89b411161007957806395d89b4114610297578063a9059cbb1461029f578063b01cd7c5146102b2578063daff59b6146102bb578063dd62ed3e146102ce578063f2fde38b14610306575f80fd5b80635c975abb1461023157806370a082311461023c578063715018a61461026457806379ba50971461026c5780638456cb59146102745780638da5cb5b1461027c575f80fd5b80632ff2e9dc116101105780632ff2e9dc146101bf578063313ce567146101cb57806332cb6b0c146101da5780633f4ba83a1461020157806342966c681461020b5780634fdb7f441461021e575f80fd5b806306fdde031461014c578063095ea7b31461016a57806315112f111461018d57806318160ddd146101a457806323b872dd146101ac575b5f80fd5b610154610319565b6040516101619190610ee6565b60405180910390f35b61017d610178366004610f33565b6103a9565b6040519015158152602001610161565b61019660095481565b604051908152602001610161565b600254610196565b61017d6101ba366004610f5b565b6103c2565b61019664024bf6a75981565b60405160128152602001610161565b6101967f000000000000000000000000000000000000000000000000000000000000000081565b6102096103de565b005b610209610219366004610f94565b6103f0565b61020961022c366004610fbf565b6104ba565b60075460ff1661017d565b61019661024a36600461106a565b6001600160a01b03165f9081526020819052604090205490565b61020961058e565b61020961059f565b6102096106f1565b6005546040516001600160a01b039091168152602001610161565b610154610701565b61017d6102ad366004610f33565b610710565b61019660085481565b6102096102c9366004610f94565b61072a565b6101966102dc366004611083565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020961031436600461106a565b610810565b606060038054610328906110b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610354906110b4565b801561039f5780601f106103765761010080835404028352916020019161039f565b820191905f5260205f20905b81548152906001019060200180831161038257829003601f168201915b5050505050905090565b5f336103b6818585610989565b60019150505b92915050565b5f6103cb61099b565b6103d68484846109e1565b949350505050565b6103e6610a04565b6103ee610a31565b565b6103f861099b565b610400610a83565b5f811161046e5760405162461bcd60e51b815260206004820152603160248201527f5472696265546f6b656e3a206275726e20616d6f756e74206d7573742062652060448201527067726561746572207468616e207a65726f60781b60648201526084015b60405180910390fd5b6104783382610adc565b60405181815233907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a26104b76001600655565b50565b6104c2610a04565b604080517f4920636f6e6669726d206f776e6572736869702072656e6f756e63656d656e74602082015201604051602081830303815290604052805190602001208160405160200161051491906110ec565b60405160208183030381529060405280519060200120146105855760405162461bcd60e51b815260206004820152602560248201527f5472696265546f6b656e3a20696e76616c696420636f6e6669726d6174696f6e604482015264081d195e1d60da1b6064820152608401610465565b6104b75f610b14565b610596610a04565b6103ee5f610b14565b60075461010090046001600160a01b031633146106125760405162461bcd60e51b815260206004820152602b60248201527f5472696265546f6b656e3a2063616c6c6572206973206e6f742074686520706560448201526a373234b7339037bbb732b960a91b6064820152608401610465565b6009544211156106735760405162461bcd60e51b815260206004820152602660248201527f5472696265546f6b656e3a206f776e657273686970207472616e7366657220656044820152651e1c1a5c995960d21b6064820152608401610465565b5f6106866005546001600160a01b031690565b6007549091506106a39061010090046001600160a01b0316610b14565b60078054610100600160a81b03191690555f600981905560405133916001600160a01b038416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6106f9610a04565b6103ee610b65565b606060048054610328906110b4565b5f61071961099b565b6107238383610ba2565b9392505050565b610732610a04565b610e1081116107835760405162461bcd60e51b815260206004820152601d60248201527f5472696265546f6b656e3a2074696d656f757420746f6f2073686f72740000006044820152606401610465565b62093a8081106107d55760405162461bcd60e51b815260206004820152601c60248201527f5472696265546f6b656e3a2074696d656f757420746f6f206c6f6e67000000006044820152606401610465565b60088190556040518181527f4ef6700d9fbd893ecc3fe31c97a4fc26bdf01fbf9a1981275dcec0ca3e27ff439060200160405180910390a150565b610818610a04565b6001600160a01b0381166108835760405162461bcd60e51b815260206004820152602c60248201527f5472696265546f6b656e3a206e6577206f776e65722063616e6e6f742062652060448201526b7a65726f206164647265737360a01b6064820152608401610465565b6005546001600160a01b03166001600160a01b0316816001600160a01b0316036109055760405162461bcd60e51b815260206004820152602d60248201527f5472696265546f6b656e3a206e6577206f776e65722063616e6e6f742062652060448201526c31bab93932b73a1037bbb732b960991b6064820152608401610465565b60078054610100600160a81b0319166101006001600160a01b038416021790556008546109329042611107565b6009556001600160a01b0381166109516005546001600160a01b031690565b6001600160a01b03167fb150023a879fd806e3599b6ca8ee3b60f0e360ab3846d128d67ebce1a391639a60405160405180910390a350565b6109968383836001610baf565b505050565b60075460ff16156103ee5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610465565b5f336109ee858285610c82565b6109f9858585610cf8565b506001949350505050565b6005546001600160a01b031633146103ee5760405163118cdaa760e01b8152336004820152602401610465565b610a39610d55565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600260065403610ad55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610465565b6002600655565b6001600160a01b038216610b0557604051634b637e8f60e11b81525f6004820152602401610465565b610b10825f83610d9e565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610b6d61099b565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a663390565b5f336103b6818585610cf8565b6001600160a01b038416610bd85760405163e602df0560e01b81525f6004820152602401610465565b6001600160a01b038316610c0157604051634a1406b160e11b81525f6004820152602401610465565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610c7c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c7391815260200190565b60405180910390a35b50505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610c7c5781811015610cea57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610465565b610c7c84848484035f610baf565b6001600160a01b038316610d2157604051634b637e8f60e11b81525f6004820152602401610465565b6001600160a01b038216610d4a5760405163ec442f0560e01b81525f6004820152602401610465565b610996838383610d9e565b60075460ff166103ee5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610465565b6001600160a01b038316610dc8578060025f828254610dbd9190611107565b90915550610e389050565b6001600160a01b0383165f9081526020819052604090205481811015610e1a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610465565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e5457600280548290039055610e72565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eb791815260200190565b60405180910390a3505050565b5f5b83811015610ede578181015183820152602001610ec6565b50505f910152565b602081525f8251806020840152610f04816040850160208701610ec4565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610f2e575f80fd5b919050565b5f8060408385031215610f44575f80fd5b610f4d83610f18565b946020939093013593505050565b5f805f60608486031215610f6d575f80fd5b610f7684610f18565b9250610f8460208501610f18565b9150604084013590509250925092565b5f60208284031215610fa4575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610fcf575f80fd5b813567ffffffffffffffff80821115610fe6575f80fd5b818401915084601f830112610ff9575f80fd5b81358181111561100b5761100b610fab565b604051601f8201601f19908116603f0116810190838211818310171561103357611033610fab565b8160405282815287602084870101111561104b575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f6020828403121561107a575f80fd5b61072382610f18565b5f8060408385031215611094575f80fd5b61109d83610f18565b91506110ab60208401610f18565b90509250929050565b600181811c908216806110c857607f821691505b6020821081036110e657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82516110fd818460208701610ec4565b9190910192915050565b808201808211156103bc57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206a27bbdfb79572be64bb3b6619f0f12b06db3feea8d5b3980ca16bf7a61641e964736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c80635c975abb116100bf57806395d89b411161007957806395d89b4114610297578063a9059cbb1461029f578063b01cd7c5146102b2578063daff59b6146102bb578063dd62ed3e146102ce578063f2fde38b14610306575f80fd5b80635c975abb1461023157806370a082311461023c578063715018a61461026457806379ba50971461026c5780638456cb59146102745780638da5cb5b1461027c575f80fd5b80632ff2e9dc116101105780632ff2e9dc146101bf578063313ce567146101cb57806332cb6b0c146101da5780633f4ba83a1461020157806342966c681461020b5780634fdb7f441461021e575f80fd5b806306fdde031461014c578063095ea7b31461016a57806315112f111461018d57806318160ddd146101a457806323b872dd146101ac575b5f80fd5b610154610319565b6040516101619190610ee6565b60405180910390f35b61017d610178366004610f33565b6103a9565b6040519015158152602001610161565b61019660095481565b604051908152602001610161565b600254610196565b61017d6101ba366004610f5b565b6103c2565b61019664024bf6a75981565b60405160128152602001610161565b6101967f00000000000000000000000000000000000000001fdfa1efebc3dcbf6dc4000081565b6102096103de565b005b610209610219366004610f94565b6103f0565b61020961022c366004610fbf565b6104ba565b60075460ff1661017d565b61019661024a36600461106a565b6001600160a01b03165f9081526020819052604090205490565b61020961058e565b61020961059f565b6102096106f1565b6005546040516001600160a01b039091168152602001610161565b610154610701565b61017d6102ad366004610f33565b610710565b61019660085481565b6102096102c9366004610f94565b61072a565b6101966102dc366004611083565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61020961031436600461106a565b610810565b606060038054610328906110b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610354906110b4565b801561039f5780601f106103765761010080835404028352916020019161039f565b820191905f5260205f20905b81548152906001019060200180831161038257829003601f168201915b5050505050905090565b5f336103b6818585610989565b60019150505b92915050565b5f6103cb61099b565b6103d68484846109e1565b949350505050565b6103e6610a04565b6103ee610a31565b565b6103f861099b565b610400610a83565b5f811161046e5760405162461bcd60e51b815260206004820152603160248201527f5472696265546f6b656e3a206275726e20616d6f756e74206d7573742062652060448201527067726561746572207468616e207a65726f60781b60648201526084015b60405180910390fd5b6104783382610adc565b60405181815233907ffd38818f5291bf0bb3a2a48aadc06ba8757865d1dabd804585338aab3009dcb69060200160405180910390a26104b76001600655565b50565b6104c2610a04565b604080517f4920636f6e6669726d206f776e6572736869702072656e6f756e63656d656e74602082015201604051602081830303815290604052805190602001208160405160200161051491906110ec565b60405160208183030381529060405280519060200120146105855760405162461bcd60e51b815260206004820152602560248201527f5472696265546f6b656e3a20696e76616c696420636f6e6669726d6174696f6e604482015264081d195e1d60da1b6064820152608401610465565b6104b75f610b14565b610596610a04565b6103ee5f610b14565b60075461010090046001600160a01b031633146106125760405162461bcd60e51b815260206004820152602b60248201527f5472696265546f6b656e3a2063616c6c6572206973206e6f742074686520706560448201526a373234b7339037bbb732b960a91b6064820152608401610465565b6009544211156106735760405162461bcd60e51b815260206004820152602660248201527f5472696265546f6b656e3a206f776e657273686970207472616e7366657220656044820152651e1c1a5c995960d21b6064820152608401610465565b5f6106866005546001600160a01b031690565b6007549091506106a39061010090046001600160a01b0316610b14565b60078054610100600160a81b03191690555f600981905560405133916001600160a01b038416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6106f9610a04565b6103ee610b65565b606060048054610328906110b4565b5f61071961099b565b6107238383610ba2565b9392505050565b610732610a04565b610e1081116107835760405162461bcd60e51b815260206004820152601d60248201527f5472696265546f6b656e3a2074696d656f757420746f6f2073686f72740000006044820152606401610465565b62093a8081106107d55760405162461bcd60e51b815260206004820152601c60248201527f5472696265546f6b656e3a2074696d656f757420746f6f206c6f6e67000000006044820152606401610465565b60088190556040518181527f4ef6700d9fbd893ecc3fe31c97a4fc26bdf01fbf9a1981275dcec0ca3e27ff439060200160405180910390a150565b610818610a04565b6001600160a01b0381166108835760405162461bcd60e51b815260206004820152602c60248201527f5472696265546f6b656e3a206e6577206f776e65722063616e6e6f742062652060448201526b7a65726f206164647265737360a01b6064820152608401610465565b6005546001600160a01b03166001600160a01b0316816001600160a01b0316036109055760405162461bcd60e51b815260206004820152602d60248201527f5472696265546f6b656e3a206e6577206f776e65722063616e6e6f742062652060448201526c31bab93932b73a1037bbb732b960991b6064820152608401610465565b60078054610100600160a81b0319166101006001600160a01b038416021790556008546109329042611107565b6009556001600160a01b0381166109516005546001600160a01b031690565b6001600160a01b03167fb150023a879fd806e3599b6ca8ee3b60f0e360ab3846d128d67ebce1a391639a60405160405180910390a350565b6109968383836001610baf565b505050565b60075460ff16156103ee5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610465565b5f336109ee858285610c82565b6109f9858585610cf8565b506001949350505050565b6005546001600160a01b031633146103ee5760405163118cdaa760e01b8152336004820152602401610465565b610a39610d55565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600260065403610ad55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610465565b6002600655565b6001600160a01b038216610b0557604051634b637e8f60e11b81525f6004820152602401610465565b610b10825f83610d9e565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610b6d61099b565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a663390565b5f336103b6818585610cf8565b6001600160a01b038416610bd85760405163e602df0560e01b81525f6004820152602401610465565b6001600160a01b038316610c0157604051634a1406b160e11b81525f6004820152602401610465565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610c7c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c7391815260200190565b60405180910390a35b50505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610c7c5781811015610cea57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610465565b610c7c84848484035f610baf565b6001600160a01b038316610d2157604051634b637e8f60e11b81525f6004820152602401610465565b6001600160a01b038216610d4a5760405163ec442f0560e01b81525f6004820152602401610465565b610996838383610d9e565b60075460ff166103ee5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610465565b6001600160a01b038316610dc8578060025f828254610dbd9190611107565b90915550610e389050565b6001600160a01b0383165f9081526020819052604090205481811015610e1a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610465565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610e5457600280548290039055610e72565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eb791815260200190565b60405180910390a3505050565b5f5b83811015610ede578181015183820152602001610ec6565b50505f910152565b602081525f8251806020840152610f04816040850160208701610ec4565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610f2e575f80fd5b919050565b5f8060408385031215610f44575f80fd5b610f4d83610f18565b946020939093013593505050565b5f805f60608486031215610f6d575f80fd5b610f7684610f18565b9250610f8460208501610f18565b9150604084013590509250925092565b5f60208284031215610fa4575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610fcf575f80fd5b813567ffffffffffffffff80821115610fe6575f80fd5b818401915084601f830112610ff9575f80fd5b81358181111561100b5761100b610fab565b604051601f8201601f19908116603f0116810190838211818310171561103357611033610fab565b8160405282815287602084870101111561104b575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f6020828403121561107a575f80fd5b61072382610f18565b5f8060408385031215611094575f80fd5b61109d83610f18565b91506110ab60208401610f18565b90509250929050565b600181811c908216806110c857607f821691505b6020821081036110e657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82516110fd818460208701610ec4565b9190910192915050565b808201808211156103bc57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206a27bbdfb79572be64bb3b6619f0f12b06db3feea8d5b3980ca16bf7a61641e964736f6c63430008140033

Deployed Bytecode Sourcemap

31523:3487:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15298:190;;;;;;:::i;:::-;;:::i;:::-;;;1272:14:1;;1265:22;1247:41;;1235:2;1220:18;15298:190:0;1107:187:1;32058:40:0;;;;;;;;;1445:25:1;;;1433:2;1418:18;32058:40:0;1299:177:1;14107:99:0;14186:12;;14107:99;;34836:171;;;;;;:::i;:::-;;:::i;31873:54::-;;31914:13;31873:54;;13958:84;;;14032:2;1956:36:1;;1944:2;1929:18;13958:84:0;1814:184:1;31934:35:0;;;;;34255:65;;;:::i;:::-;;32734:239;;;;;;:::i;:::-;;:::i;34328:349::-;;;;;;:::i;:::-;;:::i;30476:86::-;30547:7;;;;30476:86;;14269:118;;;;;;:::i;:::-;-1:-1:-1;;;;;14361:18:0;14334:7;14361:18;;;;;;;;;;;;14269:118;24727:103;;;:::i;33433:401::-;;;:::i;34186:61::-;;;:::i;24052:87::-;24125:6;;24052:87;;-1:-1:-1;;;;;24125:6:0;;;3584:51:1;;3572:2;3557:18;24052:87:0;3438:203:1;13215:95:0;;;:::i;34685:143::-;;;;;;:::i;:::-;;:::i;32012:39::-;;;;;;33842:336;;;;;;:::i;:::-;;:::i;14837:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14944:18:0;;;14917:7;14944:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14837:142;32981:444;;;;;;:::i;:::-;;:::i;13005:91::-;13050:13;13083:5;13076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13005:91;:::o;15298:190::-;15371:4;4384:10;15427:31;4384:10;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15298:190;;;;;:::o;34836:171::-;34939:4;30081:19;:17;:19::i;:::-;34963:36:::1;34982:4;34988:2;34992:6;34963:18;:36::i;:::-;34956:43:::0;34836:171;-1:-1:-1;;;;34836:171:0:o;34255:65::-;23938:13;:11;:13::i;:::-;34302:10:::1;:8;:10::i;:::-;34255:65::o:0;32734:239::-;30081:19;:17;:19::i;:::-;27908:21:::1;:19;:21::i;:::-;32826:1:::2;32817:6;:10;32809:72;;;::::0;-1:-1:-1;;;32809:72:0;;4498:2:1;32809:72:0::2;::::0;::::2;4480:21:1::0;4537:2;4517:18;;;4510:30;4576:34;4556:18;;;4549:62;-1:-1:-1;;;4627:18:1;;;4620:47;4684:19;;32809:72:0::2;;;;;;;;;32892:25;32898:10;32910:6;32892:5;:25::i;:::-;32933:32;::::0;1445:25:1;;;32946:10:0::2;::::0;32933:32:::2;::::0;1433:2:1;1418:18;32933:32:0::2;;;;;;;27952:20:::1;27346:1:::0;28472:7;:22;28289:213;27952:20:::1;32734:239:::0;:::o;34328:349::-;23938:13;:11;:13::i;:::-;34510:52:::1;::::0;;4928:34:1;34510:52:0::1;::::0;::::1;4916:47:1::0;4979:12;34510:52:0::1;;;;;;;;;;;;34500:63;;;;;;34464:16;34447:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;34437:45;;;;;;:126;34415:213;;;::::0;-1:-1:-1;;;34415:213:0;;5498:2:1;34415:213:0::1;::::0;::::1;5480:21:1::0;5537:2;5517:18;;;5510:30;5576:34;5556:18;;;5549:62;-1:-1:-1;;;5627:18:1;;;5620:35;5672:19;;34415:213:0::1;5296:401:1::0;34415:213:0::1;34639:30;34666:1;34639:18;:30::i;24727:103::-:0;23938:13;:11;:13::i;:::-;24792:30:::1;24819:1;24792:18;:30::i;33433:401::-:0;32519:13;;;;;-1:-1:-1;;;;;32519:13:0;32505:10;:27;32497:83;;;;-1:-1:-1;;;32497:83:0;;5904:2:1;32497:83:0;;;5886:21:1;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:41;6084:19;;32497:83:0;5702:407:1;32497:83:0;33522:25:::1;;33503:15;:44;;33495:95;;;::::0;-1:-1:-1;;;33495:95:0;;6316:2:1;33495:95:0::1;::::0;::::1;6298:21:1::0;6355:2;6335:18;;;6328:30;6394:34;6374:18;;;6367:62;-1:-1:-1;;;6445:18:1;;;6438:36;6491:19;;33495:95:0::1;6114:402:1::0;33495:95:0::1;33611:16;33630:7;24125:6:::0;;-1:-1:-1;;;;;24125:6:0;;24052:87;33630:7:::1;33667:13;::::0;33611:26;;-1:-1:-1;33648:33:0::1;::::0;33667:13:::1;::::0;::::1;-1:-1:-1::0;;;;;33667:13:0::1;33648:18;:33::i;:::-;33692:13;:26:::0;;-1:-1:-1;;;;;;33692:26:0::1;::::0;;33716:1:::1;33729:25;:29:::0;;;33784:42:::1;::::0;33815:10:::1;::::0;-1:-1:-1;;;;;33784:42:0;::::1;::::0;::::1;::::0;33716:1;33784:42:::1;33484:350;33433:401::o:0;34186:61::-;23938:13;:11;:13::i;:::-;34231:8:::1;:6;:8::i;13215:95::-:0;13262:13;13295:7;13288:14;;;;;:::i;34685:143::-;34770:4;30081:19;:17;:19::i;:::-;34794:26:::1;34809:2;34813:6;34794:14;:26::i;:::-;34787:33:::0;34685:143;-1:-1:-1;;;34685:143:0:o;33842:336::-;23938:13;:11;:13::i;:::-;33951:7:::1;33938:10;:20;33930:62;;;::::0;-1:-1:-1;;;33930:62:0;;6723:2:1;33930:62:0::1;::::0;::::1;6705:21:1::0;6762:2;6742:18;;;6735:30;6801:31;6781:18;;;6774:59;6850:18;;33930:62:0::1;6521:353:1::0;33930:62:0::1;34024:6;34011:10;:19;34003:60;;;::::0;-1:-1:-1;;;34003:60:0;;7081:2:1;34003:60:0::1;::::0;::::1;7063:21:1::0;7120:2;7100:18;;;7093:30;7159;7139:18;;;7132:58;7207:18;;34003:60:0::1;6879:352:1::0;34003:60:0::1;34074:24;:37:::0;;;34127:43:::1;::::0;1445:25:1;;;34127:43:0::1;::::0;1433:2:1;1418:18;34127:43:0::1;;;;;;;33842:336:::0;:::o;32981:444::-;23938:13;:11;:13::i;:::-;-1:-1:-1;;;;;33071:22:0;::::1;33063:79;;;::::0;-1:-1:-1;;;33063:79:0;;7438:2:1;33063:79:0::1;::::0;::::1;7420:21:1::0;7477:2;7457:18;;;7450:30;7516:34;7496:18;;;7489:62;-1:-1:-1;;;7567:18:1;;;7560:42;7619:19;;33063:79:0::1;7236:408:1::0;33063:79:0::1;24125:6:::0;;-1:-1:-1;;;;;24125:6:0;-1:-1:-1;;;;;33161:19:0::1;:8;-1:-1:-1::0;;;;;33161:19:0::1;::::0;33153:77:::1;;;::::0;-1:-1:-1;;;33153:77:0;;7851:2:1;33153:77:0::1;::::0;::::1;7833:21:1::0;7890:2;7870:18;;;7863:30;7929:34;7909:18;;;7902:62;-1:-1:-1;;;7980:18:1;;;7973:43;8033:19;;33153:77:0::1;7649:409:1::0;33153:77:0::1;33251:13;:24:::0;;-1:-1:-1;;;;;;33251:24:0::1;;-1:-1:-1::0;;;;;33251:24:0;::::1;;;::::0;;33332::::1;::::0;33314:42:::1;::::0;:15:::1;:42;:::i;:::-;33286:25;:70:::0;-1:-1:-1;;;;;33372:45:0;::::1;33399:7;24125:6:::0;;-1:-1:-1;;;;;24125:6:0;;24052:87;33399:7:::1;-1:-1:-1::0;;;;;33372:45:0::1;;;;;;;;;;;32981:444:::0;:::o;20157:130::-;20242:37;20251:5;20258:7;20267:5;20274:4;20242:8;:37::i;:::-;20157:130;;;:::o;30635:108::-;30547:7;;;;30705:9;30697:38;;;;-1:-1:-1;;;30697:38:0;;8492:2:1;30697:38:0;;;8474:21:1;8531:2;8511:18;;;8504:30;-1:-1:-1;;;8550:18:1;;;8543:46;8606:18;;30697:38:0;8290:340:1;16098:249:0;16185:4;4384:10;16243:37;16259:4;4384:10;16274:5;16243:15;:37::i;:::-;16291:26;16301:4;16307:2;16311:5;16291:9;:26::i;:::-;-1:-1:-1;16335:4:0;;16098:249;-1:-1:-1;;;;16098:249:0:o;24217:166::-;24125:6;;-1:-1:-1;;;;;24125:6:0;4384:10;24277:23;24273:103;;24324:40;;-1:-1:-1;;;24324:40:0;;4384:10;24324:40;;;3584:51:1;3557:18;;24324:40:0;3438:203:1;31331:120:0;30340:16;:14;:16::i;:::-;31390:7:::1;:15:::0;;-1:-1:-1;;31390:15:0::1;::::0;;31421:22:::1;4384:10:::0;31430:12:::1;31421:22;::::0;-1:-1:-1;;;;;3602:32:1;;;3584:51;;3572:2;3557:18;31421:22:0::1;;;;;;;31331:120::o:0;27988:293::-;27390:1;28122:7;;:19;28114:63;;;;-1:-1:-1;;;28114:63:0;;8837:2:1;28114:63:0;;;8819:21:1;8876:2;8856:18;;;8849:30;8915:33;8895:18;;;8888:61;8966:18;;28114:63:0;8635:355:1;28114:63:0;27390:1;28255:7;:18;27988:293::o;19393:211::-;-1:-1:-1;;;;;19464:21:0;;19460:91;;19509:30;;-1:-1:-1;;;19509:30:0;;19536:1;19509:30;;;3584:51:1;3557:18;;19509:30:0;3438:203:1;19460:91:0;19561:35;19569:7;19586:1;19590:5;19561:7;:35::i;:::-;19393:211;;:::o;25365:191::-;25458:6;;;-1:-1:-1;;;;;25475:17:0;;;-1:-1:-1;;;;;;25475:17:0;;;;;;;25508:40;;25458:6;;;25475:17;25458:6;;25508:40;;25439:16;;25508:40;25428:128;25365:191;:::o;31072:118::-;30081:19;:17;:19::i;:::-;31132:7:::1;:14:::0;;-1:-1:-1;;31132:14:0::1;31142:4;31132:14;::::0;;31162:20:::1;31169:12;4384:10:::0;;4304:98;14592:182;14661:4;4384:10;14717:27;4384:10;14734:2;14738:5;14717:9;:27::i;21154:443::-;-1:-1:-1;;;;;21267:19:0;;21263:91;;21310:32;;-1:-1:-1;;;21310:32:0;;21339:1;21310:32;;;3584:51:1;3557:18;;21310:32:0;3438:203:1;21263:91:0;-1:-1:-1;;;;;21368:21:0;;21364:92;;21413:31;;-1:-1:-1;;;21413:31:0;;21441:1;21413:31;;;3584:51:1;3557:18;;21413:31:0;3438:203:1;21364:92:0;-1:-1:-1;;;;;21466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21512:78;;;;21563:7;-1:-1:-1;;;;;21547:31:0;21556:5;-1:-1:-1;;;;;21547:31:0;;21572:5;21547:31;;;;1445:25:1;;1433:2;1418:18;;1299:177;21547:31:0;;;;;;;;21512:78;21154:443;;;;:::o;21889:486::-;-1:-1:-1;;;;;14944:18:0;;;21989:24;14944:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22056:36:0;;22052:316;;;22132:5;22113:16;:24;22109:132;;;22165:60;;-1:-1:-1;;;22165:60:0;;-1:-1:-1;;;;;9215:32:1;;22165:60:0;;;9197:51:1;9264:18;;;9257:34;;;9307:18;;;9300:34;;;9170:18;;22165:60:0;8995:345:1;22109:132:0;22284:57;22293:5;22300:7;22328:5;22309:16;:24;22335:5;22284:8;:57::i;16732:308::-;-1:-1:-1;;;;;16816:18:0;;16812:88;;16858:30;;-1:-1:-1;;;16858:30:0;;16885:1;16858:30;;;3584:51:1;3557:18;;16858:30:0;3438:203:1;16812:88:0;-1:-1:-1;;;;;16914:16:0;;16910:88;;16954:32;;-1:-1:-1;;;16954:32:0;;16983:1;16954:32;;;3584:51:1;3557:18;;16954:32:0;3438:203:1;16910:88:0;17008:24;17016:4;17022:2;17026:5;17008:7;:24::i;30820:108::-;30547:7;;;;30879:41;;;;-1:-1:-1;;;30879:41:0;;9547:2:1;30879:41:0;;;9529:21:1;9586:2;9566:18;;;9559:30;-1:-1:-1;;;9605:18:1;;;9598:50;9665:18;;30879:41:0;9345:344:1;17364:1135:0;-1:-1:-1;;;;;17454:18:0;;17450:552;;17608:5;17592:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17450:552:0;;-1:-1:-1;17450:552:0;;-1:-1:-1;;;;;17668:15:0;;17646:19;17668:15;;;;;;;;;;;17702:19;;;17698:117;;;17749:50;;-1:-1:-1;;;17749:50:0;;-1:-1:-1;;;;;9215:32:1;;17749:50:0;;;9197:51:1;9264:18;;;9257:34;;;9307:18;;;9300:34;;;9170:18;;17749:50:0;8995:345:1;17698:117:0;-1:-1:-1;;;;;17938:15:0;;:9;:15;;;;;;;;;;17956:19;;;;17938:37;;17450:552;-1:-1:-1;;;;;18018:16:0;;18014:435;;18184:12;:21;;;;;;;18014:435;;;-1:-1:-1;;;;;18400:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18014:435;18481:2;-1:-1:-1;;;;;18466:25:0;18475:4;-1:-1:-1;;;;;18466:25:0;;18485:5;18466:25;;;;1445::1;;1433:2;1418:18;;1299:177;18466:25:0;;;;;;;;17364:1135;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:254::-;916:6;924;977:2;965:9;956:7;952:23;948:32;945:52;;;993:1;990;983:12;945:52;1016:29;1035:9;1016:29;:::i;:::-;1006:39;1092:2;1077:18;;;;1064:32;;-1:-1:-1;;;848:254:1:o;1481:328::-;1558:6;1566;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:52;;;1643:1;1640;1633:12;1595:52;1666:29;1685:9;1666:29;:::i;:::-;1656:39;;1714:38;1748:2;1737:9;1733:18;1714:38;:::i;:::-;1704:48;;1799:2;1788:9;1784:18;1771:32;1761:42;;1481:328;;;;;:::o;2003:180::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;-1:-1:-1;2154:23:1;;2003:180;-1:-1:-1;2003:180:1:o;2188:127::-;2249:10;2244:3;2240:20;2237:1;2230:31;2280:4;2277:1;2270:15;2304:4;2301:1;2294:15;2320:922;2389:6;2442:2;2430:9;2421:7;2417:23;2413:32;2410:52;;;2458:1;2455;2448:12;2410:52;2498:9;2485:23;2527:18;2568:2;2560:6;2557:14;2554:34;;;2584:1;2581;2574:12;2554:34;2622:6;2611:9;2607:22;2597:32;;2667:7;2660:4;2656:2;2652:13;2648:27;2638:55;;2689:1;2686;2679:12;2638:55;2725:2;2712:16;2747:2;2743;2740:10;2737:36;;;2753:18;;:::i;:::-;2828:2;2822:9;2796:2;2882:13;;-1:-1:-1;;2878:22:1;;;2902:2;2874:31;2870:40;2858:53;;;2926:18;;;2946:22;;;2923:46;2920:72;;;2972:18;;:::i;:::-;3012:10;3008:2;3001:22;3047:2;3039:6;3032:18;3087:7;3082:2;3077;3073;3069:11;3065:20;3062:33;3059:53;;;3108:1;3105;3098:12;3059:53;3164:2;3159;3155;3151:11;3146:2;3138:6;3134:15;3121:46;3209:1;3187:15;;;3204:2;3183:24;3176:35;;;;-1:-1:-1;3191:6:1;2320:922;-1:-1:-1;;;;;2320:922:1:o;3247:186::-;3306:6;3359:2;3347:9;3338:7;3334:23;3330:32;3327:52;;;3375:1;3372;3365:12;3327:52;3398:29;3417:9;3398:29;:::i;3646:260::-;3714:6;3722;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3814:29;3833:9;3814:29;:::i;:::-;3804:39;;3862:38;3896:2;3885:9;3881:18;3862:38;:::i;:::-;3852:48;;3646:260;;;;;:::o;3911:380::-;3990:1;3986:12;;;;4033;;;4054:61;;4108:4;4100:6;4096:17;4086:27;;4054:61;4161:2;4153:6;4150:14;4130:18;4127:38;4124:161;;4207:10;4202:3;4198:20;4195:1;4188:31;4242:4;4239:1;4232:15;4270:4;4267:1;4260:15;4124:161;;3911:380;;;:::o;5002:289::-;5133:3;5171:6;5165:13;5187:66;5246:6;5241:3;5234:4;5226:6;5222:17;5187:66;:::i;:::-;5269:16;;;;;5002:289;-1:-1:-1;;5002:289:1:o;8063:222::-;8128:9;;;8149:10;;;8146:133;;;8201:10;8196:3;8192:20;8189:1;8182:31;8236:4;8233:1;8226:15;8264:4;8261:1;8254:15

Swarm Source

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