ETH Price: $3,473.34 (+2.39%)

Token

All for one SHIBA (ALSHIB)
 

Overview

Max Total Supply

10,001,200,000,000 ALSHIB

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,026,294.067 ALSHIB

Value
$0.00
0x00fcaa31a00ca13e2b2f7b28086e8ebbe5eda5c9
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:
AlshibToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-03
*/

/*
    Website: https://allforoneshiba.com
    Telegram: https://t.me/allforoneshiba
    Twitter: https://twitter.com/allforoneshiba
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

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

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



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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



pragma solidity ^0.8.0;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;




/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

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



pragma solidity ^0.8.0;



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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: erc-payable-token/contracts/token/ERC1363/IERC1363.sol



pragma solidity ^0.8.0;



/**
 * @title IERC1363 Interface
 * @dev Interface for a Payable Token contract as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363 is IERC20, IERC165 {

    /**
     * @notice Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferAndCall(address recipient, uint256 amount) external returns (bool);

    /**
     * @notice Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `recipient`
     * @return true unless throwing
     */
    function transferAndCall(address recipient, uint256 amount, bytes calldata data) external returns (bool);

    /**
     * @notice Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param sender address The address which you want to send tokens from
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @notice Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param sender address The address which you want to send tokens from
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `recipient`
     * @return true unless throwing
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount, bytes calldata data) external returns (bool);

    /**
     * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * 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
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     */
    function approveAndCall(address spender, uint256 amount) external returns (bool);

    /**
     * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * 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
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format, sent in call to `spender`
     */
    function approveAndCall(address spender, uint256 amount, bytes calldata data) external returns (bool);
}

// File: erc-payable-token/contracts/token/ERC1363/IERC1363Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Receiver Interface
 * @dev Interface for any contract that wants to support transferAndCall or transferFromAndCall
 *  from ERC1363 token contracts as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363Receiver {

    /**
     * @notice Handle the receipt of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the
     * transfer. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param operator address The address which called `transferAndCall` or `transferFromAndCall` function
     * @param sender address The address which are token transferred from
     * @param amount uint256 The amount of tokens transferred
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` unless throwing
     */
    function onTransferReceived(address operator, address sender, uint256 amount, bytes calldata data) external returns (bytes4);
}

// File: erc-payable-token/contracts/token/ERC1363/IERC1363Spender.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Spender Interface
 * @dev Interface for any contract that wants to support approveAndCall
 *  from ERC1363 token contracts as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363Spender {

    /**
     * @notice Handle the approval of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after an `approve`. This function MAY throw to revert and reject the
     * approval. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param sender address The address which called `approveAndCall` function
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` unless throwing
     */
    function onApprovalReceived(address sender, uint256 amount, bytes calldata data) external returns (bytes4);
}

// File: erc-payable-token/contracts/token/ERC1363/ERC1363.sol



pragma solidity ^0.8.0;







/**
 * @title ERC1363
 * @dev Implementation of an ERC1363 interface
 */
