ETH Price: $2,706.51 (+2.09%)

Token

Dataphora (DATAPHORA)
 

Overview

Max Total Supply

500,000,000 DATAPHORA

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
666 DATAPHORA

Value
$0.00
0x7f716cca2ce4040268c1a8785d324c6d1f364f45
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:
ExenoToken_Root

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

// SPDX-License-Identifier: MIT
// File: erc-payable-token/contracts/token/ERC1363/IERC1363Spender.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Spender Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @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/IERC1363Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Receiver Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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: erc-payable-token/contracts/token/ERC1363/IERC1363.sol



pragma solidity ^0.8.0;



/**
 * @title IERC1363 Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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 default 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;







/**
 * @title ERC1363
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/ExenoToken_Root.sol


pragma solidity ^0.8.4;



contract ExenoToken_Root is
    Ownable,
    ERC1363
{
    string private constant NAME = "Dataphora";
    string private constant SYMBOL = "DATAPHORA";
    uint256 private constant TOTAL_SUPPLY = 500 * 1000 * 1000 ether;

    constructor()
        ERC20(NAME, SYMBOL)
    {
        _mint(_msgSender(), TOTAL_SUPPLY);
    }

    function burn(uint256 amount)
        external onlyOwner
    {
        _burn(_msgSender(), amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","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":[{"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":[],"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":[{"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040523480156200001157600080fd5b50604051806040016040528060098152602001684461746170686f726160b81b815250604051806040016040528060098152602001684441544150484f524160b81b815250620000706200006a620000cb60201b60201c565b620000cf565b81516200008590600490602085019062000207565b5080516200009b90600590602084019062000207565b505050620000c5620000b2620000cb60201b60201c565b6b019d971e4fe8401e740000006200011f565b62000311565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018e9190620002ad565b90915550506001600160a01b03821660009081526001602052604081208054839290620001bd908490620002ad565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021590620002d4565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b60008219821115620002cf57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002e957607f821691505b602082108114156200030b57634e487b7160e01b600052602260045260246000fd5b50919050565b61126e80620003216000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610293578063c1d34b89146102a6578063cae9ca51146102b9578063d8fbe994146102cc578063dd62ed3e146102df578063f2fde38b1461031857600080fd5b806370a082311461022c578063715018a6146102555780638da5cb5b1461025d57806395d89b4114610278578063a457c2d71461028057600080fd5b806323b872dd1161010a57806323b872dd146101bc578063313ce567146101cf5780633177029f146101de57806339509351146101f15780634000aea01461020457806342966c681461021757600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b3146101845780631296ee621461019757806318160ddd146101aa575b600080fd5b61015a610155366004610deb565b61032b565b60405190151581526020015b60405180910390f35b610177610362565b6040516101669190610e55565b61015a610192366004610e84565b6103f4565b61015a6101a5366004610e84565b61040a565b6003545b604051908152602001610166565b61015a6101ca366004610eae565b61042d565b60405160128152602001610166565b61015a6101ec366004610e84565b6104dc565b61015a6101ff366004610e84565b6104f8565b61015a610212366004610f8d565b610534565b61022a610225366004610fe4565b610573565b005b6101ae61023a366004610ffd565b6001600160a01b031660009081526001602052604090205490565b61022a6105aa565b6000546040516001600160a01b039091168152602001610166565b6101776105e0565b61015a61028e366004610e84565b6105ef565b61015a6102a1366004610e84565b61067e565b61015a6102b4366004611018565b61068b565b61015a6102c7366004610f8d565b6106c9565b61015a6102da366004610eae565b61073b565b6101ae6102ed366004611080565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61022a610326366004610ffd565b610758565b60006001600160e01b0319821663b0202a1160e01b148061035c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060048054610371906110b3565b80601f016020809104026020016040519081016040528092919081815260200182805461039d906110b3565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b60006104013384846107f0565b50600192915050565b6000610426838360405180602001604052806000815250610534565b9392505050565b600061043a848484610915565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104c45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d185338584036107f0565b506001949350505050565b60006104268383604051806020016040528060008152506106c9565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161040191859061052f908690611104565b6107f0565b6000610540848461067e565b5061054d33858585610ae4565b6105695760405162461bcd60e51b81526004016104bb9061111c565b5060019392505050565b6000546001600160a01b0316331461059d5760405162461bcd60e51b81526004016104bb90611162565b6105a73382610b93565b50565b6000546001600160a01b031633146105d45760405162461bcd60e51b81526004016104bb90611162565b6105de6000610cd9565b565b606060058054610371906110b3565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104bb565b61056933858584036107f0565b6000610401338484610915565b600061069885858561042d565b506106a585858585610ae4565b6104d15760405162461bcd60e51b81526004016104bb9061111c565b949350505050565b60006106d584846103f4565b506106e1848484610d29565b6105695760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b60648201526084016104bb565b60006106c18484846040518060200160405280600081525061068b565b6000546001600160a01b031633146107825760405162461bcd60e51b81526004016104bb90611162565b6001600160a01b0381166107e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104bb565b6105a781610cd9565b6001600160a01b0383166108525760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bb565b6001600160a01b0382166108b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bb565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bb565b6001600160a01b03831660009081526001602052604090205481811015610a535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104bb565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a8a908490611104565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad691815260200190565b60405180910390a350505050565b60006001600160a01b0384163b610afd575060006106c1565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c90610b329033908a9089908990600401611197565b6020604051808303816000875af1158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7591906111d4565b6001600160e01b031916632229f29760e21b14915050949350505050565b6001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104bb565b6001600160a01b03821660009081526001602052604090205481811015610c675760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104bb565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c969084906111f1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610908565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b610d4257506000610426565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d090610d7590339088908890600401611208565b6020604051808303816000875af1158015610d94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db891906111d4565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b6001600160e01b0319811681146105a757600080fd5b600060208284031215610dfd57600080fd5b813561042681610dd5565b6000815180845260005b81811015610e2e57602081850181015186830182015201610e12565b81811115610e40576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006104266020830184610e08565b80356001600160a01b0381168114610e7f57600080fd5b919050565b60008060408385031215610e9757600080fd5b610ea083610e68565b946020939093013593505050565b600080600060608486031215610ec357600080fd5b610ecc84610e68565b9250610eda60208501610e68565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610f1157600080fd5b813567ffffffffffffffff80821115610f2c57610f2c610eea565b604051601f8301601f19908116603f01168101908282118183101715610f5457610f54610eea565b81604052838152866020858801011115610f6d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215610fa257600080fd5b610fab84610e68565b925060208401359150604084013567ffffffffffffffff811115610fce57600080fd5b610fda86828701610f00565b9150509250925092565b600060208284031215610ff657600080fd5b5035919050565b60006020828403121561100f57600080fd5b61042682610e68565b6000806000806080858703121561102e57600080fd5b61103785610e68565b935061104560208601610e68565b925060408501359150606085013567ffffffffffffffff81111561106857600080fd5b61107487828801610f00565b91505092959194509250565b6000806040838503121561109357600080fd5b61109c83610e68565b91506110aa60208401610e68565b90509250929050565b600181811c908216806110c757607f821691505b602082108114156110e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611117576111176110ee565b500190565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906111ca90830184610e08565b9695505050505050565b6000602082840312156111e657600080fd5b815161042681610dd5565b600082821015611203576112036110ee565b500390565b60018060a01b038416815282602082015260606040820152600061122f6060830184610e08565b9594505050505056fea264697066735822122092125393e8a6d568453e352e98db625cf6dae5aaeb46d1cb891e2d7e5cae21f564736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610293578063c1d34b89146102a6578063cae9ca51146102b9578063d8fbe994146102cc578063dd62ed3e146102df578063f2fde38b1461031857600080fd5b806370a082311461022c578063715018a6146102555780638da5cb5b1461025d57806395d89b4114610278578063a457c2d71461028057600080fd5b806323b872dd1161010a57806323b872dd146101bc578063313ce567146101cf5780633177029f146101de57806339509351146101f15780634000aea01461020457806342966c681461021757600080fd5b806301ffc9a71461014757806306fdde031461016f578063095ea7b3146101845780631296ee621461019757806318160ddd146101aa575b600080fd5b61015a610155366004610deb565b61032b565b60405190151581526020015b60405180910390f35b610177610362565b6040516101669190610e55565b61015a610192366004610e84565b6103f4565b61015a6101a5366004610e84565b61040a565b6003545b604051908152602001610166565b61015a6101ca366004610eae565b61042d565b60405160128152602001610166565b61015a6101ec366004610e84565b6104dc565b61015a6101ff366004610e84565b6104f8565b61015a610212366004610f8d565b610534565b61022a610225366004610fe4565b610573565b005b6101ae61023a366004610ffd565b6001600160a01b031660009081526001602052604090205490565b61022a6105aa565b6000546040516001600160a01b039091168152602001610166565b6101776105e0565b61015a61028e366004610e84565b6105ef565b61015a6102a1366004610e84565b61067e565b61015a6102b4366004611018565b61068b565b61015a6102c7366004610f8d565b6106c9565b61015a6102da366004610eae565b61073b565b6101ae6102ed366004611080565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61022a610326366004610ffd565b610758565b60006001600160e01b0319821663b0202a1160e01b148061035c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060048054610371906110b3565b80601f016020809104026020016040519081016040528092919081815260200182805461039d906110b3565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b60006104013384846107f0565b50600192915050565b6000610426838360405180602001604052806000815250610534565b9392505050565b600061043a848484610915565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104c45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104d185338584036107f0565b506001949350505050565b60006104268383604051806020016040528060008152506106c9565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161040191859061052f908690611104565b6107f0565b6000610540848461067e565b5061054d33858585610ae4565b6105695760405162461bcd60e51b81526004016104bb9061111c565b5060019392505050565b6000546001600160a01b0316331461059d5760405162461bcd60e51b81526004016104bb90611162565b6105a73382610b93565b50565b6000546001600160a01b031633146105d45760405162461bcd60e51b81526004016104bb90611162565b6105de6000610cd9565b565b606060058054610371906110b3565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104bb565b61056933858584036107f0565b6000610401338484610915565b600061069885858561042d565b506106a585858585610ae4565b6104d15760405162461bcd60e51b81526004016104bb9061111c565b949350505050565b60006106d584846103f4565b506106e1848484610d29565b6105695760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b60648201526084016104bb565b60006106c18484846040518060200160405280600081525061068b565b6000546001600160a01b031633146107825760405162461bcd60e51b81526004016104bb90611162565b6001600160a01b0381166107e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104bb565b6105a781610cd9565b6001600160a01b0383166108525760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104bb565b6001600160a01b0382166108b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104bb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104bb565b6001600160a01b0382166109db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104bb565b6001600160a01b03831660009081526001602052604090205481811015610a535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104bb565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a8a908490611104565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad691815260200190565b60405180910390a350505050565b60006001600160a01b0384163b610afd575060006106c1565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c90610b329033908a9089908990600401611197565b6020604051808303816000875af1158015610b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b7591906111d4565b6001600160e01b031916632229f29760e21b14915050949350505050565b6001600160a01b038216610bf35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104bb565b6001600160a01b03821660009081526001602052604090205481811015610c675760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104bb565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610c969084906111f1565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610908565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b610d4257506000610426565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d090610d7590339088908890600401611208565b6020604051808303816000875af1158015610d94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db891906111d4565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b6001600160e01b0319811681146105a757600080fd5b600060208284031215610dfd57600080fd5b813561042681610dd5565b6000815180845260005b81811015610e2e57602081850181015186830182015201610e12565b81811115610e40576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006104266020830184610e08565b80356001600160a01b0381168114610e7f57600080fd5b919050565b60008060408385031215610e9757600080fd5b610ea083610e68565b946020939093013593505050565b600080600060608486031215610ec357600080fd5b610ecc84610e68565b9250610eda60208501610e68565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610f1157600080fd5b813567ffffffffffffffff80821115610f2c57610f2c610eea565b604051601f8301601f19908116603f01168101908282118183101715610f5457610f54610eea565b81604052838152866020858801011115610f6d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215610fa257600080fd5b610fab84610e68565b925060208401359150604084013567ffffffffffffffff811115610fce57600080fd5b610fda86828701610f00565b9150509250925092565b600060208284031215610ff657600080fd5b5035919050565b60006020828403121561100f57600080fd5b61042682610e68565b6000806000806080858703121561102e57600080fd5b61103785610e68565b935061104560208601610e68565b925060408501359150606085013567ffffffffffffffff81111561106857600080fd5b61107487828801610f00565b91505092959194509250565b6000806040838503121561109357600080fd5b61109c83610e68565b91506110aa60208401610e68565b90509250929050565b600181811c908216806110c757607f821691505b602082108114156110e857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611117576111176110ee565b500190565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906111ca90830184610e08565b9695505050505050565b6000602082840312156111e657600080fd5b815161042681610dd5565b600082821015611203576112036110ee565b500390565b60018060a01b038416815282602082015260606040820152600061122f6060830184610e08565b9594505050505056fea264697066735822122092125393e8a6d568453e352e98db625cf6dae5aaeb46d1cb891e2d7e5cae21f564736f6c634300080b0033

Deployed Bytecode Sourcemap

42648:455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34153:215;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34153:215:0;;;;;;;;23783:100;;;:::i;:::-;;;;;;;:::i;25950:169::-;;;;;;:::i;:::-;;:::i;34667:163::-;;;;;;:::i;:::-;;:::i;24903:108::-;24991:12;;24903:108;;;1877:25:1;;;1865:2;1850:18;24903:108:0;1731:177:1;26601:492:0;;;;;;:::i;:::-;;:::i;24745:93::-;;;24828:2;2388:36:1;;2376:2;2361:18;24745:93:0;2246:184:1;37296:157:0;;;;;;:::i;:::-;;:::i;27502:215::-;;;;;;:::i;:::-;;:::i;35188:342::-;;;;;;:::i;:::-;;:::i;42991:109::-;;;;;;:::i;:::-;;:::i;:::-;;25074:127;;;;;;:::i;:::-;-1:-1:-1;;;;;25175:18:0;25148:7;25175:18;;;:9;:18;;;;;;;25074:127;41756:103;;;:::i;41105:87::-;41151:7;41178:6;41105:87;;-1:-1:-1;;;;;41178:6:0;;;4279:51:1;;4267:2;4252:18;41105:87:0;4133:203:1;24002:104:0;;;:::i;28220:413::-;;;;;;:::i;:::-;;:::i;25414:175::-;;;;;;:::i;:::-;;:::i;36612:377::-;;;;;;:::i;:::-;;:::i;37824:318::-;;;;;;:::i;:::-;;:::i;35926:229::-;;;;;;:::i;:::-;;:::i;25652:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25768:18:0;;;25741:7;25768:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25652:151;42014:201;;;;;;:::i;:::-;;:::i;34153:215::-;34255:4;-1:-1:-1;;;;;;34279:41:0;;-1:-1:-1;;;34279:41:0;;:81;;-1:-1:-1;;;;;;;;;;4666:40:0;;;34324:36;34272:88;34153:215;-1:-1:-1;;34153:215:0:o;23783:100::-;23837:13;23870:5;23863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23783:100;:::o;25950:169::-;26033:4;26050:39;21518:10;26073:7;26082:6;26050:8;:39::i;:::-;-1:-1:-1;26107:4:0;25950:169;;;;:::o;34667:163::-;34760:4;34784:38;34800:9;34811:6;34784:38;;;;;;;;;;;;:15;:38::i;:::-;34777:45;34667:163;-1:-1:-1;;;34667:163:0:o;26601:492::-;26741:4;26758:36;26768:6;26776:9;26787:6;26758:9;:36::i;:::-;-1:-1:-1;;;;;26834:19:0;;26807:24;26834:19;;;:11;:19;;;;;;;;21518:10;26834:33;;;;;;;;26886:26;;;;26878:79;;;;-1:-1:-1;;;26878:79:0;;5735:2:1;26878:79:0;;;5717:21:1;5774:2;5754:18;;;5747:30;5813:34;5793:18;;;5786:62;-1:-1:-1;;;5864:18:1;;;5857:38;5912:19;;26878:79:0;;;;;;;;;26993:57;27002:6;21518:10;27043:6;27024:16;:25;26993:8;:57::i;:::-;-1:-1:-1;27081:4:0;;26601:492;-1:-1:-1;;;;26601:492:0:o;37296:157::-;37386:4;37410:35;37425:7;37434:6;37410:35;;;;;;;;;;;;:14;:35::i;27502:215::-;21518:10;27590:4;27639:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27639:34:0;;;;;;;;;;27590:4;;27607:80;;27630:7;;27639:47;;27676:10;;27639:47;:::i;:::-;27607:8;:80::i;35188:342::-;35334:4;35351:27;35360:9;35371:6;35351:8;:27::i;:::-;-1:-1:-1;35397:60:0;21518:10;35433:9;35444:6;35452:4;35397:21;:60::i;:::-;35389:111;;;;-1:-1:-1;;;35389:111:0;;;;;;;:::i;:::-;-1:-1:-1;35518:4:0;35188:342;;;;;:::o;42991:109::-;41151:7;41178:6;-1:-1:-1;;;;;41178:6:0;21518:10;41325:23;41317:68;;;;-1:-1:-1;;;41317:68:0;;;;;;;:::i;:::-;43065:27:::1;21518:10:::0;43085:6:::1;43065:5;:27::i;:::-;42991:109:::0;:::o;41756:103::-;41151:7;41178:6;-1:-1:-1;;;;;41178:6:0;21518:10;41325:23;41317:68;;;;-1:-1:-1;;;41317:68:0;;;;;;;:::i;:::-;41821:30:::1;41848:1;41821:18;:30::i;:::-;41756:103::o:0;24002:104::-;24058:13;24091:7;24084:14;;;;;:::i;28220:413::-;21518:10;28313:4;28357:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28357:34:0;;;;;;;;;;28410:35;;;;28402:85;;;;-1:-1:-1;;;28402:85:0;;7177:2:1;28402:85:0;;;7159:21:1;7216:2;7196:18;;;7189:30;7255:34;7235:18;;;7228:62;-1:-1:-1;;;7306:18:1;;;7299:35;7351:19;;28402:85:0;6975:401:1;28402:85:0;28523:67;21518:10;28546:7;28574:15;28555:16;:34;28523:8;:67::i;25414:175::-;25500:4;25517:42;21518:10;25541:9;25552:6;25517:9;:42::i;36612:377::-;36787:4;36804:39;36817:6;36825:9;36836:6;36804:12;:39::i;:::-;;36862:54;36884:6;36892:9;36903:6;36911:4;36862:21;:54::i;:::-;36854:105;;;;-1:-1:-1;;;36854:105:0;;;;;;;:::i;36612:377::-;;;;;;;:::o;37824:318::-;37967:4;37984:24;37992:7;38001:6;37984:7;:24::i;:::-;;38027:43;38048:7;38057:6;38065:4;38027:20;:43::i;:::-;38019:93;;;;-1:-1:-1;;;38019:93:0;;7583:2:1;38019:93:0;;;7565:21:1;7622:2;7602:18;;;7595:30;7661:34;7641:18;;;7634:62;-1:-1:-1;;;7712:18:1;;;7705:35;7757:19;;38019:93:0;7381:401:1;35926:229:0;36073:4;36097:50;36117:6;36125:9;36136:6;36097:50;;;;;;;;;;;;:19;:50::i;42014:201::-;41151:7;41178:6;-1:-1:-1;;;;;41178:6:0;21518:10;41325:23;41317:68;;;;-1:-1:-1;;;41317:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42103:22:0;::::1;42095:73;;;::::0;-1:-1:-1;;;42095:73:0;;7989:2:1;42095:73:0::1;::::0;::::1;7971:21:1::0;8028:2;8008:18;;;8001:30;8067:34;8047:18;;;8040:62;-1:-1:-1;;;8118:18:1;;;8111:36;8164:19;;42095:73:0::1;7787:402:1::0;42095:73:0::1;42179:28;42198:8;42179:18;:28::i;31904:380::-:0;-1:-1:-1;;;;;32040:19:0;;32032:68;;;;-1:-1:-1;;;32032:68:0;;8396:2:1;32032:68:0;;;8378:21:1;8435:2;8415:18;;;8408:30;8474:34;8454:18;;;8447:62;-1:-1:-1;;;8525:18:1;;;8518:34;8569:19;;32032:68:0;8194:400:1;32032:68:0;-1:-1:-1;;;;;32119:21:0;;32111:68;;;;-1:-1:-1;;;32111:68:0;;8801:2:1;32111:68:0;;;8783:21:1;8840:2;8820:18;;;8813:30;8879:34;8859:18;;;8852:62;-1:-1:-1;;;8930:18:1;;;8923:32;8972:19;;32111:68:0;8599:398:1;32111:68:0;-1:-1:-1;;;;;32192:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32244:32;;1877:25:1;;;32244:32:0;;1850:18:1;32244:32:0;;;;;;;;31904:380;;;:::o;29123:733::-;-1:-1:-1;;;;;29263:20:0;;29255:70;;;;-1:-1:-1;;;29255:70:0;;9204:2:1;29255:70:0;;;9186:21:1;9243:2;9223:18;;;9216:30;9282:34;9262:18;;;9255:62;-1:-1:-1;;;9333:18:1;;;9326:35;9378:19;;29255:70:0;9002:401:1;29255:70:0;-1:-1:-1;;;;;29344:23:0;;29336:71;;;;-1:-1:-1;;;29336:71:0;;9610:2:1;29336:71:0;;;9592:21:1;9649:2;9629:18;;;9622:30;9688:34;9668:18;;;9661:62;-1:-1:-1;;;9739:18:1;;;9732:33;9782:19;;29336:71:0;9408:399:1;29336:71:0;-1:-1:-1;;;;;29504:17:0;;29480:21;29504:17;;;:9;:17;;;;;;29540:23;;;;29532:74;;;;-1:-1:-1;;;29532:74:0;;10014:2:1;29532:74:0;;;9996:21:1;10053:2;10033:18;;;10026:30;10092:34;10072:18;;;10065:62;-1:-1:-1;;;10143:18:1;;;10136:36;10189:19;;29532:74:0;9812:402:1;29532:74:0;-1:-1:-1;;;;;29642:17:0;;;;;;;:9;:17;;;;;;29662:22;;;29642:42;;29706:20;;;;;;;;:30;;29678:6;;29642:17;29706:30;;29678:6;;29706:30;:::i;:::-;;;;;;;;29771:9;-1:-1:-1;;;;;29754:35:0;29763:6;-1:-1:-1;;;;;29754:35:0;;29782:6;29754:35;;;;1877:25:1;;1865:2;1850:18;;1731:177;29754:35:0;;;;;;;;29244:612;29123:733;;;:::o;38708:456::-;38878:4;-1:-1:-1;;;;;38900:20:0;;5864;38895:68;;-1:-1:-1;38946:5:0;38939:12;;38895:68;38989:82;;-1:-1:-1;;;38989:82:0;;38973:13;;-1:-1:-1;;;;;38989:46:0;;;;;:82;;21518:10;;39050:6;;39058;;39066:4;;38989:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39090:65:0;-1:-1:-1;;;39090:65:0;;-1:-1:-1;;38708:456:0;;;;;;:::o;30875:591::-;-1:-1:-1;;;;;30959:21:0;;30951:67;;;;-1:-1:-1;;;30951:67:0;;11169:2:1;30951:67:0;;;11151:21:1;11208:2;11188:18;;;11181:30;11247:34;11227:18;;;11220:62;-1:-1:-1;;;11298:18:1;;;11291:31;11339:19;;30951:67:0;10967:397:1;30951:67:0;-1:-1:-1;;;;;31118:18:0;;31093:22;31118:18;;;:9;:18;;;;;;31155:24;;;;31147:71;;;;-1:-1:-1;;;31147:71:0;;11571:2:1;31147:71:0;;;11553:21:1;11610:2;11590:18;;;11583:30;11649:34;11629:18;;;11622:62;-1:-1:-1;;;11700:18:1;;;11693:32;11742:19;;31147:71:0;11369:398:1;31147:71:0;-1:-1:-1;;;;;31254:18:0;;;;;;:9;:18;;;;;31275:23;;;31254:44;;31320:12;:22;;31292:6;;31254:18;31320:22;;31292:6;;31320:22;:::i;:::-;;;;-1:-1:-1;;31360:37:0;;1877:25:1;;;31386:1:0;;-1:-1:-1;;;;;31360:37:0;;;;;1865:2:1;1850:18;31360:37:0;1731:177:1;42375:191:0;42449:16;42468:6;;-1:-1:-1;;;;;42485:17:0;;;-1:-1:-1;;;;;;42485:17:0;;;;;;42518:40;;42468:6;;;;;;;42518:40;;42449:16;42518:40;42438:128;42375:191;:::o;39624:412::-;39766:4;-1:-1:-1;;;;;39788:18:0;;5864:20;39783:66;;-1:-1:-1;39832:5:0;39825:12;;39783:66;39875:71;;-1:-1:-1;;;39875:71:0;;39859:13;;-1:-1:-1;;;;;39875:43:0;;;;;:71;;21518:10;;39933:6;;39941:4;;39875:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39965:62:0;-1:-1:-1;;;39965:62:0;;-1:-1:-1;;39624:412:0;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:472::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;914:6;911:1;908:13;905:87;;;980:1;973:4;964:6;959:3;955:16;951:27;944:38;905:87;-1:-1:-1;1046:2:1;1025:15;-1:-1:-1;;1021:29:1;1012:39;;;;1053:4;1008:50;;592:472;-1:-1:-1;;592:472:1:o;1069:220::-;1218:2;1207:9;1200:21;1181:4;1238:45;1279:2;1268:9;1264:18;1256:6;1238:45;:::i;1294:173::-;1362:20;;-1:-1:-1;;;;;1411:31:1;;1401:42;;1391:70;;1457:1;1454;1447:12;1391:70;1294:173;;;:::o;1472:254::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:52;;;1617:1;1614;1607:12;1569:52;1640:29;1659:9;1640:29;:::i;:::-;1630:39;1716:2;1701:18;;;;1688:32;;-1:-1:-1;;;1472:254:1:o;1913:328::-;1990:6;1998;2006;2059:2;2047:9;2038:7;2034:23;2030:32;2027:52;;;2075:1;2072;2065:12;2027:52;2098:29;2117:9;2098:29;:::i;:::-;2088:39;;2146:38;2180:2;2169:9;2165:18;2146:38;:::i;:::-;2136:48;;2231:2;2220:9;2216:18;2203:32;2193:42;;1913:328;;;;;:::o;2435:127::-;2496:10;2491:3;2487:20;2484:1;2477:31;2527:4;2524:1;2517:15;2551:4;2548:1;2541:15;2567:718;2609:5;2662:3;2655:4;2647:6;2643:17;2639:27;2629:55;;2680:1;2677;2670:12;2629:55;2716:6;2703:20;2742:18;2779:2;2775;2772:10;2769:36;;;2785:18;;:::i;:::-;2860:2;2854:9;2828:2;2914:13;;-1:-1:-1;;2910:22:1;;;2934:2;2906:31;2902:40;2890:53;;;2958:18;;;2978:22;;;2955:46;2952:72;;;3004:18;;:::i;:::-;3044:10;3040:2;3033:22;3079:2;3071:6;3064:18;3125:3;3118:4;3113:2;3105:6;3101:15;3097:26;3094:35;3091:55;;;3142:1;3139;3132:12;3091:55;3206:2;3199:4;3191:6;3187:17;3180:4;3172:6;3168:17;3155:54;3253:1;3246:4;3241:2;3233:6;3229:15;3225:26;3218:37;3273:6;3264:15;;;;;;2567:718;;;;:::o;3290:462::-;3376:6;3384;3392;3445:2;3433:9;3424:7;3420:23;3416:32;3413:52;;;3461:1;3458;3451:12;3413:52;3484:29;3503:9;3484:29;:::i;:::-;3474:39;;3560:2;3549:9;3545:18;3532:32;3522:42;;3615:2;3604:9;3600:18;3587:32;3642:18;3634:6;3631:30;3628:50;;;3674:1;3671;3664:12;3628:50;3697:49;3738:7;3729:6;3718:9;3714:22;3697:49;:::i;:::-;3687:59;;;3290:462;;;;;:::o;3757:180::-;3816:6;3869:2;3857:9;3848:7;3844:23;3840:32;3837:52;;;3885:1;3882;3875:12;3837:52;-1:-1:-1;3908:23:1;;3757:180;-1:-1:-1;3757:180:1:o;3942:186::-;4001:6;4054:2;4042:9;4033:7;4029:23;4025:32;4022:52;;;4070:1;4067;4060:12;4022:52;4093:29;4112:9;4093:29;:::i;4341:537::-;4436:6;4444;4452;4460;4513:3;4501:9;4492:7;4488:23;4484:33;4481:53;;;4530:1;4527;4520:12;4481:53;4553:29;4572:9;4553:29;:::i;:::-;4543:39;;4601:38;4635:2;4624:9;4620:18;4601:38;:::i;:::-;4591:48;;4686:2;4675:9;4671:18;4658:32;4648:42;;4741:2;4730:9;4726:18;4713:32;4768:18;4760:6;4757:30;4754:50;;;4800:1;4797;4790:12;4754:50;4823:49;4864:7;4855:6;4844:9;4840:22;4823:49;:::i;:::-;4813:59;;;4341:537;;;;;;;:::o;4883:260::-;4951:6;4959;5012:2;5000:9;4991:7;4987:23;4983:32;4980:52;;;5028:1;5025;5018:12;4980:52;5051:29;5070:9;5051:29;:::i;:::-;5041:39;;5099:38;5133:2;5122:9;5118:18;5099:38;:::i;:::-;5089:48;;4883:260;;;;;:::o;5148:380::-;5227:1;5223:12;;;;5270;;;5291:61;;5345:4;5337:6;5333:17;5323:27;;5291:61;5398:2;5390:6;5387:14;5367:18;5364:38;5361:161;;;5444:10;5439:3;5435:20;5432:1;5425:31;5479:4;5476:1;5469:15;5507:4;5504:1;5497:15;5361:161;;5148:380;;;:::o;5942:127::-;6003:10;5998:3;5994:20;5991:1;5984:31;6034:4;6031:1;6024:15;6058:4;6055:1;6048:15;6074:128;6114:3;6145:1;6141:6;6138:1;6135:13;6132:39;;;6151:18;;:::i;:::-;-1:-1:-1;6187:9:1;;6074:128::o;6207:402::-;6409:2;6391:21;;;6448:2;6428:18;;;6421:30;6487:34;6482:2;6467:18;;6460:62;-1:-1:-1;;;6553:2:1;6538:18;;6531:36;6599:3;6584:19;;6207:402::o;6614:356::-;6816:2;6798:21;;;6835:18;;;6828:30;6894:34;6889:2;6874:18;;6867:62;6961:2;6946:18;;6614:356::o;10219:489::-;-1:-1:-1;;;;;10488:15:1;;;10470:34;;10540:15;;10535:2;10520:18;;10513:43;10587:2;10572:18;;10565:34;;;10635:3;10630:2;10615:18;;10608:31;;;10413:4;;10656:46;;10682:19;;10674:6;10656:46;:::i;:::-;10648:54;10219:489;-1:-1:-1;;;;;;10219:489:1:o;10713:249::-;10782:6;10835:2;10823:9;10814:7;10810:23;10806:32;10803:52;;;10851:1;10848;10841:12;10803:52;10883:9;10877:16;10902:30;10926:5;10902:30;:::i;11772:125::-;11812:4;11840:1;11837;11834:8;11831:34;;;11845:18;;:::i;:::-;-1:-1:-1;11882:9:1;;11772:125::o;11902:386::-;12134:1;12130;12125:3;12121:11;12117:19;12109:6;12105:32;12094:9;12087:51;12174:6;12169:2;12158:9;12154:18;12147:34;12217:2;12212;12201:9;12197:18;12190:30;12068:4;12237:45;12278:2;12267:9;12263:18;12255:6;12237:45;:::i;:::-;12229:53;11902:386;-1:-1:-1;;;;;11902:386:1:o

Swarm Source

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