ETH Price: $3,479.80 (+2.11%)
Gas: 6 Gwei

Token

BRAINDEAD (BDEAD)
 

Overview

Max Total Supply

1,500,000,000,000,000,000,000,000,000 BDEAD

Holders

10

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
BRAINDEAD

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-25
*/

// 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/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/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/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/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/contracts/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/contracts/token/ERC20/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 {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

    /**
     * @dev 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: contracts/Brain Dead.sol


pragma solidity ^0.8.20;




contract BRAINDEAD is ERC20, ReentrancyGuard, Ownable {
    uint256 public feePercent = 5;
    uint256 public MAX_HOLDING = 20000000 * (10 ** decimals());
    bool public limitEnabled = true;
    uint256 private initialSupply = 1500000000 * (10 ** decimals());
    address private feeDestination = 0x5d95EC414d9fB55227B67D95E8567f7C120a8Be5;
    mapping(address => bool) public isLimitExempt;
    mapping(address => bool) public isFeeExempt;

    address[4] private distributionWallets = [
        0x5d95EC414d9fB55227B67D95E8567f7C120a8Be5, 
        0x5d95EC414d9fB55227B67D95E8567f7C120a8Be5,
        0x5d95EC414d9fB55227B67D95E8567f7C120a8Be5,
        0x5d95EC414d9fB55227B67D95E8567f7C120a8Be5
    ];

    event FeeTaken(address from, address to, uint256 amount);

    constructor() ERC20("BRAINDEAD", "BDEAD") Ownable(msg.sender) {
        uint256 distributionAmount = (initialSupply * 15) / 1000;
        uint256 totalDistribution = distributionAmount * 4;
        require(initialSupply > totalDistribution, "Distribution exceeds supply");
        _mint(msg.sender, initialSupply - totalDistribution);
        for (uint i = 0; i < distributionWallets.length; i++) {
            _mint(distributionWallets[i], distributionAmount);
        }

        isLimitExempt[msg.sender] = true;
        isLimitExempt[address(this)] = true;
        isLimitExempt[feeDestination] = true;
        isFeeExempt[msg.sender] = true;
        isFeeExempt[address(this)] = true;
        isFeeExempt[feeDestination] = true;
    }

    function setFeeDestination(address _newFeeDestination) public onlyOwner {
        require(_newFeeDestination != address(0), "New fee destination cannot be the zero address");
        feeDestination = _newFeeDestination;
        isLimitExempt[feeDestination] = true;
        isFeeExempt[feeDestination] = true;
    }

    function setFeePercent(uint256 _newFeePercent) public onlyOwner {
        require(_newFeePercent <= 100, "Fee percent cannot exceed 100");
        feePercent = _newFeePercent;
    }

    function _takeFee(address from, uint256 amount) internal returns (uint256) {
        if (!isFeeExempt[from]) {
            uint256 feeAmount = (amount * feePercent) / 100;
            _transfer(from, feeDestination, feeAmount);
            emit FeeTaken(from, feeDestination, feeAmount);
            return amount - feeAmount;
        } else {
            return amount;
        }
    }

    function setLimitExemption(address account, bool exempt) public onlyOwner {
        isLimitExempt[account] = exempt;
    }

    function setFeeExemption(address account, bool exempt) public onlyOwner {
        isFeeExempt[account] = exempt;
    }

    function enableLimit(bool _limitEnabled) public onlyOwner {
        limitEnabled = _limitEnabled;
    }

    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        if (limitEnabled && !isLimitExempt[recipient]) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING, "Recipient exceeds holding limit");
        }
        uint256 amountAfterFee = _takeFee(_msgSender(), amount);
        return super.transfer(recipient, amountAfterFee);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        if (limitEnabled && !isLimitExempt[recipient]) {
            require(balanceOf(recipient) + amount <= MAX_HOLDING, "Recipient exceeds holding limit");
        }
        uint256 amountAfterFee = _takeFee(sender, amount);
        _approve(sender, _msgSender(), currentAllowance - amount);
        return super.transferFrom(sender, recipient, amountAfterFee);
    }
}

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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeeTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_HOLDING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitEnabled","type":"bool"}],"name":"enableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeDestination","type":"address"}],"name":"setFeeDestination","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setFeeExemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeePercent","type":"uint256"}],"name":"setFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setLimitExemption","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60806040526005600755620000196200068d60201b60201c565b600a62000027919062000c36565b6301312d0062000038919062000c86565b600855600160095f6101000a81548160ff021916908315150217905550620000656200068d60201b60201c565b600a62000073919062000c36565b6359682f0062000084919062000c86565b600a55735d95ec414d9fb55227b67d95e8567f7c120a8be5600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060800160405280735d95ec414d9fb55227b67d95e8567f7c120a8be573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735d95ec414d9fb55227b67d95e8567f7c120a8be573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735d95ec414d9fb55227b67d95e8567f7c120a8be573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001735d95ec414d9fb55227b67d95e8567f7c120a8be573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600e9060046200020e92919062000a06565b503480156200021b575f80fd5b50336040518060400160405280600981526020017f425241494e4445414400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424445414400000000000000000000000000000000000000000000000000000081525081600390816200029a919062000f2b565b508060049081620002ac919062000f2b565b50505060016005819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200032a575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000321919062001052565b60405180910390fd5b6200033b816200069560201b60201c565b505f6103e8600f600a5462000351919062000c86565b6200035d91906200109a565b90505f6004826200036f919062000c86565b905080600a5411620003b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003af906200112f565b60405180910390fd5b620003d93382600a54620003cd91906200114f565b6200075860201b60201c565b5f5b600481101562000444576200042e600e82600481106200040057620003ff62001189565b5b015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200075860201b60201c565b80806200043b90620011b6565b915050620003db565b506001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050620012a3565b5f6012905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007cb575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620007c2919062001052565b60405180910390fd5b620007de5f8383620007e260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000836578060025f82825462000829919062001202565b9250508190555062000907565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620008c2578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620008b9939291906200124d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000950578060025f82825403925050819055506200099a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009f9919062001288565b60405180910390a3505050565b826004810192821562000a74579160200282015b8281111562000a73578251825f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000a1a565b5b50905062000a83919062000a87565b5090565b5b8082111562000aa0575f815f90555060010162000a88565b5090565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b2e5780860481111562000b065762000b0562000aa4565b5b600185161562000b165780820291505b808102905062000b268562000ad1565b945062000ae6565b94509492505050565b5f8262000b48576001905062000c1a565b8162000b57575f905062000c1a565b816001811462000b70576002811462000b7b5762000bb1565b600191505062000c1a565b60ff84111562000b905762000b8f62000aa4565b5b8360020a91508482111562000baa5762000ba962000aa4565b5b5062000c1a565b5060208310610133831016604e8410600b841016171562000beb5782820a90508381111562000be55762000be462000aa4565b5b62000c1a565b62000bfa848484600162000add565b9250905081840481111562000c145762000c1362000aa4565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000c428262000c21565b915062000c4f8362000c2a565b925062000c7e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b37565b905092915050565b5f62000c928262000c21565b915062000c9f8362000c21565b925082820262000caf8162000c21565b9150828204841483151762000cc95762000cc862000aa4565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000d4c57607f821691505b60208210810362000d625762000d6162000d07565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000dc67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d89565b62000dd2868362000d89565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000e1362000e0d62000e078462000c21565b62000dea565b62000c21565b9050919050565b5f819050919050565b62000e2e8362000df3565b62000e4662000e3d8262000e1a565b84845462000d95565b825550505050565b5f90565b62000e5c62000e4e565b62000e6981848462000e23565b505050565b5b8181101562000e905762000e845f8262000e52565b60018101905062000e6f565b5050565b601f82111562000edf5762000ea98162000d68565b62000eb48462000d7a565b8101602085101562000ec4578190505b62000edc62000ed38562000d7a565b83018262000e6e565b50505b505050565b5f82821c905092915050565b5f62000f015f198460080262000ee4565b1980831691505092915050565b5f62000f1b838362000ef0565b9150826002028217905092915050565b62000f368262000cd0565b67ffffffffffffffff81111562000f525762000f5162000cda565b5b62000f5e825462000d34565b62000f6b82828562000e94565b5f60209050601f83116001811462000fa1575f841562000f8c578287015190505b62000f98858262000f0e565b86555062001007565b601f19841662000fb18662000d68565b5f5b8281101562000fda5784890151825560018201915060208501945060208101905062000fb3565b8683101562000ffa578489015162000ff6601f89168262000ef0565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200103a826200100f565b9050919050565b6200104c816200102e565b82525050565b5f602082019050620010675f83018462001041565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620010a68262000c21565b9150620010b38362000c21565b925082620010c657620010c56200106d565b5b828204905092915050565b5f82825260208201905092915050565b7f446973747269627574696f6e206578636565647320737570706c7900000000005f82015250565b5f62001117601b83620010d1565b91506200112482620010e1565b602082019050919050565b5f6020820190508181035f830152620011488162001109565b9050919050565b5f6200115b8262000c21565b9150620011688362000c21565b925082820390508181111562001183576200118262000aa4565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f620011c28262000c21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620011f757620011f662000aa4565b5b600182019050919050565b5f6200120e8262000c21565b91506200121b8362000c21565b925082820190508082111562001236576200123562000aa4565b5b92915050565b620012478162000c21565b82525050565b5f606082019050620012625f83018662001041565b6200127160208301856200123c565b6200128060408301846200123c565b949350505050565b5f6020820190506200129d5f8301846200123c565b92915050565b611d5780620012b15f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063751fd179116100b6578063a9059cbb1161007a578063a9059cbb14610350578063b0c150af14610380578063d108e2a6146103b0578063dd62ed3e146103ce578063f2fde38b146103fe578063fbe532341461041a57610140565b8063751fd179146102be5780637ce3489b146102da5780637fd6f15c146102f65780638da5cb5b1461031457806395d89b411461033257610140565b80633f4218e0116101085780633f4218e0146101fe5780634463c1b21461022e5780635fcd7e501461024a5780636d800a3c1461026657806370a0823114610284578063715018a6146102b457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610436565b60405161015991906115b8565b60405180910390f35b61017c60048036038101906101779190611669565b6104c6565b60405161018991906116c1565b60405180910390f35b61019a6104e8565b6040516101a791906116e9565b60405180910390f35b6101ca60048036038101906101c59190611702565b6104f1565b6040516101d791906116c1565b60405180910390f35b6101e8610659565b6040516101f5919061176d565b60405180910390f35b61021860048036038101906102139190611786565b610661565b60405161022591906116c1565b60405180910390f35b610248600480360381019061024391906117db565b61067e565b005b610264600480360381019061025f9190611819565b6106de565b005b61026e610702565b60405161027b91906116c1565b60405180910390f35b61029e60048036038101906102999190611786565b610714565b6040516102ab91906116e9565b60405180910390f35b6102bc610759565b005b6102d860048036038101906102d391906117db565b61076c565b005b6102f460048036038101906102ef9190611844565b6107cc565b005b6102fe610822565b60405161030b91906116e9565b60405180910390f35b61031c610828565b604051610329919061187e565b60405180910390f35b61033a610850565b60405161034791906115b8565b60405180910390f35b61036a60048036038101906103659190611669565b6108e0565b60405161037791906116c1565b60405180910390f35b61039a60048036038101906103959190611786565b6109d8565b6040516103a791906116c1565b60405180910390f35b6103b86109f5565b6040516103c591906116e9565b60405180910390f35b6103e860048036038101906103e39190611897565b6109fb565b6040516103f591906116e9565b60405180910390f35b61041860048036038101906104139190611786565b610a7d565b005b610434600480360381019061042f9190611786565b610b01565b005b60606003805461044590611902565b80601f016020809104026020016040519081016040528092919081815260200182805461047190611902565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d0610ca6565b90506104dd818585610cad565b600191505092915050565b5f600254905090565b5f6104fa610cbf565b5f61050c85610507610ca6565b6109fb565b905082811015610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119a2565b60405180910390fd5b60095f9054906101000a900460ff1680156105b35750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561061157600854836105c586610714565b6105cf91906119ed565b1115610610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060790611a6a565b60405180910390fd5b5b5f61061c8685610d0e565b905061063b8661062a610ca6565b86856106369190611a88565b610cad565b610646868683610e20565b92505050610652610e4e565b9392505050565b5f6012905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610686610e58565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6106e6610e58565b8060095f6101000a81548160ff02191690831515021790555050565b60095f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610761610e58565b61076a5f610edf565b565b610774610e58565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107d4610e58565b6064811115610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b05565b60405180910390fd5b8060078190555050565b60075481565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461085f90611902565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611902565b80156108d65780601f106108ad576101008083540402835291602001916108d6565b820191905f5260205f20905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b5f6108e9610cbf565b60095f9054906101000a900460ff16801561094b5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156109a9576008548261095d85610714565b61096791906119ed565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a6a565b60405180910390fd5b5b5f6109bb6109b5610ca6565b84610d0e565b90506109c78482610fa2565b9150506109d2610e4e565b92915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a85610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aec919061187e565b60405180910390fd5b610afe81610edf565b50565b610b09610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611b93565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f33905090565b610cba8383836001610fc4565b505050565b600260055403610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611bfb565b60405180910390fd5b6002600581905550565b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610e16575f606460075484610d6e9190611c19565b610d789190611c87565b9050610da684600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611193565b7fe0e765ab26c1caf691c510426951246128b96830e49cc81d8c093fd551abac3584600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610dfa93929190611cb7565b60405180910390a18083610e0e9190611a88565b915050610e1a565b8190505b92915050565b5f80610e2a610ca6565b9050610e37858285611283565b610e42858585611193565b60019150509392505050565b6001600581905550565b610e60610ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610828565b73ffffffffffffffffffffffffffffffffffffffff1614610edd57610ea1610ca6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ed4919061187e565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610fac610ca6565b9050610fb9818585611193565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102b919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109b919061187e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561118d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118491906116e9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611203575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111fa919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611273575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161126a919061187e565b60405180910390fd5b61127e838383611315565b505050565b5f61128e84846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130f5781811015611300578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f793929190611cec565b60405180910390fd5b61130e84848484035f610fc4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365578060025f82825461135991906119ed565b92505081905550611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e593929190611cec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a578060025f82825403925050819055506114c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152191906116e9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156557808201518184015260208101905061154a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61158a8261152e565b6115948185611538565b93506115a4818560208601611548565b6115ad81611570565b840191505092915050565b5f6020820190508181035f8301526115d08184611580565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611605826115dc565b9050919050565b611615816115fb565b811461161f575f80fd5b50565b5f813590506116308161160c565b92915050565b5f819050919050565b61164881611636565b8114611652575f80fd5b50565b5f813590506116638161163f565b92915050565b5f806040838503121561167f5761167e6115d8565b5b5f61168c85828601611622565b925050602061169d85828601611655565b9150509250929050565b5f8115159050919050565b6116bb816116a7565b82525050565b5f6020820190506116d45f8301846116b2565b92915050565b6116e381611636565b82525050565b5f6020820190506116fc5f8301846116da565b92915050565b5f805f60608486031215611719576117186115d8565b5b5f61172686828701611622565b935050602061173786828701611622565b925050604061174886828701611655565b9150509250925092565b5f60ff82169050919050565b61176781611752565b82525050565b5f6020820190506117805f83018461175e565b92915050565b5f6020828403121561179b5761179a6115d8565b5b5f6117a884828501611622565b91505092915050565b6117ba816116a7565b81146117c4575f80fd5b50565b5f813590506117d5816117b1565b92915050565b5f80604083850312156117f1576117f06115d8565b5b5f6117fe85828601611622565b925050602061180f858286016117c7565b9150509250929050565b5f6020828403121561182e5761182d6115d8565b5b5f61183b848285016117c7565b91505092915050565b5f60208284031215611859576118586115d8565b5b5f61186684828501611655565b91505092915050565b611878816115fb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f80604083850312156118ad576118ac6115d8565b5b5f6118ba85828601611622565b92505060206118cb85828601611622565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61198c602883611538565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119f782611636565b9150611a0283611636565b9250828201905080821115611a1a57611a196119c0565b5b92915050565b7f526563697069656e74206578636565647320686f6c64696e67206c696d6974005f82015250565b5f611a54601f83611538565b9150611a5f82611a20565b602082019050919050565b5f6020820190508181035f830152611a8181611a48565b9050919050565b5f611a9282611636565b9150611a9d83611636565b9250828203905081811115611ab557611ab46119c0565b5b92915050565b7f4665652070657263656e742063616e6e6f7420657863656564203130300000005f82015250565b5f611aef601d83611538565b9150611afa82611abb565b602082019050919050565b5f6020820190508181035f830152611b1c81611ae3565b9050919050565b7f4e6577206665652064657374696e6174696f6e2063616e6e6f742062652074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f611b7d602e83611538565b9150611b8882611b23565b604082019050919050565b5f6020820190508181035f830152611baa81611b71565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611be5601f83611538565b9150611bf082611bb1565b602082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b5f611c2382611636565b9150611c2e83611636565b9250828202611c3c81611636565b91508282048414831517611c5357611c526119c0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c9182611636565b9150611c9c83611636565b925082611cac57611cab611c5a565b5b828204905092915050565b5f606082019050611cca5f83018661186f565b611cd7602083018561186f565b611ce460408301846116da565b949350505050565b5f606082019050611cff5f83018661186f565b611d0c60208301856116da565b611d1960408301846116da565b94935050505056fea26469706673582212209f8ef24258fcf700f868bd8df8259ab5ba2496e9ea11258540d50c20db1e9a0a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063751fd179116100b6578063a9059cbb1161007a578063a9059cbb14610350578063b0c150af14610380578063d108e2a6146103b0578063dd62ed3e146103ce578063f2fde38b146103fe578063fbe532341461041a57610140565b8063751fd179146102be5780637ce3489b146102da5780637fd6f15c146102f65780638da5cb5b1461031457806395d89b411461033257610140565b80633f4218e0116101085780633f4218e0146101fe5780634463c1b21461022e5780635fcd7e501461024a5780636d800a3c1461026657806370a0823114610284578063715018a6146102b457610140565b806306fdde0314610144578063095ea7b31461016257806318160ddd1461019257806323b872dd146101b0578063313ce567146101e0575b5f80fd5b61014c610436565b60405161015991906115b8565b60405180910390f35b61017c60048036038101906101779190611669565b6104c6565b60405161018991906116c1565b60405180910390f35b61019a6104e8565b6040516101a791906116e9565b60405180910390f35b6101ca60048036038101906101c59190611702565b6104f1565b6040516101d791906116c1565b60405180910390f35b6101e8610659565b6040516101f5919061176d565b60405180910390f35b61021860048036038101906102139190611786565b610661565b60405161022591906116c1565b60405180910390f35b610248600480360381019061024391906117db565b61067e565b005b610264600480360381019061025f9190611819565b6106de565b005b61026e610702565b60405161027b91906116c1565b60405180910390f35b61029e60048036038101906102999190611786565b610714565b6040516102ab91906116e9565b60405180910390f35b6102bc610759565b005b6102d860048036038101906102d391906117db565b61076c565b005b6102f460048036038101906102ef9190611844565b6107cc565b005b6102fe610822565b60405161030b91906116e9565b60405180910390f35b61031c610828565b604051610329919061187e565b60405180910390f35b61033a610850565b60405161034791906115b8565b60405180910390f35b61036a60048036038101906103659190611669565b6108e0565b60405161037791906116c1565b60405180910390f35b61039a60048036038101906103959190611786565b6109d8565b6040516103a791906116c1565b60405180910390f35b6103b86109f5565b6040516103c591906116e9565b60405180910390f35b6103e860048036038101906103e39190611897565b6109fb565b6040516103f591906116e9565b60405180910390f35b61041860048036038101906104139190611786565b610a7d565b005b610434600480360381019061042f9190611786565b610b01565b005b60606003805461044590611902565b80601f016020809104026020016040519081016040528092919081815260200182805461047190611902565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d0610ca6565b90506104dd818585610cad565b600191505092915050565b5f600254905090565b5f6104fa610cbf565b5f61050c85610507610ca6565b6109fb565b905082811015610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119a2565b60405180910390fd5b60095f9054906101000a900460ff1680156105b35750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561061157600854836105c586610714565b6105cf91906119ed565b1115610610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060790611a6a565b60405180910390fd5b5b5f61061c8685610d0e565b905061063b8661062a610ca6565b86856106369190611a88565b610cad565b610646868683610e20565b92505050610652610e4e565b9392505050565b5f6012905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610686610e58565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6106e6610e58565b8060095f6101000a81548160ff02191690831515021790555050565b60095f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610761610e58565b61076a5f610edf565b565b610774610e58565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107d4610e58565b6064811115610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90611b05565b60405180910390fd5b8060078190555050565b60075481565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461085f90611902565b80601f016020809104026020016040519081016040528092919081815260200182805461088b90611902565b80156108d65780601f106108ad576101008083540402835291602001916108d6565b820191905f5260205f20905b8154815290600101906020018083116108b957829003601f168201915b5050505050905090565b5f6108e9610cbf565b60095f9054906101000a900460ff16801561094b5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156109a9576008548261095d85610714565b61096791906119ed565b11156109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a6a565b60405180910390fd5b5b5f6109bb6109b5610ca6565b84610d0e565b90506109c78482610fa2565b9150506109d2610e4e565b92915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a85610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af5575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aec919061187e565b60405180910390fd5b610afe81610edf565b50565b610b09610e58565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611b93565b60405180910390fd5b80600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f33905090565b610cba8383836001610fc4565b505050565b600260055403610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611bfb565b60405180910390fd5b6002600581905550565b5f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610e16575f606460075484610d6e9190611c19565b610d789190611c87565b9050610da684600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611193565b7fe0e765ab26c1caf691c510426951246128b96830e49cc81d8c093fd551abac3584600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610dfa93929190611cb7565b60405180910390a18083610e0e9190611a88565b915050610e1a565b8190505b92915050565b5f80610e2a610ca6565b9050610e37858285611283565b610e42858585611193565b60019150509392505050565b6001600581905550565b610e60610ca6565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610828565b73ffffffffffffffffffffffffffffffffffffffff1614610edd57610ea1610ca6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ed4919061187e565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80610fac610ca6565b9050610fb9818585611193565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611034575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161102b919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110a4575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161109b919061187e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561118d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161118491906116e9565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611203575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111fa919061187e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611273575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161126a919061187e565b60405180910390fd5b61127e838383611315565b505050565b5f61128e84846109fb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461130f5781811015611300578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f793929190611cec565b60405180910390fd5b61130e84848484035f610fc4565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611365578060025f82825461135991906119ed565b92505081905550611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156113ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113e593929190611cec565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147a578060025f82825403925050819055506114c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161152191906116e9565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561156557808201518184015260208101905061154a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61158a8261152e565b6115948185611538565b93506115a4818560208601611548565b6115ad81611570565b840191505092915050565b5f6020820190508181035f8301526115d08184611580565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611605826115dc565b9050919050565b611615816115fb565b811461161f575f80fd5b50565b5f813590506116308161160c565b92915050565b5f819050919050565b61164881611636565b8114611652575f80fd5b50565b5f813590506116638161163f565b92915050565b5f806040838503121561167f5761167e6115d8565b5b5f61168c85828601611622565b925050602061169d85828601611655565b9150509250929050565b5f8115159050919050565b6116bb816116a7565b82525050565b5f6020820190506116d45f8301846116b2565b92915050565b6116e381611636565b82525050565b5f6020820190506116fc5f8301846116da565b92915050565b5f805f60608486031215611719576117186115d8565b5b5f61172686828701611622565b935050602061173786828701611622565b925050604061174886828701611655565b9150509250925092565b5f60ff82169050919050565b61176781611752565b82525050565b5f6020820190506117805f83018461175e565b92915050565b5f6020828403121561179b5761179a6115d8565b5b5f6117a884828501611622565b91505092915050565b6117ba816116a7565b81146117c4575f80fd5b50565b5f813590506117d5816117b1565b92915050565b5f80604083850312156117f1576117f06115d8565b5b5f6117fe85828601611622565b925050602061180f858286016117c7565b9150509250929050565b5f6020828403121561182e5761182d6115d8565b5b5f61183b848285016117c7565b91505092915050565b5f60208284031215611859576118586115d8565b5b5f61186684828501611655565b91505092915050565b611878816115fb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f80604083850312156118ad576118ac6115d8565b5b5f6118ba85828601611622565b92505060206118cb85828601611622565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061191957607f821691505b60208210810361192c5761192b6118d5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61198c602883611538565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119f782611636565b9150611a0283611636565b9250828201905080821115611a1a57611a196119c0565b5b92915050565b7f526563697069656e74206578636565647320686f6c64696e67206c696d6974005f82015250565b5f611a54601f83611538565b9150611a5f82611a20565b602082019050919050565b5f6020820190508181035f830152611a8181611a48565b9050919050565b5f611a9282611636565b9150611a9d83611636565b9250828203905081811115611ab557611ab46119c0565b5b92915050565b7f4665652070657263656e742063616e6e6f7420657863656564203130300000005f82015250565b5f611aef601d83611538565b9150611afa82611abb565b602082019050919050565b5f6020820190508181035f830152611b1c81611ae3565b9050919050565b7f4e6577206665652064657374696e6174696f6e2063616e6e6f742062652074685f8201527f65207a65726f2061646472657373000000000000000000000000000000000000602082015250565b5f611b7d602e83611538565b9150611b8882611b23565b604082019050919050565b5f6020820190508181035f830152611baa81611b71565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611be5601f83611538565b9150611bf082611bb1565b602082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b5f611c2382611636565b9150611c2e83611636565b9250828202611c3c81611636565b91508282048414831517611c5357611c526119c0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611c9182611636565b9150611c9c83611636565b925082611cac57611cab611c5a565b5b828204905092915050565b5f606082019050611cca5f83018661186f565b611cd7602083018561186f565b611ce460408301846116da565b949350505050565b5f606082019050611cff5f83018661186f565b611d0c60208301856116da565b611d1960408301846116da565b94935050505056fea26469706673582212209f8ef24258fcf700f868bd8df8259ab5ba2496e9ea11258540d50c20db1e9a0a64736f6c63430008140033

Deployed Bytecode Sourcemap

29121:3916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22011:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20820:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32379:655;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20671:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29525:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31596:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31856:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29283:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20982:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13331:103;;;:::i;:::-;;31728:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31001:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29182:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12656:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19928:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31969:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29473:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29218:58;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21550:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13589:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30673:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19718:91;19763:13;19796:5;19789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19718:91;:::o;22011:190::-;22084:4;22101:13;22117:12;:10;:12::i;:::-;22101:28;;22140:31;22149:5;22156:7;22165:5;22140:8;:31::i;:::-;22189:4;22182:11;;;22011:190;;;;:::o;20820:99::-;20872:7;20899:12;;20892:19;;20820:99;:::o;32379:655::-;32490:4;2345:21;:19;:21::i;:::-;32507:24:::1;32534:31;32544:6;32552:12;:10;:12::i;:::-;32534:9;:31::i;:::-;32507:58;;32604:6;32584:16;:26;;32576:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;32670:12;;;;;;;;;;;:41;;;;;32687:13;:24;32701:9;32687:24;;;;;;;;;;;;;;;;;;;;;;;;;32686:25;32670:41;32666:162;;;32769:11;;32759:6;32736:20;32746:9;32736;:20::i;:::-;:29;;;;:::i;:::-;:44;;32728:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;32666:162;32838:22;32863:24;32872:6;32880;32863:8;:24::i;:::-;32838:49;;32898:57;32907:6;32915:12;:10;:12::i;:::-;32948:6;32929:16;:25;;;;:::i;:::-;32898:8;:57::i;:::-;32973:53;32992:6;33000:9;33011:14;32973:18;:53::i;:::-;32966:60;;;;2389:20:::0;:18;:20::i;:::-;32379:655;;;;;:::o;20671:84::-;20720:5;20745:2;20738:9;;20671:84;:::o;29525:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;31596:124::-;12542:13;:11;:13::i;:::-;31706:6:::1;31681:13;:22;31695:7;31681:22;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;31596:124:::0;;:::o;31856:105::-;12542:13;:11;:13::i;:::-;31940::::1;31925:12;;:28;;;;;;;;;;;;;;;;;;31856:105:::0;:::o;29283:31::-;;;;;;;;;;;;;:::o;20982:118::-;21047:7;21074:9;:18;21084:7;21074:18;;;;;;;;;;;;;;;;21067:25;;20982:118;;;:::o;13331:103::-;12542:13;:11;:13::i;:::-;13396:30:::1;13423:1;13396:18;:30::i;:::-;13331:103::o:0;31728:120::-;12542:13;:11;:13::i;:::-;31834:6:::1;31811:11;:20;31823:7;31811:20;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31728:120:::0;;:::o;31001:184::-;12542:13;:11;:13::i;:::-;31102:3:::1;31084:14;:21;;31076:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31163:14;31150:10;:27;;;;31001:184:::0;:::o;29182:29::-;;;;:::o;12656:87::-;12702:7;12729:6;;;;;;;;;;;12722:13;;12656:87;:::o;19928:95::-;19975:13;20008:7;20001:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19928:95;:::o;31969:402::-;32060:4;2345:21;:19;:21::i;:::-;32081:12:::1;;;;;;;;;;;:41;;;;;32098:13;:24;32112:9;32098:24;;;;;;;;;;;;;;;;;;;;;;;;;32097:25;32081:41;32077:162;;;32180:11;;32170:6;32147:20;32157:9;32147;:20::i;:::-;:29;;;;:::i;:::-;:44;;32139:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;32077:162;32249:22;32274:30;32283:12;:10;:12::i;:::-;32297:6;32274:8;:30::i;:::-;32249:55;;32322:41;32337:9;32348:14;32322;:41::i;:::-;32315:48;;;2389:20:::0;:18;:20::i;:::-;31969:402;;;;:::o;29473:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;29218:58::-;;;;:::o;21550:142::-;21630:7;21657:11;:18;21669:5;21657:18;;;;;;;;;;;;;;;:27;21676:7;21657:27;;;;;;;;;;;;;;;;21650:34;;21550:142;;;;:::o;13589:220::-;12542:13;:11;:13::i;:::-;13694:1:::1;13674:22;;:8;:22;;::::0;13670:93:::1;;13748:1;13720:31;;;;;;;;;;;:::i;:::-;;;;;;;;13670:93;13773:28;13792:8;13773:18;:28::i;:::-;13589:220:::0;:::o;30673:320::-;12542:13;:11;:13::i;:::-;30794:1:::1;30764:32;;:18;:32;;::::0;30756:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30875:18;30858:14;;:35;;;;;;;;;;;;;;;;;;30936:4;30904:13;:29;30918:14;;;;;;;;;;;30904:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30981:4;30951:11;:27;30963:14;;;;;;;;;;;30951:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;30673:320:::0;:::o;10665:98::-;10718:7;10745:10;10738:17;;10665:98;:::o;26838:130::-;26923:37;26932:5;26939:7;26948:5;26955:4;26923:8;:37::i;:::-;26838:130;;;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;31193:395::-;31259:7;31284:11;:17;31296:4;31284:17;;;;;;;;;;;;;;;;;;;;;;;;;31279:302;;31318:17;31362:3;31348:10;;31339:6;:19;;;;:::i;:::-;31338:27;;;;:::i;:::-;31318:47;;31380:42;31390:4;31396:14;;;;;;;;;;;31412:9;31380;:42::i;:::-;31442:41;31451:4;31457:14;;;;;;;;;;;31473:9;31442:41;;;;;;;;:::i;:::-;;;;;;;;31514:9;31505:6;:18;;;;:::i;:::-;31498:25;;;;;31279:302;31563:6;31556:13;;31193:395;;;;;:::o;22779:249::-;22866:4;22883:15;22901:12;:10;:12::i;:::-;22883:30;;22924:37;22940:4;22946:7;22955:5;22924:15;:37::i;:::-;22972:26;22982:4;22988:2;22992:5;22972:9;:26::i;:::-;23016:4;23009:11;;;22779:249;;;;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;12821:166::-;12892:12;:10;:12::i;:::-;12881:23;;:7;:5;:7::i;:::-;:23;;;12877:103;;12955:12;:10;:12::i;:::-;12928:40;;;;;;;;;;;:::i;:::-;;;;;;;;12877:103;12821:166::o;13969:191::-;14043:16;14062:6;;;;;;;;;;;14043:25;;14088:8;14079:6;;:17;;;;;;;;;;;;;;;;;;14143:8;14112:40;;14133:8;14112:40;;;;;;;;;;;;14032:128;13969:191;:::o;21305:182::-;21374:4;21391:13;21407:12;:10;:12::i;:::-;21391:28;;21430:27;21440:5;21447:2;21451:5;21430:9;:27::i;:::-;21475:4;21468:11;;;21305:182;;;;:::o;27819:443::-;27949:1;27932:19;;:5;:19;;;27928:91;;28004:1;27975:32;;;;;;;;;;;:::i;:::-;;;;;;;;27928:91;28052:1;28033:21;;:7;:21;;;28029:92;;28106:1;28078:31;;;;;;;;;;;:::i;:::-;;;;;;;;28029:92;28161:5;28131:11;:18;28143:5;28131:18;;;;;;;;;;;;;;;:27;28150:7;28131:27;;;;;;;;;;;;;;;:35;;;;28181:9;28177:78;;;28228:7;28212:31;;28221:5;28212:31;;;28237:5;28212:31;;;;;;:::i;:::-;;;;;;;;28177:78;27819:443;;;;:::o;23413:308::-;23513:1;23497:18;;:4;:18;;;23493:88;;23566:1;23539:30;;;;;;;;;;;:::i;:::-;;;;;;;;23493:88;23609:1;23595:16;;:2;:16;;;23591:88;;23664:1;23635:32;;;;;;;;;;;:::i;:::-;;;;;;;;23591:88;23689:24;23697:4;23703:2;23707:5;23689:7;:24::i;:::-;23413:308;;;:::o;28554:487::-;28654:24;28681:25;28691:5;28698:7;28681:9;:25::i;:::-;28654:52;;28741:17;28721:16;:37;28717:317;;28798:5;28779:16;:24;28775:132;;;28858:7;28867:16;28885:5;28831:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;28775:132;28950:57;28959:5;28966:7;28994:5;28975:16;:24;29001:5;28950:8;:57::i;:::-;28717:317;28643:398;28554:487;;;:::o;24045:1135::-;24151:1;24135:18;;:4;:18;;;24131:552;;24289:5;24273:12;;:21;;;;;;;:::i;:::-;;;;;;;;24131:552;;;24327:19;24349:9;:15;24359:4;24349:15;;;;;;;;;;;;;;;;24327:37;;24397:5;24383:11;:19;24379:117;;;24455:4;24461:11;24474:5;24430:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;24379:117;24651:5;24637:11;:19;24619:9;:15;24629:4;24619:15;;;;;;;;;;;;;;;:37;;;;24312:371;24131:552;24713:1;24699:16;;:2;:16;;;24695:435;;24881:5;24865:12;;:21;;;;;;;;;;;24695:435;;;25098:5;25081:9;:13;25091:2;25081:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;24695:435;25162:2;25147:25;;25156:4;25147:25;;;25166:5;25147:25;;;;;;:::i;:::-;;;;;;;;24045:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853: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:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:468::-;5514:6;5522;5571:2;5559:9;5550:7;5546:23;5542:32;5539:119;;;5577:79;;:::i;:::-;5539:119;5697:1;5722:53;5767:7;5758:6;5747:9;5743:22;5722:53;:::i;:::-;5712:63;;5668:117;5824:2;5850:50;5892:7;5883:6;5872:9;5868:22;5850:50;:::i;:::-;5840:60;;5795:115;5449:468;;;;;:::o;5923:323::-;5979:6;6028:2;6016:9;6007:7;6003:23;5999:32;5996:119;;;6034:79;;:::i;:::-;5996:119;6154:1;6179:50;6221:7;6212:6;6201:9;6197:22;6179:50;:::i;:::-;6169:60;;6125:114;5923:323;;;;:::o;6252:329::-;6311:6;6360:2;6348:9;6339:7;6335:23;6331:32;6328:119;;;6366:79;;:::i;:::-;6328:119;6486:1;6511:53;6556:7;6547:6;6536:9;6532:22;6511:53;:::i;:::-;6501:63;;6457:117;6252:329;;;;:::o;6587:118::-;6674:24;6692:5;6674:24;:::i;:::-;6669:3;6662:37;6587:118;;:::o;6711:222::-;6804:4;6842:2;6831:9;6827:18;6819:26;;6855:71;6923:1;6912:9;6908:17;6899:6;6855:71;:::i;:::-;6711:222;;;;:::o;6939:474::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:53;7388:7;7379:6;7368:9;7364:22;7343:53;:::i;:::-;7333:63;;7288:118;6939:474;;;;;:::o;7419:180::-;7467:77;7464:1;7457:88;7564:4;7561:1;7554:15;7588:4;7585:1;7578:15;7605:320;7649:6;7686:1;7680:4;7676:12;7666:22;;7733:1;7727:4;7723:12;7754:18;7744:81;;7810:4;7802:6;7798:17;7788:27;;7744:81;7872:2;7864:6;7861:14;7841:18;7838:38;7835:84;;7891:18;;:::i;:::-;7835:84;7656:269;7605:320;;;:::o;7931:227::-;8071:34;8067:1;8059:6;8055:14;8048:58;8140:10;8135:2;8127:6;8123:15;8116:35;7931:227;:::o;8164:366::-;8306:3;8327:67;8391:2;8386:3;8327:67;:::i;:::-;8320:74;;8403:93;8492:3;8403:93;:::i;:::-;8521:2;8516:3;8512:12;8505:19;;8164:366;;;:::o;8536:419::-;8702:4;8740:2;8729:9;8725:18;8717:26;;8789:9;8783:4;8779:20;8775:1;8764:9;8760:17;8753:47;8817:131;8943:4;8817:131;:::i;:::-;8809:139;;8536:419;;;:::o;8961:180::-;9009:77;9006:1;8999:88;9106:4;9103:1;9096:15;9130:4;9127:1;9120:15;9147:191;9187:3;9206:20;9224:1;9206:20;:::i;:::-;9201:25;;9240:20;9258:1;9240:20;:::i;:::-;9235:25;;9283:1;9280;9276:9;9269:16;;9304:3;9301:1;9298:10;9295:36;;;9311:18;;:::i;:::-;9295:36;9147:191;;;;:::o;9344:181::-;9484:33;9480:1;9472:6;9468:14;9461:57;9344:181;:::o;9531:366::-;9673:3;9694:67;9758:2;9753:3;9694:67;:::i;:::-;9687:74;;9770:93;9859:3;9770:93;:::i;:::-;9888:2;9883:3;9879:12;9872:19;;9531:366;;;:::o;9903:419::-;10069:4;10107:2;10096:9;10092:18;10084:26;;10156:9;10150:4;10146:20;10142:1;10131:9;10127:17;10120:47;10184:131;10310:4;10184:131;:::i;:::-;10176:139;;9903:419;;;:::o;10328:194::-;10368:4;10388:20;10406:1;10388:20;:::i;:::-;10383:25;;10422:20;10440:1;10422:20;:::i;:::-;10417:25;;10466:1;10463;10459:9;10451:17;;10490:1;10484:4;10481:11;10478:37;;;10495:18;;:::i;:::-;10478:37;10328:194;;;;:::o;10528:179::-;10668:31;10664:1;10656:6;10652:14;10645:55;10528:179;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:419::-;11251:4;11289:2;11278:9;11274:18;11266:26;;11338:9;11332:4;11328:20;11324:1;11313:9;11309:17;11302:47;11366:131;11492:4;11366:131;:::i;:::-;11358:139;;11085:419;;;:::o;11510:233::-;11650:34;11646:1;11638:6;11634:14;11627:58;11719:16;11714:2;11706:6;11702:15;11695:41;11510:233;:::o;11749:366::-;11891:3;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11749:366;;;:::o;12121:419::-;12287:4;12325:2;12314:9;12310:18;12302:26;;12374:9;12368:4;12364:20;12360:1;12349:9;12345:17;12338:47;12402:131;12528:4;12402:131;:::i;:::-;12394:139;;12121:419;;;:::o;12546:181::-;12686:33;12682:1;12674:6;12670:14;12663:57;12546:181;:::o;12733:366::-;12875:3;12896:67;12960:2;12955:3;12896:67;:::i;:::-;12889:74;;12972:93;13061:3;12972:93;:::i;:::-;13090:2;13085:3;13081:12;13074:19;;12733:366;;;:::o;13105:419::-;13271:4;13309:2;13298:9;13294:18;13286:26;;13358:9;13352:4;13348:20;13344:1;13333:9;13329:17;13322:47;13386:131;13512:4;13386:131;:::i;:::-;13378:139;;13105:419;;;:::o;13530:410::-;13570:7;13593:20;13611:1;13593:20;:::i;:::-;13588:25;;13627:20;13645:1;13627:20;:::i;:::-;13622:25;;13682:1;13679;13675:9;13704:30;13722:11;13704:30;:::i;:::-;13693:41;;13883:1;13874:7;13870:15;13867:1;13864:22;13844:1;13837:9;13817:83;13794:139;;13913:18;;:::i;:::-;13794:139;13578:362;13530:410;;;;:::o;13946:180::-;13994:77;13991:1;13984:88;14091:4;14088:1;14081:15;14115:4;14112:1;14105:15;14132:185;14172:1;14189:20;14207:1;14189:20;:::i;:::-;14184:25;;14223:20;14241:1;14223:20;:::i;:::-;14218:25;;14262:1;14252:35;;14267:18;;:::i;:::-;14252:35;14309:1;14306;14302:9;14297:14;;14132:185;;;;:::o;14323:442::-;14472:4;14510:2;14499:9;14495:18;14487:26;;14523:71;14591:1;14580:9;14576:17;14567:6;14523:71;:::i;:::-;14604:72;14672:2;14661:9;14657:18;14648:6;14604:72;:::i;:::-;14686;14754:2;14743:9;14739:18;14730:6;14686:72;:::i;:::-;14323:442;;;;;;:::o;14771:::-;14920:4;14958:2;14947:9;14943:18;14935:26;;14971:71;15039:1;15028:9;15024:17;15015:6;14971:71;:::i;:::-;15052:72;15120:2;15109:9;15105:18;15096:6;15052:72;:::i;:::-;15134;15202:2;15191:9;15187:18;15178:6;15134:72;:::i;:::-;14771:442;;;;;;:::o

Swarm Source

ipfs://9f8ef24258fcf700f868bd8df8259ab5ba2496e9ea11258540d50c20db1e9a0a
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.