abstract contract ERC1363 is ERC20, IERC1363, ERC165 {
    using Address for address;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1363).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(address recipient, uint256 amount) public virtual override returns (bool) {
        return transferAndCall(recipient, amount, "");
    }

    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to
     * @param amount The amount to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(address recipient, uint256 amount, bytes memory data) public virtual override returns (bool) {
        transfer(recipient, amount);
        require(_checkAndCallTransfer(_msgSender(), recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        return transferFromAndCall(sender, recipient, amount, "");
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(address sender, address recipient, uint256 amount, bytes memory data) public virtual override returns (bool) {
        transferFrom(sender, recipient, amount);
        require(_checkAndCallTransfer(sender, recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts");
        return true;
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to
     * @param amount The amount allowed to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(address spender, uint256 amount) public virtual override returns (bool) {
        return approveAndCall(spender, amount, "");
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to.
     * @param amount The amount allowed to be transferred.
     * @param data Additional data with no specified format.
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(address spender, uint256 amount, bytes memory data) public virtual override returns (bool) {
        approve(spender, amount);
        require(_checkAndCallApprove(spender, amount, data), "ERC1363: _checkAndCallApprove reverts");
        return true;
    }

    /**
     * @dev Internal function to invoke `onTransferReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param sender address Representing the previous owner of the given token value
     * @param recipient address Target address that will receive the tokens
     * @param amount uint256 The amount mount of tokens to be transferred
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallTransfer(address sender, address recipient, uint256 amount, bytes memory data) internal virtual returns (bool) {
        if (!recipient.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Receiver(recipient).onTransferReceived(
            _msgSender(), sender, amount, data
        );
        return (retval == IERC1363Receiver(recipient).onTransferReceived.selector);
    }

    /**
     * @dev Internal function to invoke `onApprovalReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallApprove(address spender, uint256 amount, bytes memory data) internal virtual returns (bool) {
        if (!spender.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Spender(spender).onApprovalReceived(
            _msgSender(), amount, data
        );
        return (retval == IERC1363Spender(spender).onApprovalReceived.selector);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: eth-token-recover/contracts/TokenRecover.sol



pragma solidity ^0.8.0;



/**
 * @title TokenRecover
 * @dev Allows owner to recover any ERC20 sent into the contract
 */
contract TokenRecover is Ownable {

    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }
}

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {
    uint8 immutable private _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

// File: contracts/token/ERC20/behaviours/ERC20Mintable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Mintable
 * @dev Implementation of the ERC20Mintable. Extension of {ERC20} that adds a minting behaviour.
 */
abstract contract ERC20Mintable is ERC20 {

    // indicates if minting is finished
    bool private _mintingFinished = false;

    /**
     * @dev Emitted during finish minting
     */
    event MintFinished();

    /**
     * @dev Tokens can be minted only before minting finished.
     */
    modifier canMint() {
        require(!_mintingFinished, "ERC20Mintable: minting is finished");
        _;
    }

    /**
     * @return if minting is finished or not.
     */
    function mintingFinished() external view returns (bool) {
        return _mintingFinished;
    }

    /**
     * @dev Function to mint tokens.
     *
     * WARNING: it allows everyone to mint new tokens. Access controls MUST be defined in derived contracts.
     *
     * @param account The address that will receive the minted tokens
     * @param amount The amount of tokens to mint
     */
    function mint(address account, uint256 amount) external canMint {
        _mint(account, amount);
    }

    /**
     * @dev Function to stop minting new tokens.
     *
     * WARNING: it allows everyone to finish minting. Access controls MUST be defined in derived contracts.
     */
    function finishMinting() external canMint {
        _finishMinting();
    }

    /**
     * @dev Function to stop minting new tokens.
     */
    function _finishMinting() internal virtual {
        _mintingFinished = true;

        emit MintFinished();
    }
}

// File: contracts/service/ServicePayer.sol



pragma solidity ^0.8.0;

interface IPayable {
    function pay(string memory serviceName) external payable;
}

/**
 * @title ServicePayer
 * @dev Implementation of the ServicePayer
 */
abstract contract ServicePayer {

    constructor (address payable receiver, string memory serviceName) payable {
        IPayable(receiver).pay{value: msg.value}(serviceName);
    }
}

// File: contracts/token/ERC20/ERC20Token.sol



pragma solidity ^0.8.0;

/**
 * @title ERC20Token
 * @dev Implementation of the ERC20Token
 */
contract AlshibToken is ERC20Decimals, ERC20Mintable, ERC20Burnable, ERC1363, TokenRecover, ServicePayer {

    constructor (
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 initialBalance_,
        address payable feeReceiver_
    )
        ERC20(name_, symbol_)
        ERC20Decimals(decimals_)
        ServicePayer(feeReceiver_, "ERC20Token")
        payable
    {
        _mint(_msgSender(), initialBalance_);
    }

    function decimals() public view virtual override(ERC20, ERC20Decimals) returns (uint8) {
        return super.decimals();
    }

    /**
     * @dev Function to mint tokens.
     *
     * NOTE: restricting access to addresses with MINTER role. See {ERC20Mintable-mint}.
     *
     * @param account The address that will receive the minted tokens
     * @param amount The amount of tokens to mint
     */
    function _mint(address account, uint256 amount) internal override onlyOwner {
        super._mint(account, amount);
    }

    /**
     * @dev Function to stop minting new tokens.
     *
     * NOTE: restricting access to owner only. See {ERC20Mintable-finishMinting}.
     */
    function _finishMinting() internal override onlyOwner {
        super._finishMinting();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"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":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinished","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060408190526005805460ff1916905562001d32388190039081908339810160408190526200002f916200043a565b806040518060400160405280600a81526020016922a92199182a37b5b2b760b11b81525084878781600390805190602001906200006e92919062000305565b5080516200008490600490602084019062000305565b50505060f81b7fff00000000000000000000000000000000000000000000000000000000000000166080526000620000b93390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040516315b36b9760e11b81526001600160a01b03831690632b66d72e9034906200013f908590600401620004e5565b6000604051808303818588803b1580156200015957600080fd5b505af11580156200016e573d6000803e3d6000fd5b5050505050505062000190620001896200019b60201b60201c565b836200019f565b5050505050620005c5565b3390565b6005546001600160a01b03610100909104163314620002055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6200021c82826200022060201b62000b181760201c565b5050565b6001600160a01b038216620002785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001fc565b80600260008282546200028c91906200051a565b90915550506001600160a01b03821660009081526020819052604081208054839290620002bb9084906200051a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620003139062000572565b90600052602060002090601f01602090048101928262000337576000855562000382565b82601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b600082601f830112620003bc578081fd5b81516001600160401b0380821115620003d957620003d9620005af565b604051601f8301601f19908116603f01168101908282118183101715620004045762000404620005af565b816040528381528660208588010111156200041d578485fd5b620004308460208301602089016200053f565b9695505050505050565b600080600080600060a0868803121562000452578081fd5b85516001600160401b038082111562000469578283fd5b6200047789838a01620003ab565b965060208801519150808211156200048d578283fd5b506200049c88828901620003ab565b945050604086015160ff81168114620004b3578182fd5b6060870151608088015191945092506001600160a01b0381168114620004d7578182fd5b809150509295509295909350565b6020815260008251806020840152620005068160408501602087016200053f565b601f01601f19169190910160400192915050565b600082198211156200053a57634e487b7160e01b81526011600452602481fd5b500190565b60005b838110156200055c57818101518382015260200162000542565b838111156200056c576000848401525b50505050565b600181811c908216806200058757607f821691505b60208210811415620005a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160f81c61174e620005e46000396000610248015261174e6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063cae9ca5111610071578063cae9ca511461039c578063d8fbe994146103af578063dd62ed3e146103c2578063f2fde38b146103fb57600080fd5b8063a457c2d714610363578063a9059cbb14610376578063c1d34b891461038957600080fd5b80637d64bcb4116100d35780637d64bcb4146103175780638980f11f1461031f5780638da5cb5b1461033257806395d89b411461035b57600080fd5b806370a08231146102d3578063715018a6146102fc57806379cc67901461030457600080fd5b806323b872dd11610166578063395093511161014057806339509351146102855780634000aea01461029857806340c10f19146102ab57806342966c68146102c057600080fd5b806323b872dd1461022e578063313ce567146102415780633177029f1461027257600080fd5b806301ffc9a7146101ae57806305d2035b146101d657806306fdde03146101e1578063095ea7b3146101f65780631296ee621461020957806318160ddd1461021c575b600080fd5b6101c16101bc366004611494565b61040e565b60405190151581526020015b60405180910390f35b60055460ff166101c1565b6101e9610445565b6040516101cd919061159c565b6101c16102043660046113f6565b6104d7565b6101c16102173660046113f6565b6104ed565b6002545b6040519081526020016101cd565b6101c161023c366004611355565b610510565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101cd565b6101c16102803660046113f6565b6105c6565b6101c16102933660046113f6565b6105e2565b6101c16102a636600461141f565b610619565b6102be6102b93660046113f6565b610658565b005b6102be6102ce3660046114cc565b610689565b6102206102e1366004611309565b6001600160a01b031660009081526020819052604090205490565b6102be610696565b6102be6103123660046113f6565b610716565b6102be61079e565b6102be61032d3660046113f6565b6107cb565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101cd565b6101e96108a2565b6101c16103713660046113f6565b6108b1565b6101c16103843660046113f6565b610942565b6101c1610397366004611390565b61094f565b6101c16103aa36600461141f565b61098d565b6101c16103bd366004611355565b6109ff565b6102206103d0366004611323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102be610409366004611309565b610a1c565b60006001600160e01b0319821663b0202a1160e01b148061043f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104549061169b565b80601f01602080910402602001604051908101604052809291908181526020018280546104809061169b565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b60006104e4338484610bf7565b50600192915050565b6000610509838360405180602001604052806000815250610619565b9392505050565b600061051d848484610d1c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105a75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105bb85336105b68685611684565b610bf7565b506001949350505050565b600061050983836040518060200160405280600081525061098d565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104e49185906105b690869061166c565b60006106258484610942565b5061063233858585610ef4565b61064e5760405162461bcd60e51b815260040161059e906115af565b5060019392505050565b60055460ff161561067b5760405162461bcd60e51b815260040161059e9061162a565b6106858282610fb2565b5050565b6106933382610fec565b50565b6005546001600160a01b036101009091041633146106c65760405162461bcd60e51b815260040161059e906115f5565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061072283336103d0565b9050818110156107805760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161059e565b61078f83336105b68585611684565b6107998383610fec565b505050565b60055460ff16156107c15760405162461bcd60e51b815260040161059e9061162a565b6107c961113b565b565b6005546001600160a01b036101009091041633146107fb5760405162461bcd60e51b815260040161059e906115f5565b816001600160a01b031663a9059cbb6108226005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561086a57600080fd5b505af115801561087e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611474565b6060600480546104549061169b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161059e565b61064e33856105b68685611684565b60006104e4338484610d1c565b600061095c858585610510565b5061096985858585610ef4565b6105bb5760405162461bcd60e51b815260040161059e906115af565b949350505050565b600061099984846104d7565b506109a5848484611173565b61064e5760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b606482015260840161059e565b60006109858484846040518060200160405280600081525061094f565b6005546001600160a01b03610100909104163314610a4c5760405162461bcd60e51b815260040161059e906115f5565b6001600160a01b038116610ab15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038216610b6e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161059e565b8060026000828254610b80919061166c565b90915550506001600160a01b03821660009081526020819052604081208054839290610bad90849061166c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610c595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b6001600160a01b038216610cba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161059e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d805760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b6001600160a01b038216610de25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161059e565b6001600160a01b03831660009081526020819052604090205481811015610e5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161059e565b610e648282611684565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e9a90849061166c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee691815260200190565b60405180910390a350505050565b60006001600160a01b0384163b610f0d57506000610985565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c90610f429033908a908990899060040161152f565b602060405180830381600087803b158015610f5c57600080fd5b505af1158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9491906114b0565b6001600160e01b031916632229f29760e21b14915050949350505050565b6005546001600160a01b03610100909104163314610fe25760405162461bcd60e51b815260040161059e906115f5565b6106858282610b18565b6001600160a01b03821661104c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161059e565b6001600160a01b038216600090815260208190526040902054818110156110c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161059e565b6110ca8282611684565b6001600160a01b038416600090815260208190526040812091909155600280548492906110f8908490611684565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d0f565b6005546001600160a01b0361010090910416331461116b5760405162461bcd60e51b815260040161059e906115f5565b6107c961122e565b60006001600160a01b0384163b61118c57506000610509565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d0906111bf9033908890889060040161156c565b602060405180830381600087803b1580156111d957600080fd5b505af11580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121191906114b0565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b80356001600160a01b038116811461127d57600080fd5b919050565b600082601f830112611292578081fd5b813567ffffffffffffffff808211156112ad576112ad6116ec565b604051601f8301601f19908116603f011681019082821181831017156112d5576112d56116ec565b816040528381528660208588010111156112ed578485fd5b8360208701602083013792830160200193909352509392505050565b60006020828403121561131a578081fd5b61050982611266565b60008060408385031215611335578081fd5b61133e83611266565b915061134c60208401611266565b90509250929050565b600080600060608486031215611369578081fd5b61137284611266565b925061138060208501611266565b9150604084013590509250925092565b600080600080608085870312156113a5578081fd5b6113ae85611266565b93506113bc60208601611266565b925060408501359150606085013567ffffffffffffffff8111156113de578182fd5b6113ea87828801611282565b91505092959194509250565b60008060408385031215611408578182fd5b61141183611266565b946020939093013593505050565b600080600060608486031215611433578283fd5b61143c84611266565b925060208401359150604084013567ffffffffffffffff81111561145e578182fd5b61146a86828701611282565b9150509250925092565b600060208284031215611485578081fd5b81518015158114610509578182fd5b6000602082840312156114a5578081fd5b813561050981611702565b6000602082840312156114c1578081fd5b815161050981611702565b6000602082840312156114dd578081fd5b5035919050565b60008151808452815b81811015611509576020818501810151868301820152016114ed565b8181111561151a5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611562908301846114e4565b9695505050505050565b60018060a01b038416815282602082015260606040820152600061159360608301846114e4565b95945050505050565b60208152600061050960208301846114e4565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b6000821982111561167f5761167f6116d6565b500190565b600082821015611696576116966116d6565b500390565b600181811c908216806116af57607f821691505b602082108114156116d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069357600080fdfea2646970667358221220d3c6af71eeb555e5e98038297732ad79835eccbb3a7a86969b456f213618d55b64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000003e09de2596099e2b0000000000000000000000000000000eff0b47d3066aa0f6443f9af1e9e3ef0e214e1e20000000000000000000000000000000000000000000000000000000000000011416c6c20666f72206f6e652053484942410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006414c534849420000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063cae9ca5111610071578063cae9ca511461039c578063d8fbe994146103af578063dd62ed3e146103c2578063f2fde38b146103fb57600080fd5b8063a457c2d714610363578063a9059cbb14610376578063c1d34b891461038957600080fd5b80637d64bcb4116100d35780637d64bcb4146103175780638980f11f1461031f5780638da5cb5b1461033257806395d89b411461035b57600080fd5b806370a08231146102d3578063715018a6146102fc57806379cc67901461030457600080fd5b806323b872dd11610166578063395093511161014057806339509351146102855780634000aea01461029857806340c10f19146102ab57806342966c68146102c057600080fd5b806323b872dd1461022e578063313ce567146102415780633177029f1461027257600080fd5b806301ffc9a7146101ae57806305d2035b146101d657806306fdde03146101e1578063095ea7b3146101f65780631296ee621461020957806318160ddd1461021c575b600080fd5b6101c16101bc366004611494565b61040e565b60405190151581526020015b60405180910390f35b60055460ff166101c1565b6101e9610445565b6040516101cd919061159c565b6101c16102043660046113f6565b6104d7565b6101c16102173660046113f6565b6104ed565b6002545b6040519081526020016101cd565b6101c161023c366004611355565b610510565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000121681526020016101cd565b6101c16102803660046113f6565b6105c6565b6101c16102933660046113f6565b6105e2565b6101c16102a636600461141f565b610619565b6102be6102b93660046113f6565b610658565b005b6102be6102ce3660046114cc565b610689565b6102206102e1366004611309565b6001600160a01b031660009081526020819052604090205490565b6102be610696565b6102be6103123660046113f6565b610716565b6102be61079e565b6102be61032d3660046113f6565b6107cb565b60055461010090046001600160a01b03166040516001600160a01b0390911681526020016101cd565b6101e96108a2565b6101c16103713660046113f6565b6108b1565b6101c16103843660046113f6565b610942565b6101c1610397366004611390565b61094f565b6101c16103aa36600461141f565b61098d565b6101c16103bd366004611355565b6109ff565b6102206103d0366004611323565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102be610409366004611309565b610a1c565b60006001600160e01b0319821663b0202a1160e01b148061043f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104549061169b565b80601f01602080910402602001604051908101604052809291908181526020018280546104809061169b565b80156104cd5780601f106104a2576101008083540402835291602001916104cd565b820191906000526020600020905b8154815290600101906020018083116104b057829003601f168201915b5050505050905090565b60006104e4338484610bf7565b50600192915050565b6000610509838360405180602001604052806000815250610619565b9392505050565b600061051d848484610d1c565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105a75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105bb85336105b68685611684565b610bf7565b506001949350505050565b600061050983836040518060200160405280600081525061098d565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104e49185906105b690869061166c565b60006106258484610942565b5061063233858585610ef4565b61064e5760405162461bcd60e51b815260040161059e906115af565b5060019392505050565b60055460ff161561067b5760405162461bcd60e51b815260040161059e9061162a565b6106858282610fb2565b5050565b6106933382610fec565b50565b6005546001600160a01b036101009091041633146106c65760405162461bcd60e51b815260040161059e906115f5565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061072283336103d0565b9050818110156107805760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161059e565b61078f83336105b68585611684565b6107998383610fec565b505050565b60055460ff16156107c15760405162461bcd60e51b815260040161059e9061162a565b6107c961113b565b565b6005546001600160a01b036101009091041633146107fb5760405162461bcd60e51b815260040161059e906115f5565b816001600160a01b031663a9059cbb6108226005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561086a57600080fd5b505af115801561087e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107999190611474565b6060600480546104549061169b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109335760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161059e565b61064e33856105b68685611684565b60006104e4338484610d1c565b600061095c858585610510565b5061096985858585610ef4565b6105bb5760405162461bcd60e51b815260040161059e906115af565b949350505050565b600061099984846104d7565b506109a5848484611173565b61064e5760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b606482015260840161059e565b60006109858484846040518060200160405280600081525061094f565b6005546001600160a01b03610100909104163314610a4c5760405162461bcd60e51b815260040161059e906115f5565b6001600160a01b038116610ab15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038216610b6e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161059e565b8060026000828254610b80919061166c565b90915550506001600160a01b03821660009081526020819052604081208054839290610bad90849061166c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610c595760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b6001600160a01b038216610cba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161059e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d805760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161059e565b6001600160a01b038216610de25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161059e565b6001600160a01b03831660009081526020819052604090205481811015610e5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161059e565b610e648282611684565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e9a90849061166c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee691815260200190565b60405180910390a350505050565b60006001600160a01b0384163b610f0d57506000610985565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c90610f429033908a908990899060040161152f565b602060405180830381600087803b158015610f5c57600080fd5b505af1158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9491906114b0565b6001600160e01b031916632229f29760e21b14915050949350505050565b6005546001600160a01b03610100909104163314610fe25760405162461bcd60e51b815260040161059e906115f5565b6106858282610b18565b6001600160a01b03821661104c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161059e565b6001600160a01b038216600090815260208190526040902054818110156110c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161059e565b6110ca8282611684565b6001600160a01b038416600090815260208190526040812091909155600280548492906110f8908490611684565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d0f565b6005546001600160a01b0361010090910416331461116b5760405162461bcd60e51b815260040161059e906115f5565b6107c961122e565b60006001600160a01b0384163b61118c57506000610509565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d0906111bf9033908890889060040161156c565b602060405180830381600087803b1580156111d957600080fd5b505af11580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121191906114b0565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b80356001600160a01b038116811461127d57600080fd5b919050565b600082601f830112611292578081fd5b813567ffffffffffffffff808211156112ad576112ad6116ec565b604051601f8301601f19908116603f011681019082821181831017156112d5576112d56116ec565b816040528381528660208588010111156112ed578485fd5b8360208701602083013792830160200193909352509392505050565b60006020828403121561131a578081fd5b61050982611266565b60008060408385031215611335578081fd5b61133e83611266565b915061134c60208401611266565b90509250929050565b600080600060608486031215611369578081fd5b61137284611266565b925061138060208501611266565b9150604084013590509250925092565b600080600080608085870312156113a5578081fd5b6113ae85611266565b93506113bc60208601611266565b925060408501359150606085013567ffffffffffffffff8111156113de578182fd5b6113ea87828801611282565b91505092959194509250565b60008060408385031215611408578182fd5b61141183611266565b946020939093013593505050565b600080600060608486031215611433578283fd5b61143c84611266565b925060208401359150604084013567ffffffffffffffff81111561145e578182fd5b61146a86828701611282565b9150509250925092565b600060208284031215611485578081fd5b81518015158114610509578182fd5b6000602082840312156114a5578081fd5b813561050981611702565b6000602082840312156114c1578081fd5b815161050981611702565b6000602082840312156114dd578081fd5b5035919050565b60008151808452815b81811015611509576020818501810151868301820152016114ed565b8181111561151a5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611562908301846114e4565b9695505050505050565b60018060a01b038416815282602082015260606040820152600061159360608301846114e4565b95945050505050565b60208152600061050960208301846114e4565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b6000821982111561167f5761167f6116d6565b500190565b600082821015611696576116966116d6565b500390565b600181811c908216806116af57607f821691505b602082108114156116d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069357600080fdfea2646970667358221220d3c6af71eeb555e5e98038297732ad79835eccbb3a7a86969b456f213618d55b64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000003e09de2596099e2b0000000000000000000000000000000eff0b47d3066aa0f6443f9af1e9e3ef0e214e1e20000000000000000000000000000000000000000000000000000000000000011416c6c20666f72206f6e652053484942410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006414c534849420000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): All for one SHIBA
Arg [1] : symbol_ (string): ALSHIB
Arg [2] : decimals_ (uint8): 18
Arg [3] : initialBalance_ (uint256): 1200000000000000000000000000
Arg [4] : feeReceiver_ (address): 0xEfF0b47d3066Aa0F6443f9Af1e9E3eF0e214e1e2

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000003e09de2596099e2b0000000
Arg [4] : 000000000000000000000000eff0b47d3066aa0f6443f9af1e9e3ef0e214e1e2
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 416c6c20666f72206f6e65205348494241000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 414c534849420000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45060:1304:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33449:215;;;;;;:::i;:::-;;:::i;:::-;;;6108:14:1;;6101:22;6083:41;;6071:2;6056:18;33449:215:0;;;;;;;;43482:98;43556:16;;;;43482:98;;6671:100;;;:::i;:::-;;;;;;;:::i;8838:169::-;;;;;;:::i;:::-;;:::i;33963:163::-;;;;;;:::i;:::-;;:::i;7791:108::-;7879:12;;7791:108;;;12899:25:1;;;12887:2;12872:18;7791:108:0;12854:76:1;9489:422:0;;;;;;:::i;:::-;;:::i;45555:129::-;;;13107:4:1;42733:9:0;13095:17:1;13077:36;;13065:2;13050:18;45555:129:0;13032:87:1;36481:157:0;;;;;;:::i;:::-;;:::i;10320:215::-;;;;;;:::i;:::-;;:::i;34484:308::-;;;;;;:::i;:::-;;:::i;43892:105::-;;;;;;:::i;:::-;;:::i;:::-;;15933:91;;;;;;:::i;:::-;;:::i;7962:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8063:18:0;8036:7;8063:18;;;;;;;;;;;;7962:127;40910:148;;;:::i;16343:332::-;;;;;;:::i;:::-;;:::i;44190:77::-;;;:::i;41941:160::-;;;;;;:::i;:::-;;:::i;40259:87::-;40332:6;;;;;-1:-1:-1;;;;;40332:6:0;40259:87;;-1:-1:-1;;;;;4737:32:1;;;4719:51;;4707:2;4692:18;40259:87:0;4674:102:1;6890:104:0;;;:::i;11038:377::-;;;;;;:::i;:::-;;:::i;8302:175::-;;;;;;:::i;:::-;;:::i;35840:334::-;;;;;;:::i;:::-;;:::i;37009:284::-;;;;;;:::i;:::-;;:::i;35188:195::-;;;;;;:::i;:::-;;:::i;8540:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8656:18:0;;;8629:7;8656:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8540:151;41213:244;;;;;;:::i;:::-;;:::i;33449:215::-;33551:4;-1:-1:-1;;;;;;33575:41:0;;-1:-1:-1;;;33575:41:0;;:81;;-1:-1:-1;;;;;;;;;;26463:40:0;;;33620:36;33568:88;33449:215;-1:-1:-1;;33449:215:0:o;6671:100::-;6725:13;6758:5;6751:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6671:100;:::o;8838:169::-;8921:4;8938:39;4338:10;8961:7;8970:6;8938:8;:39::i;:::-;-1:-1:-1;8995:4:0;8838:169;;;;:::o;33963:163::-;34056:4;34080:38;34096:9;34107:6;34080:38;;;;;;;;;;;;:15;:38::i;:::-;34073:45;33963:163;-1:-1:-1;;;33963:163:0:o;9489:422::-;9595:4;9612:36;9622:6;9630:9;9641:6;9612:9;:36::i;:::-;-1:-1:-1;;;;;9688:19:0;;9661:24;9688:19;;;:11;:19;;;;;;;;4338:10;9688:33;;;;;;;;9740:26;;;;9732:79;;;;-1:-1:-1;;;9732:79:0;;9398:2:1;9732:79:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:34;9456:18;;;9449:62;-1:-1:-1;;;9527:18:1;;;9520:38;9575:19;;9732:79:0;;;;;;;;;9822:57;9831:6;4338:10;9853:25;9872:6;9853:16;:25;:::i;:::-;9822:8;:57::i;:::-;-1:-1:-1;9899:4:0;;9489:422;-1:-1:-1;;;;9489:422:0:o;36481:157::-;36571:4;36595:35;36610:7;36619:6;36595:35;;;;;;;;;;;;:14;:35::i;10320:215::-;4338:10;10408:4;10457:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10457:34:0;;;;;;;;;;10408:4;;10425:80;;10448:7;;10457:47;;10494:10;;10457:47;:::i;34484:308::-;34596:4;34613:27;34622:9;34633:6;34613:8;:27::i;:::-;-1:-1:-1;34659:60:0;4338:10;34695:9;34706:6;34714:4;34659:21;:60::i;:::-;34651:111;;;;-1:-1:-1;;;34651:111:0;;;;;;;:::i;:::-;-1:-1:-1;34780:4:0;34484:308;;;;;:::o;43892:105::-;43334:16;;;;43333:17;43325:64;;;;-1:-1:-1;;;43325:64:0;;;;;;;:::i;:::-;43967:22:::1;43973:7;43982:6;43967:5;:22::i;:::-;43892:105:::0;;:::o;15933:91::-;15989:27;4338:10;16009:6;15989:5;:27::i;:::-;15933:91;:::o;40910:148::-;40332:6;;-1:-1:-1;;;;;40332:6:0;;;;;4338:10;40479:23;40471:68;;;;-1:-1:-1;;;40471:68:0;;;;;;;:::i;:::-;41001:6:::1;::::0;40980:40:::1;::::0;41017:1:::1;::::0;41001:6:::1;::::0;::::1;-1:-1:-1::0;;;;;41001:6:0::1;::::0;40980:40:::1;::::0;41017:1;;40980:40:::1;41031:6;:19:::0;;-1:-1:-1;;;;;;41031:19:0::1;::::0;;40910:148::o;16343:332::-;16420:24;16447:32;16457:7;4338:10;8540:151;:::i;16447:32::-;16420:59;;16518:6;16498:16;:26;;16490:75;;;;-1:-1:-1;;;16490:75:0;;10168:2:1;16490:75:0;;;10150:21:1;10207:2;10187:18;;;10180:30;10246:34;10226:18;;;10219:62;-1:-1:-1;;;10297:18:1;;;10290:34;10341:19;;16490:75:0;10140:226:1;16490:75:0;16576:58;16585:7;4338:10;16608:25;16627:6;16608:16;:25;:::i;16576:58::-;16645:22;16651:7;16660:6;16645:5;:22::i;:::-;16343:332;;;:::o;44190:77::-;43334:16;;;;43333:17;43325:64;;;;-1:-1:-1;;;43325:64:0;;;;;;;:::i;:::-;44243:16:::1;:14;:16::i;:::-;44190:77::o:0;41941:160::-;40332:6;;-1:-1:-1;;;;;40332:6:0;;;;;4338:10;40479:23;40471:68;;;;-1:-1:-1;;;40471:68:0;;;;;;;:::i;:::-;42049:12:::1;-1:-1:-1::0;;;;;42042:29:0::1;;42072:7;40332:6:::0;;-1:-1:-1;;;;;40332:6:0;;;;;;40259:87;42072:7:::1;42042:51;::::0;-1:-1:-1;;;;;;42042:51:0::1;::::0;;;;;;-1:-1:-1;;;;;5466:32:1;;;42042:51:0::1;::::0;::::1;5448::1::0;5515:18;;;5508:34;;;5421:18;;42042:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6890:104::-:0;6946:13;6979:7;6972:14;;;;;:::i;11038:377::-;4338:10;11131:4;11175:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11175:34:0;;;;;;;;;;11228:35;;;;11220:85;;;;-1:-1:-1;;;11220:85:0;;12189:2:1;11220:85:0;;;12171:21:1;12228:2;12208:18;;;12201:30;12267:34;12247:18;;;12240:62;-1:-1:-1;;;12318:18:1;;;12311:35;12363:19;;11220:85:0;12161:227:1;11220:85:0;11316:67;4338:10;11339:7;11348:34;11367:15;11348:16;:34;:::i;8302:175::-;8388:4;8405:42;4338:10;8429:9;8440:6;8405:9;:42::i;35840:334::-;35972:4;35989:39;36002:6;36010:9;36021:6;35989:12;:39::i;:::-;;36047:54;36069:6;36077:9;36088:6;36096:4;36047:21;:54::i;:::-;36039:105;;;;-1:-1:-1;;;36039:105:0;;;;;;;:::i;35840:334::-;;;;;;;:::o;37009:284::-;37118:4;37135:24;37143:7;37152:6;37135:7;:24::i;:::-;;37178:43;37199:7;37208:6;37216:4;37178:20;:43::i;:::-;37170:93;;;;-1:-1:-1;;;37170:93:0;;8178:2:1;37170:93:0;;;8160:21:1;8217:2;8197:18;;;8190:30;8256:34;8236:18;;;8229:62;-1:-1:-1;;;8307:18:1;;;8300:35;8352:19;;37170:93:0;8150:227:1;35188:195:0;35301:4;35325:50;35345:6;35353:9;35364:6;35325:50;;;;;;;;;;;;:19;:50::i;41213:244::-;40332:6;;-1:-1:-1;;;;;40332:6:0;;;;;4338:10;40479:23;40471:68;;;;-1:-1:-1;;;40471:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41302:22:0;::::1;41294:73;;;::::0;-1:-1:-1;;;41294:73:0;;7368:2:1;41294:73:0::1;::::0;::::1;7350:21:1::0;7407:2;7387:18;;;7380:30;7446:34;7426:18;;;7419:62;-1:-1:-1;;;7497:18:1;;;7490:36;7543:19;;41294:73:0::1;7340:228:1::0;41294:73:0::1;41404:6;::::0;41383:38:::1;::::0;-1:-1:-1;;;;;41383:38:0;;::::1;::::0;41404:6:::1;::::0;::::1;;::::0;41383:38:::1;::::0;;;::::1;41432:6;:17:::0;;-1:-1:-1;;;;;41432:17:0;;::::1;;;-1:-1:-1::0;;;;;;41432:17:0;;::::1;::::0;;;::::1;::::0;;41213:244::o;12791:338::-;-1:-1:-1;;;;;12875:21:0;;12867:65;;;;-1:-1:-1;;;12867:65:0;;12595:2:1;12867:65:0;;;12577:21:1;12634:2;12614:18;;;12607:30;12673:33;12653:18;;;12646:61;12724:18;;12867:65:0;12567:181:1;12867:65:0;13023:6;13007:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13040:18:0;;:9;:18;;;;;;;;;;:28;;13062:6;;13040:9;:28;;13062:6;;13040:28;:::i;:::-;;;;-1:-1:-1;;13084:37:0;;12899:25:1;;;-1:-1:-1;;;;;13084:37:0;;;13101:1;;13084:37;;12887:2:1;12872:18;13084:37:0;;;;;;;12791:338;;:::o;14394:346::-;-1:-1:-1;;;;;14496:19:0;;14488:68;;;;-1:-1:-1;;;14488:68:0;;11381:2:1;14488:68:0;;;11363:21:1;11420:2;11400:18;;;11393:30;11459:34;11439:18;;;11432:62;-1:-1:-1;;;11510:18:1;;;11503:34;11554:19;;14488:68:0;11353:226:1;14488:68:0;-1:-1:-1;;;;;14575:21:0;;14567:68;;;;-1:-1:-1;;;14567:68:0;;7775:2:1;14567:68:0;;;7757:21:1;7814:2;7794:18;;;7787:30;7853:34;7833:18;;;7826:62;-1:-1:-1;;;7904:18:1;;;7897:32;7946:19;;14567:68:0;7747:224:1;14567:68:0;-1:-1:-1;;;;;14648:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14700:32;;12899:25:1;;;14700:32:0;;12872:18:1;14700:32:0;;;;;;;;14394:346;;;:::o;11905:604::-;-1:-1:-1;;;;;12011:20:0;;12003:70;;;;-1:-1:-1;;;12003:70:0;;10975:2:1;12003:70:0;;;10957:21:1;11014:2;10994:18;;;10987:30;11053:34;11033:18;;;11026:62;-1:-1:-1;;;11104:18:1;;;11097:35;11149:19;;12003:70:0;10947:227:1;12003:70:0;-1:-1:-1;;;;;12092:23:0;;12084:71;;;;-1:-1:-1;;;12084:71:0;;6561:2:1;12084:71:0;;;6543:21:1;6600:2;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;-1:-1:-1;;;6690:18:1;;;6683:33;6733:19;;12084:71:0;6533:225:1;12084:71:0;-1:-1:-1;;;;;12252:17:0;;12228:21;12252:17;;;;;;;;;;;12288:23;;;;12280:74;;;;-1:-1:-1;;;12280:74:0;;8584:2:1;12280:74:0;;;8566:21:1;8623:2;8603:18;;;8596:30;8662:34;8642:18;;;8635:62;-1:-1:-1;;;8713:18:1;;;8706:36;8759:19;;12280:74:0;8556:228:1;12280:74:0;12385:22;12401:6;12385:13;:22;:::i;:::-;-1:-1:-1;;;;;12365:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12418:20;;;;;;;;:30;;12442:6;;12365:9;12418:30;;12442:6;;12418:30;:::i;:::-;;;;;;;;12483:9;-1:-1:-1;;;;;12466:35:0;12475:6;-1:-1:-1;;;;;12466:35:0;;12494:6;12466:35;;;;12899:25:1;;12887:2;12872:18;;12854:76;12466:35:0;;;;;;;;11905:604;;;;:::o;37859:437::-;37986:4;-1:-1:-1;;;;;38008:20:0;;17815;38003:68;;-1:-1:-1;38054:5:0;38047:12;;38003:68;38097:106;;-1:-1:-1;;;38097:106:0;;38081:13;;-1:-1:-1;;;;;38097:46:0;;;;;:106;;4338:10;;38172:6;;38180;;38188:4;;38097:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38222:65:0;-1:-1:-1;;;38222:65:0;;-1:-1:-1;;37859:437:0;;;;;;:::o;45976:123::-;40332:6;;-1:-1:-1;;;;;40332:6:0;;;;;4338:10;40479:23;40471:68;;;;-1:-1:-1;;;40471:68:0;;;;;;;:::i;:::-;46063:28:::1;46075:7;46084:6;46063:11;:28::i;13462:494::-:0;-1:-1:-1;;;;;13546:21:0;;13538:67;;;;-1:-1:-1;;;13538:67:0;;10573:2:1;13538:67:0;;;10555:21:1;10612:2;10592:18;;;10585:30;10651:34;10631:18;;;10624:62;-1:-1:-1;;;10702:18:1;;;10695:31;10743:19;;13538:67:0;10545:223:1;13538:67:0;-1:-1:-1;;;;;13705:18:0;;13680:22;13705:18;;;;;;;;;;;13742:24;;;;13734:71;;;;-1:-1:-1;;;13734:71:0;;6965:2:1;13734:71:0;;;6947:21:1;7004:2;6984:18;;;6977:30;7043:34;7023:18;;;7016:62;-1:-1:-1;;;7094:18:1;;;7087:32;7136:19;;13734:71:0;6937:224:1;13734:71:0;13837:23;13854:6;13837:14;:23;:::i;:::-;-1:-1:-1;;;;;13816:18:0;;:9;:18;;;;;;;;;;:44;;;;13871:12;:22;;13887:6;;13816:9;13871:22;;13887:6;;13871:22;:::i;:::-;;;;-1:-1:-1;;13911:37:0;;12899:25:1;;;13937:1:0;;-1:-1:-1;;;;;13911:37:0;;;;;12887:2:1;12872:18;13911:37:0;12854:76:1;46266:95:0;40332:6;;-1:-1:-1;;;;;40332:6:0;;;;;4338:10;40479:23;40471:68;;;;-1:-1:-1;;;40471:68:0;;;;;;;:::i;:::-;46331:22:::1;:20;:22::i;38756:402::-:0;38864:4;-1:-1:-1;;;;;38886:18:0;;17815:20;38881:66;;-1:-1:-1;38930:5:0;38923:12;;38881:66;38973:95;;-1:-1:-1;;;38973:95:0;;38957:13;;-1:-1:-1;;;;;38973:43:0;;;;;:95;;4338:10;;39045:6;;39053:4;;38973:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39087:62:0;-1:-1:-1;;;39087:62:0;;-1:-1:-1;;38756:402:0;;;;;:::o;44343:117::-;44397:16;:23;;-1:-1:-1;;44397:23:0;44416:4;44397:23;;;44438:14;;;;44397:16;;44438:14;44343:117::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:738::-;234:5;287:3;280:4;272:6;268:17;264:27;254:2;;309:5;302;295:20;254:2;349:6;336:20;375:18;412:2;408;405:10;402:2;;;418:18;;:::i;:::-;493:2;487:9;461:2;547:13;;-1:-1:-1;;543:22:1;;;567:2;539:31;535:40;523:53;;;591:18;;;611:22;;;588:46;585:2;;;637:18;;:::i;:::-;677:10;673:2;666:22;712:2;704:6;697:18;758:3;751:4;746:2;738:6;734:15;730:26;727:35;724:2;;;779:5;772;765:20;724:2;847;840:4;832:6;828:17;821:4;813:6;809:17;796:54;870:15;;;887:4;866:26;859:41;;;;-1:-1:-1;874:6:1;244:686;-1:-1:-1;;;244:686:1:o;935:196::-;994:6;1047:2;1035:9;1026:7;1022:23;1018:32;1015:2;;;1068:6;1060;1053:22;1015:2;1096:29;1115:9;1096:29;:::i;1136:270::-;1204:6;1212;1265:2;1253:9;1244:7;1240:23;1236:32;1233:2;;;1286:6;1278;1271:22;1233:2;1314:29;1333:9;1314:29;:::i;:::-;1304:39;;1362:38;1396:2;1385:9;1381:18;1362:38;:::i;:::-;1352:48;;1223:183;;;;;:::o;1411:338::-;1488:6;1496;1504;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1606:29;1625:9;1606:29;:::i;:::-;1596:39;;1654:38;1688:2;1677:9;1673:18;1654:38;:::i;:::-;1644:48;;1739:2;1728:9;1724:18;1711:32;1701:42;;1515:234;;;;;:::o;1754:557::-;1849:6;1857;1865;1873;1926:3;1914:9;1905:7;1901:23;1897:33;1894:2;;;1948:6;1940;1933:22;1894:2;1976:29;1995:9;1976:29;:::i;:::-;1966:39;;2024:38;2058:2;2047:9;2043:18;2024:38;:::i;:::-;2014:48;;2109:2;2098:9;2094:18;2081:32;2071:42;;2164:2;2153:9;2149:18;2136:32;2191:18;2183:6;2180:30;2177:2;;;2228:6;2220;2213:22;2177:2;2256:49;2297:7;2288:6;2277:9;2273:22;2256:49;:::i;:::-;2246:59;;;1884:427;;;;;;;:::o;2316:264::-;2384:6;2392;2445:2;2433:9;2424:7;2420:23;2416:32;2413:2;;;2466:6;2458;2451:22;2413:2;2494:29;2513:9;2494:29;:::i;:::-;2484:39;2570:2;2555:18;;;;2542:32;;-1:-1:-1;;;2403:177:1:o;2585:482::-;2671:6;2679;2687;2740:2;2728:9;2719:7;2715:23;2711:32;2708:2;;;2761:6;2753;2746:22;2708:2;2789:29;2808:9;2789:29;:::i;:::-;2779:39;;2865:2;2854:9;2850:18;2837:32;2827:42;;2920:2;2909:9;2905:18;2892:32;2947:18;2939:6;2936:30;2933:2;;;2984:6;2976;2969:22;2933:2;3012:49;3053:7;3044:6;3033:9;3029:22;3012:49;:::i;:::-;3002:59;;;2698:369;;;;;:::o;3072:297::-;3139:6;3192:2;3180:9;3171:7;3167:23;3163:32;3160:2;;;3213:6;3205;3198:22;3160:2;3250:9;3244:16;3303:5;3296:13;3289:21;3282:5;3279:32;3269:2;;3330:6;3322;3315:22;3374:255;3432:6;3485:2;3473:9;3464:7;3460:23;3456:32;3453:2;;;3506:6;3498;3491:22;3453:2;3550:9;3537:23;3569:30;3593:5;3569:30;:::i;3634:259::-;3703:6;3756:2;3744:9;3735:7;3731:23;3727:32;3724:2;;;3777:6;3769;3762:22;3724:2;3814:9;3808:16;3833:30;3857:5;3833:30;:::i;3898:190::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:2;;;4031:6;4023;4016:22;3978:2;-1:-1:-1;4059:23:1;;3968:120;-1:-1:-1;3968:120:1:o;4093:475::-;4134:3;4172:5;4166:12;4199:6;4194:3;4187:19;4224:3;4236:162;4250:6;4247:1;4244:13;4236:162;;;4312:4;4368:13;;;4364:22;;4358:29;4340:11;;;4336:20;;4329:59;4265:12;4236:162;;;4416:6;4413:1;4410:13;4407:2;;;4482:3;4475:4;4466:6;4461:3;4457:16;4453:27;4446:40;4407:2;-1:-1:-1;4550:2:1;4529:15;-1:-1:-1;;4525:29:1;4516:39;;;;4557:4;4512:50;;4142:426;-1:-1:-1;;4142:426:1:o;4781:488::-;-1:-1:-1;;;;;5050:15:1;;;5032:34;;5102:15;;5097:2;5082:18;;5075:43;5149:2;5134:18;;5127:34;;;5197:3;5192:2;5177:18;;5170:31;;;4975:4;;5218:45;;5243:19;;5235:6;5218:45;:::i;:::-;5210:53;4984:285;-1:-1:-1;;;;;;4984:285:1:o;5553:385::-;5785:1;5781;5776:3;5772:11;5768:19;5760:6;5756:32;5745:9;5738:51;5825:6;5820:2;5809:9;5805:18;5798:34;5868:2;5863;5852:9;5848:18;5841:30;5719:4;5888:44;5928:2;5917:9;5913:18;5905:6;5888:44;:::i;:::-;5880:52;5728:210;-1:-1:-1;;;;;5728:210:1:o;6135:219::-;6284:2;6273:9;6266:21;6247:4;6304:44;6344:2;6333:9;6329:18;6321:6;6304:44;:::i;8789:402::-;8991:2;8973:21;;;9030:2;9010:18;;;9003:30;9069:34;9064:2;9049:18;;9042:62;-1:-1:-1;;;9135:2:1;9120:18;;9113:36;9181:3;9166:19;;8963:228::o;9605:356::-;9807:2;9789:21;;;9826:18;;;9819:30;9885:34;9880:2;9865:18;;9858:62;9952:2;9937:18;;9779:182::o;11584:398::-;11786:2;11768:21;;;11825:2;11805:18;;;11798:30;11864:34;11859:2;11844:18;;11837:62;-1:-1:-1;;;11930:2:1;11915:18;;11908:32;11972:3;11957:19;;11758:224::o;13124:128::-;13164:3;13195:1;13191:6;13188:1;13185:13;13182:2;;;13201:18;;:::i;:::-;-1:-1:-1;13237:9:1;;13172:80::o;13257:125::-;13297:4;13325:1;13322;13319:8;13316:2;;;13330:18;;:::i;:::-;-1:-1:-1;13367:9:1;;13306:76::o;13387:380::-;13466:1;13462:12;;;;13509;;;13530:2;;13584:4;13576:6;13572:17;13562:27;;13530:2;13637;13629:6;13626:14;13606:18;13603:38;13600:2;;;13683:10;13678:3;13674:20;13671:1;13664:31;13718:4;13715:1;13708:15;13746:4;13743:1;13736:15;13600:2;;13442:325;;;:::o;13772:127::-;13833:10;13828:3;13824:20;13821:1;13814:31;13864:4;13861:1;13854:15;13888:4;13885:1;13878:15;13904:127;13965:10;13960:3;13956:20;13953:1;13946:31;13996:4;13993:1;13986:15;14020:4;14017:1;14010:15;14036:131;-1:-1:-1;;;;;;14110:32:1;;14100:43;;14090:2;;14157:1;14154;14147:12

Swarm Source

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