ETH Price: $2,949.29 (-2.16%)
Gas: 2 Gwei

Contract

0x5989827190d3969c04767304bA22a2d126124d56
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer198672572024-05-14 9:07:592 days ago1715677679IN
0x59898271...126124d56
0 ETH0.000338169.80000388
Transfer197369562024-04-26 3:48:3521 days ago1714103315IN
0x59898271...126124d56
0 ETH0.000358236.93839725
Transfer197369272024-04-26 3:42:4721 days ago1714102967IN
0x59898271...126124d56
0 ETH0.000169815.7164858
Transfer197227892024-04-24 4:14:2323 days ago1713932063IN
0x59898271...126124d56
0 ETH0.000460099.82963001
Transfer195366022024-03-29 2:11:1149 days ago1711678271IN
0x59898271...126124d56
0 ETH0.0007391924.87279858
Transfer195308992024-03-28 6:43:1149 days ago1711608191IN
0x59898271...126124d56
0 ETH0.0012551624.31589088
Transfer193124292024-02-26 14:47:1180 days ago1708958831IN
0x59898271...126124d56
0 ETH0.0020624669.42692922
Transfer193124292024-02-26 14:47:1180 days ago1708958831IN
0x59898271...126124d56
0 ETH0.0020624669.42692922
Transfer193124292024-02-26 14:47:1180 days ago1708958831IN
0x59898271...126124d56
0 ETH0.0020624669.42692922
Transfer193124292024-02-26 14:47:1180 days ago1708958831IN
0x59898271...126124d56
0 ETH0.0020632969.42692922
Transfer193123882024-02-26 14:38:5980 days ago1708958339IN
0x59898271...126124d56
0 ETH0.0020232468.10679985
Transfer189056162023-12-31 12:59:35137 days ago1704027575IN
0x59898271...126124d56
0 ETH0.0007399314.33120546
Transfer187444142023-12-08 22:08:23160 days ago1702073303IN
0x59898271...126124d56
0 ETH0.0016208346.97108785
Transfer184717512023-10-31 17:58:47198 days ago1698775127IN
0x59898271...126124d56
0 ETH0.0013819526.77853711
Approve183424062023-10-13 15:36:47216 days ago1697211407IN
0x59898271...126124d56
0 ETH0.0008849419
Transfer183027112023-10-08 2:12:59222 days ago1696731179IN
0x59898271...126124d56
0 ETH0.000374888.00719377
Transfer180377542023-08-31 23:12:59259 days ago1693523579IN
0x59898271...126124d56
0 ETH0.0008863517.17902713
Transfer177132042023-07-17 13:13:47304 days ago1689599627IN
0x59898271...126124d56
0 ETH0.0014129727.39220386
Transfer177129942023-07-17 12:31:23304 days ago1689597083IN
0x59898271...126124d56
0 ETH0.0011307721.90103538
Transfer174644742023-06-12 14:09:11339 days ago1686578951IN
0x59898271...126124d56
0 ETH0.00092219.6879231
Approve172462072023-05-12 20:03:11370 days ago1683921791IN
0x59898271...126124d56
0 ETH0.00647406139
Transfer170514092023-04-15 9:04:35397 days ago1681549475IN
0x59898271...126124d56
0 ETH0.0008185823.72222954
Transfer170512142023-04-15 8:24:23397 days ago1681547063IN
0x59898271...126124d56
0 ETH0.000795623.05644011
Transfer170497612023-04-15 3:25:35398 days ago1681529135IN
0x59898271...126124d56
0 ETH0.0006652922.38606021
Transfer170490752023-04-15 1:03:59398 days ago1681520639IN
0x59898271...126124d56
0 ETH0.0008290724.00949389
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
162474932022-12-23 12:42:47510 days ago1671799367
0x59898271...126124d56
0.1 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xCDc452bf...4F0A2aDEE
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CoinToken

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

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 public _owner;

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


    /**
     * @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 private immutable _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();
    }
}





pragma solidity ^0.8.0;





contract CoinToken is ERC20Decimals, ERC20Mintable, ERC20Burnable, ERC1363, TokenRecover {
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 initialBalance_,
        address tokenOwner,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_) ERC20Decimals(decimals_)  {
        payable(feeReceiver_).transfer(msg.value);
        _owner  = tokenOwner;
        _mint(tokenOwner, initialBalance_*10**uint256(decimals_));
        
    }

    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","name":"tokenOwner","type":"address"},{"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":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a9059cbb11610097578063cae9ca5111610071578063cae9ca51146103d0578063d8fbe994146103e3578063dd62ed3e146103f6578063f2fde38b1461042f57600080fd5b8063a9059cbb14610392578063b2bdfa7b146103a5578063c1d34b89146103bd57600080fd5b80638980f11f116100d35780638980f11f1461033a5780638da5cb5b1461034d57806395d89b4114610377578063a457c2d71461037f57600080fd5b8063715018a61461031757806379cc67901461031f5780637d64bcb41461033257600080fd5b8063313ce567116101665780634000aea0116101405780634000aea0146102b357806340c10f19146102c657806342966c68146102db57806370a08231146102ee57600080fd5b8063313ce5671461025c5780633177029f1461028d57806339509351146102a057600080fd5b8063095ea7b3116101a2578063095ea7b3146102115780631296ee621461022457806318160ddd1461023757806323b872dd1461024957600080fd5b806301ffc9a7146101c957806305d2035b146101f157806306fdde03146101fc575b600080fd5b6101dc6101d73660046114d8565b610442565b60405190151581526020015b60405180910390f35b60055460ff166101dc565b610204610479565b6040516101e891906115e5565b6101dc61021f366004611435565b61050b565b6101dc610232366004611435565b610521565b6002545b6040519081526020016101e8565b6101dc610257366004611391565b610544565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000121681526020016101e8565b6101dc61029b366004611435565b6105fa565b6101dc6102ae366004611435565b610616565b6101dc6102c136600461145f565b61064d565b6102d96102d4366004611435565b61068c565b005b6102d96102e9366004611512565b6106bd565b61023b6102fc366004611343565b6001600160a01b031660009081526020819052604090205490565b6102d96106ca565b6102d961032d366004611435565b61074a565b6102d96107d2565b6102d9610348366004611435565b6107ff565b60055461010090046001600160a01b03165b6040516001600160a01b0390911681526020016101e8565b6102046108d6565b6101dc61038d366004611435565b6108e5565b6101dc6103a0366004611435565b610976565b60055461035f9061010090046001600160a01b031681565b6101dc6103cb3660046113cd565b610983565b6101dc6103de36600461145f565b6109c1565b6101dc6103f1366004611391565b610a33565b61023b61040436600461135e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102d961043d366004611343565b610a50565b60006001600160e01b0319821663b0202a1160e01b148061047357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610488906116e4565b80601f01602080910402602001604051908101604052809291908181526020018280546104b4906116e4565b80156105015780601f106104d657610100808354040283529160200191610501565b820191906000526020600020905b8154815290600101906020018083116104e457829003601f168201915b5050505050905090565b6000610518338484610c2b565b50600192915050565b600061053d83836040518060200160405280600081525061064d565b9392505050565b6000610551848484610d50565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105db5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105ef85336105ea86856116cd565b610c2b565b506001949350505050565b600061053d8383604051806020016040528060008152506109c1565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105189185906105ea9086906116b5565b60006106598484610976565b5061066633858585610f28565b6106825760405162461bcd60e51b81526004016105d2906115f8565b5060019392505050565b60055460ff16156106af5760405162461bcd60e51b81526004016105d290611673565b6106b98282610fe6565b5050565b6106c73382611020565b50565b6005546001600160a01b036101009091041633146106fa5760405162461bcd60e51b81526004016105d29061163e565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006107568333610404565b9050818110156107b45760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105d2565b6107c383336105ea85856116cd565b6107cd8383611020565b505050565b60055460ff16156107f55760405162461bcd60e51b81526004016105d290611673565b6107fd61116f565b565b6005546001600160a01b0361010090910416331461082f5760405162461bcd60e51b81526004016105d29061163e565b816001600160a01b031663a9059cbb6108566005546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b15801561089e57600080fd5b505af11580156108b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cd91906114b6565b606060048054610488906116e4565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109675760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105d2565b61068233856105ea86856116cd565b6000610518338484610d50565b6000610990858585610544565b5061099d85858585610f28565b6105ef5760405162461bcd60e51b81526004016105d2906115f8565b949350505050565b60006109cd848461050b565b506109d98484846111a7565b6106825760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b60648201526084016105d2565b60006109b984848460405180602001604052806000815250610983565b6005546001600160a01b03610100909104163314610a805760405162461bcd60e51b81526004016105d29061163e565b6001600160a01b038116610ae55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d2565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b038216610ba25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d2565b8060026000828254610bb491906116b5565b90915550506001600160a01b03821660009081526020819052604081208054839290610be19084906116b5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610c8d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d2565b6001600160a01b038216610cee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610db45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105d2565b6001600160a01b038216610e165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105d2565b6001600160a01b03831660009081526020819052604090205481811015610e8e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d2565b610e9882826116cd565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610ece9084906116b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1a91815260200190565b60405180910390a350505050565b60006001600160a01b0384163b610f41575060006109b9565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c90610f769033908a9089908990600401611578565b602060405180830381600087803b158015610f9057600080fd5b505af1158015610fa4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc891906114f5565b6001600160e01b031916632229f29760e21b14915050949350505050565b6005546001600160a01b036101009091041633146110165760405162461bcd60e51b81526004016105d29061163e565b6106b98282610b4c565b6001600160a01b0382166110805760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105d2565b6001600160a01b038216600090815260208190526040902054818110156110f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105d2565b6110fe82826116cd565b6001600160a01b0384166000908152602081905260408120919091556002805484929061112c9084906116cd565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d43565b6005546001600160a01b0361010090910416331461119f5760405162461bcd60e51b81526004016105d29061163e565b6107fd611262565b60006001600160a01b0384163b6111c05750600061053d565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d0906111f3903390889088906004016115b5565b602060405180830381600087803b15801561120d57600080fd5b505af1158015611221573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124591906114f5565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a1565b80356001600160a01b03811681146112b157600080fd5b919050565b600082601f8301126112c757600080fd5b813567ffffffffffffffff808211156112e2576112e2611735565b604051601f8301601f19908116603f0116810190828211818310171561130a5761130a611735565b8160405283815286602085880101111561132357600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561135557600080fd5b61053d8261129a565b6000806040838503121561137157600080fd5b61137a8361129a565b91506113886020840161129a565b90509250929050565b6000806000606084860312156113a657600080fd5b6113af8461129a565b92506113bd6020850161129a565b9150604084013590509250925092565b600080600080608085870312156113e357600080fd5b6113ec8561129a565b93506113fa6020860161129a565b925060408501359150606085013567ffffffffffffffff81111561141d57600080fd5b611429878288016112b6565b91505092959194509250565b6000806040838503121561144857600080fd5b6114518361129a565b946020939093013593505050565b60008060006060848603121561147457600080fd5b61147d8461129a565b925060208401359150604084013567ffffffffffffffff8111156114a057600080fd5b6114ac868287016112b6565b9150509250925092565b6000602082840312156114c857600080fd5b8151801515811461053d57600080fd5b6000602082840312156114ea57600080fd5b813561053d8161174b565b60006020828403121561150757600080fd5b815161053d8161174b565b60006020828403121561152457600080fd5b5035919050565b6000815180845260005b8181101561155157602081850181015186830182015201611535565b81811115611563576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906115ab9083018461152b565b9695505050505050565b60018060a01b03841681528260208201526060604082015260006115dc606083018461152b565b95945050505050565b60208152600061053d602083018461152b565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f45524332304d696e7461626c653a206d696e74696e672069732066696e697368604082015261195960f21b606082015260800190565b600082198211156116c8576116c861171f565b500190565b6000828210156116df576116df61171f565b500390565b600181811c908216806116f857607f821691505b6020821081141561171957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106c757600080fdfea2646970667358221220378e4a6199724fb1da85e63527dee281fb3c0bf50d14cb011b814710fb25c92064736f6c63430008050033

Deployed Bytecode Sourcemap

44440:1347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33470:215;;;;;;:::i;:::-;;:::i;:::-;;;5954:14:1;;5947:22;5929:41;;5917:2;5902:18;33470:215:0;;;;;;;;43412:98;43486:16;;;;43412:98;;6476:100;;;:::i;:::-;;;;;;;:::i;8643:169::-;;;;;;:::i;:::-;;:::i;33984:163::-;;;;;;:::i;:::-;;:::i;7596:108::-;7684:12;;7596:108;;;12745:25:1;;;12733:2;12718:18;7596:108:0;12700:76:1;9294:422:0;;;;;;:::i;:::-;;:::i;44978:129::-;;;12953:4:1;42665:9:0;12941:17:1;12923:36;;12911:2;12896:18;44978:129:0;12878:87:1;36613:157:0;;;;;;:::i;:::-;;:::i;10125:215::-;;;;;;:::i;:::-;;:::i;34505:342::-;;;;;;:::i;:::-;;:::i;43822:105::-;;;;;;:::i;:::-;;:::i;:::-;;15738:91;;;;;;:::i;:::-;;:::i;7767:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7868:18:0;7841:7;7868:18;;;;;;;;;;;;7767:127;40845:148;;;:::i;16148:332::-;;;;;;:::i;:::-;;:::i;44120:77::-;;;:::i;41874:160::-;;;;;;:::i;:::-;;:::i;40194:87::-;40267:6;;;;;-1:-1:-1;;;;;40267:6:0;40194:87;;;-1:-1:-1;;;;;4583:32:1;;;4565:51;;4553:2;4538:18;40194:87:0;4520:102:1;6695:104:0;;;:::i;10843:377::-;;;;;;:::i;:::-;;:::i;8107:175::-;;;;;;:::i;:::-;;:::i;39997:21::-;;;;;;;;-1:-1:-1;;;;;39997:21:0;;;35929:377;;;;;;:::i;:::-;;:::i;37141:318::-;;;;;;:::i;:::-;;:::i;35243:229::-;;;;;;:::i;:::-;;:::i;8345:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8461:18:0;;;8434:7;8461:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8345:151;41148:244;;;;;;:::i;:::-;;:::i;33470:215::-;33572:4;-1:-1:-1;;;;;;33596:41:0;;-1:-1:-1;;;33596:41:0;;:81;;-1:-1:-1;;;;;;;;;;26268:40:0;;;33641:36;33589:88;33470:215;-1:-1:-1;;33470:215:0:o;6476:100::-;6530:13;6563:5;6556:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6476:100;:::o;8643:169::-;8726:4;8743:39;4143:10;8766:7;8775:6;8743:8;:39::i;:::-;-1:-1:-1;8800:4:0;8643:169;;;;:::o;33984:163::-;34077:4;34101:38;34117:9;34128:6;34101:38;;;;;;;;;;;;:15;:38::i;:::-;34094:45;33984:163;-1:-1:-1;;;33984:163:0:o;9294:422::-;9400:4;9417:36;9427:6;9435:9;9446:6;9417:9;:36::i;:::-;-1:-1:-1;;;;;9493:19:0;;9466:24;9493:19;;;:11;:19;;;;;;;;4143:10;9493:33;;;;;;;;9545:26;;;;9537:79;;;;-1:-1:-1;;;9537:79:0;;9244:2:1;9537:79:0;;;9226:21:1;9283:2;9263:18;;;9256:30;9322:34;9302:18;;;9295:62;-1:-1:-1;;;9373:18:1;;;9366:38;9421:19;;9537:79:0;;;;;;;;;9627:57;9636:6;4143:10;9658:25;9677:6;9658:16;:25;:::i;:::-;9627:8;:57::i;:::-;-1:-1:-1;9704:4:0;;9294:422;-1:-1:-1;;;;9294:422:0:o;36613:157::-;36703:4;36727:35;36742:7;36751:6;36727:35;;;;;;;;;;;;:14;:35::i;10125:215::-;4143:10;10213:4;10262:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10262:34:0;;;;;;;;;;10213:4;;10230:80;;10253:7;;10262:47;;10299:10;;10262:47;:::i;34505:342::-;34651:4;34668:27;34677:9;34688:6;34668:8;:27::i;:::-;-1:-1:-1;34714:60:0;4143:10;34750:9;34761:6;34769:4;34714:21;:60::i;:::-;34706:111;;;;-1:-1:-1;;;34706:111:0;;;;;;;:::i;:::-;-1:-1:-1;34835:4:0;34505:342;;;;;:::o;43822:105::-;43264:16;;;;43263:17;43255:64;;;;-1:-1:-1;;;43255:64:0;;;;;;;:::i;:::-;43897:22:::1;43903:7;43912:6;43897:5;:22::i;:::-;43822:105:::0;;:::o;15738:91::-;15794:27;4143:10;15814:6;15794:5;:27::i;:::-;15738:91;:::o;40845:148::-;40267:6;;-1:-1:-1;;;;;40267:6:0;;;;;4143:10;40414:23;40406:68;;;;-1:-1:-1;;;40406:68:0;;;;;;;:::i;:::-;40936:6:::1;::::0;40915:40:::1;::::0;40952:1:::1;::::0;40936:6:::1;::::0;::::1;-1:-1:-1::0;;;;;40936:6:0::1;::::0;40915:40:::1;::::0;40952:1;;40915:40:::1;40966:6;:19:::0;;-1:-1:-1;;;;;;40966:19:0::1;::::0;;40845:148::o;16148:332::-;16225:24;16252:32;16262:7;4143:10;8345:151;:::i;16252:32::-;16225:59;;16323:6;16303:16;:26;;16295:75;;;;-1:-1:-1;;;16295:75:0;;10014:2:1;16295:75:0;;;9996:21:1;10053:2;10033:18;;;10026:30;10092:34;10072:18;;;10065:62;-1:-1:-1;;;10143:18:1;;;10136:34;10187:19;;16295:75:0;9986:226:1;16295:75:0;16381:58;16390:7;4143:10;16413:25;16432:6;16413:16;:25;:::i;16381:58::-;16450:22;16456:7;16465:6;16450:5;:22::i;:::-;16214:266;16148:332;;:::o;44120:77::-;43264:16;;;;43263:17;43255:64;;;;-1:-1:-1;;;43255:64:0;;;;;;;:::i;:::-;44173:16:::1;:14;:16::i;:::-;44120:77::o:0;41874:160::-;40267:6;;-1:-1:-1;;;;;40267:6:0;;;;;4143:10;40414:23;40406:68;;;;-1:-1:-1;;;40406:68:0;;;;;;;:::i;:::-;41982:12:::1;-1:-1:-1::0;;;;;41975:29:0::1;;42005:7;40267:6:::0;;-1:-1:-1;;;;;40267:6:0;;;;;;40194:87;42005:7:::1;41975:51;::::0;-1:-1:-1;;;;;;41975:51:0::1;::::0;;;;;;-1:-1:-1;;;;;5312:32:1;;;41975:51:0::1;::::0;::::1;5294::1::0;5361:18;;;5354:34;;;5267:18;;41975:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6695:104::-:0;6751:13;6784:7;6777:14;;;;;:::i;10843:377::-;4143:10;10936:4;10980:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10980:34:0;;;;;;;;;;11033:35;;;;11025:85;;;;-1:-1:-1;;;11025:85:0;;12035:2:1;11025:85:0;;;12017:21:1;12074:2;12054:18;;;12047:30;12113:34;12093:18;;;12086:62;-1:-1:-1;;;12164:18:1;;;12157:35;12209:19;;11025:85:0;12007:227:1;11025:85:0;11121:67;4143:10;11144:7;11153:34;11172:15;11153:16;:34;:::i;8107:175::-;8193:4;8210:42;4143:10;8234:9;8245:6;8210:9;:42::i;35929:377::-;36104:4;36121:39;36134:6;36142:9;36153:6;36121:12;:39::i;:::-;;36179:54;36201:6;36209:9;36220:6;36228:4;36179:21;:54::i;:::-;36171:105;;;;-1:-1:-1;;;36171:105:0;;;;;;;:::i;35929:377::-;;;;;;;:::o;37141:318::-;37284:4;37301:24;37309:7;37318:6;37301:7;:24::i;:::-;;37344:43;37365:7;37374:6;37382:4;37344:20;:43::i;:::-;37336:93;;;;-1:-1:-1;;;37336:93:0;;8024:2:1;37336:93:0;;;8006:21:1;8063:2;8043:18;;;8036:30;8102:34;8082:18;;;8075:62;-1:-1:-1;;;8153:18:1;;;8146:35;8198:19;;37336:93:0;7996:227:1;35243:229:0;35390:4;35414:50;35434:6;35442:9;35453:6;35414:50;;;;;;;;;;;;:19;:50::i;41148:244::-;40267:6;;-1:-1:-1;;;;;40267:6:0;;;;;4143:10;40414:23;40406:68;;;;-1:-1:-1;;;40406:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41237:22:0;::::1;41229:73;;;::::0;-1:-1:-1;;;41229:73:0;;7214:2:1;41229:73:0::1;::::0;::::1;7196:21:1::0;7253:2;7233:18;;;7226:30;7292:34;7272:18;;;7265:62;-1:-1:-1;;;7343:18:1;;;7336:36;7389:19;;41229:73:0::1;7186:228:1::0;41229:73:0::1;41339:6;::::0;41318:38:::1;::::0;-1:-1:-1;;;;;41318:38:0;;::::1;::::0;41339:6:::1;::::0;::::1;;::::0;41318:38:::1;::::0;;;::::1;41367:6;:17:::0;;-1:-1:-1;;;;;41367:17:0;;::::1;;;-1:-1:-1::0;;;;;;41367:17:0;;::::1;::::0;;;::::1;::::0;;41148:244::o;12596:338::-;-1:-1:-1;;;;;12680:21:0;;12672:65;;;;-1:-1:-1;;;12672:65:0;;12441:2:1;12672:65:0;;;12423:21:1;12480:2;12460:18;;;12453:30;12519:33;12499:18;;;12492:61;12570:18;;12672:65:0;12413:181:1;12672:65:0;12828:6;12812:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12845:18:0;;:9;:18;;;;;;;;;;:28;;12867:6;;12845:9;:28;;12867:6;;12845:28;:::i;:::-;;;;-1:-1:-1;;12889:37:0;;12745:25:1;;;-1:-1:-1;;;;;12889:37:0;;;12906:1;;12889:37;;12733:2:1;12718:18;12889:37:0;;;;;;;12596:338;;:::o;14199:346::-;-1:-1:-1;;;;;14301:19:0;;14293:68;;;;-1:-1:-1;;;14293:68:0;;11227:2:1;14293:68:0;;;11209:21:1;11266:2;11246:18;;;11239:30;11305:34;11285:18;;;11278:62;-1:-1:-1;;;11356:18:1;;;11349:34;11400:19;;14293:68:0;11199:226:1;14293:68:0;-1:-1:-1;;;;;14380:21:0;;14372:68;;;;-1:-1:-1;;;14372:68:0;;7621:2:1;14372:68:0;;;7603:21:1;7660:2;7640:18;;;7633:30;7699:34;7679:18;;;7672:62;-1:-1:-1;;;7750:18:1;;;7743:32;7792:19;;14372:68:0;7593:224:1;14372:68:0;-1:-1:-1;;;;;14453:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14505:32;;12745:25:1;;;14505:32:0;;12718:18:1;14505:32:0;;;;;;;;14199:346;;;:::o;11710:604::-;-1:-1:-1;;;;;11816:20:0;;11808:70;;;;-1:-1:-1;;;11808:70:0;;10821:2:1;11808:70:0;;;10803:21:1;10860:2;10840:18;;;10833:30;10899:34;10879:18;;;10872:62;-1:-1:-1;;;10950:18:1;;;10943:35;10995:19;;11808:70:0;10793:227:1;11808:70:0;-1:-1:-1;;;;;11897:23:0;;11889:71;;;;-1:-1:-1;;;11889:71:0;;6407:2:1;11889:71:0;;;6389:21:1;6446:2;6426:18;;;6419:30;6485:34;6465:18;;;6458:62;-1:-1:-1;;;6536:18:1;;;6529:33;6579:19;;11889:71:0;6379:225:1;11889:71:0;-1:-1:-1;;;;;12057:17:0;;12033:21;12057:17;;;;;;;;;;;12093:23;;;;12085:74;;;;-1:-1:-1;;;12085:74:0;;8430:2:1;12085:74:0;;;8412:21:1;8469:2;8449:18;;;8442:30;8508:34;8488:18;;;8481:62;-1:-1:-1;;;8559:18:1;;;8552:36;8605:19;;12085:74:0;8402:228:1;12085:74:0;12190:22;12206:6;12190:13;:22;:::i;:::-;-1:-1:-1;;;;;12170:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12223:20;;;;;;;;:30;;12247:6;;12170:9;12223:30;;12247:6;;12223:30;:::i;:::-;;;;;;;;12288:9;-1:-1:-1;;;;;12271:35:0;12280:6;-1:-1:-1;;;;;12271:35:0;;12299:6;12271:35;;;;12745:25:1;;12733:2;12718:18;;12700:76;12271:35:0;;;;;;;;11797:517;11710:604;;;:::o;38025:456::-;38195:4;-1:-1:-1;;;;;38217:20:0;;17620;38212:68;;-1:-1:-1;38263:5:0;38256:12;;38212:68;38306:82;;-1:-1:-1;;;38306:82:0;;38290:13;;-1:-1:-1;;;;;38306:46:0;;;;;:82;;4143:10;;38367:6;;38375;;38383:4;;38306:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38407:65:0;-1:-1:-1;;;38407:65:0;;-1:-1:-1;;38025:456:0;;;;;;:::o;45399:123::-;40267:6;;-1:-1:-1;;;;;40267:6:0;;;;;4143:10;40414:23;40406:68;;;;-1:-1:-1;;;40406:68:0;;;;;;;:::i;:::-;45486:28:::1;45498:7;45507:6;45486:11;:28::i;13267:494::-:0;-1:-1:-1;;;;;13351:21:0;;13343:67;;;;-1:-1:-1;;;13343:67:0;;10419:2:1;13343:67:0;;;10401:21:1;10458:2;10438:18;;;10431:30;10497:34;10477:18;;;10470:62;-1:-1:-1;;;10548:18:1;;;10541:31;10589:19;;13343:67:0;10391:223:1;13343:67:0;-1:-1:-1;;;;;13510:18:0;;13485:22;13510:18;;;;;;;;;;;13547:24;;;;13539:71;;;;-1:-1:-1;;;13539:71:0;;6811:2:1;13539:71:0;;;6793:21:1;6850:2;6830:18;;;6823:30;6889:34;6869:18;;;6862:62;-1:-1:-1;;;6940:18:1;;;6933:32;6982:19;;13539:71:0;6783:224:1;13539:71:0;13642:23;13659:6;13642:14;:23;:::i;:::-;-1:-1:-1;;;;;13621:18:0;;:9;:18;;;;;;;;;;:44;;;;13676:12;:22;;13692:6;;13621:9;13676:22;;13692:6;;13676:22;:::i;:::-;;;;-1:-1:-1;;13716:37:0;;12745:25:1;;;13742:1:0;;-1:-1:-1;;;;;13716:37:0;;;;;12733:2:1;12718:18;13716:37:0;12700:76:1;45689:95:0;40267:6;;-1:-1:-1;;;;;40267:6:0;;;;;4143:10;40414:23;40406:68;;;;-1:-1:-1;;;40406:68:0;;;;;;;:::i;:::-;45754:22:::1;:20;:22::i;38941:412::-:0;39083:4;-1:-1:-1;;;;;39105:18:0;;17620:20;39100:66;;-1:-1:-1;39149:5:0;39142:12;;39100:66;39192:71;;-1:-1:-1;;;39192:71:0;;39176:13;;-1:-1:-1;;;;;39192:43:0;;;;;:71;;4143:10;;39250:6;;39258:4;;39192:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;39282:62:0;-1:-1:-1;;;39282:62:0;;-1:-1:-1;;38941:412:0;;;;;:::o;44273:117::-;44327:16;:23;;-1:-1:-1;;44327:23:0;44346:4;44327:23;;;44368:14;;;;44327:16;;44368:14;44273: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:718::-;234:5;287:3;280:4;272:6;268:17;264:27;254:2;;305:1;302;295:12;254:2;341:6;328:20;367:18;404:2;400;397:10;394:2;;;410:18;;:::i;:::-;485:2;479:9;453:2;539:13;;-1:-1:-1;;535:22:1;;;559:2;531:31;527:40;515:53;;;583:18;;;603:22;;;580:46;577:2;;;629:18;;:::i;:::-;669:10;665:2;658:22;704:2;696:6;689:18;750:3;743:4;738:2;730:6;726:15;722:26;719:35;716:2;;;767:1;764;757:12;716:2;831;824:4;816:6;812:17;805:4;797:6;793:17;780:54;878:1;871:4;866:2;858:6;854:15;850:26;843:37;898:6;889:15;;;;;;244:666;;;;:::o;915:186::-;974:6;1027:2;1015:9;1006:7;1002:23;998:32;995:2;;;1043:1;1040;1033:12;995:2;1066:29;1085:9;1066:29;:::i;1106:260::-;1174:6;1182;1235:2;1223:9;1214:7;1210:23;1206:32;1203:2;;;1251:1;1248;1241:12;1203:2;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1193:173;;;;;:::o;1371:328::-;1448:6;1456;1464;1517:2;1505:9;1496:7;1492:23;1488:32;1485:2;;;1533:1;1530;1523:12;1485:2;1556:29;1575:9;1556:29;:::i;:::-;1546:39;;1604:38;1638:2;1627:9;1623:18;1604:38;:::i;:::-;1594:48;;1689:2;1678:9;1674:18;1661:32;1651:42;;1475:224;;;;;:::o;1704:537::-;1799:6;1807;1815;1823;1876:3;1864:9;1855:7;1851:23;1847:33;1844:2;;;1893:1;1890;1883:12;1844:2;1916:29;1935:9;1916:29;:::i;:::-;1906:39;;1964:38;1998:2;1987:9;1983:18;1964:38;:::i;:::-;1954:48;;2049:2;2038:9;2034:18;2021:32;2011:42;;2104:2;2093:9;2089:18;2076:32;2131:18;2123:6;2120:30;2117:2;;;2163:1;2160;2153:12;2117:2;2186:49;2227:7;2218:6;2207:9;2203:22;2186:49;:::i;:::-;2176:59;;;1834:407;;;;;;;:::o;2246:254::-;2314:6;2322;2375:2;2363:9;2354:7;2350:23;2346:32;2343:2;;;2391:1;2388;2381:12;2343:2;2414:29;2433:9;2414:29;:::i;:::-;2404:39;2490:2;2475:18;;;;2462:32;;-1:-1:-1;;;2333:167:1:o;2505:462::-;2591:6;2599;2607;2660:2;2648:9;2639:7;2635:23;2631:32;2628:2;;;2676:1;2673;2666:12;2628:2;2699:29;2718:9;2699:29;:::i;:::-;2689:39;;2775:2;2764:9;2760:18;2747:32;2737:42;;2830:2;2819:9;2815:18;2802:32;2857:18;2849:6;2846:30;2843:2;;;2889:1;2886;2879:12;2843:2;2912:49;2953:7;2944:6;2933:9;2929:22;2912:49;:::i;:::-;2902:59;;;2618:349;;;;;:::o;2972:277::-;3039:6;3092:2;3080:9;3071:7;3067:23;3063:32;3060:2;;;3108:1;3105;3098:12;3060:2;3140:9;3134:16;3193:5;3186:13;3179:21;3172:5;3169:32;3159:2;;3215:1;3212;3205:12;3254:245;3312:6;3365:2;3353:9;3344:7;3340:23;3336:32;3333:2;;;3381:1;3378;3371:12;3333:2;3420:9;3407:23;3439:30;3463:5;3439:30;:::i;3504:249::-;3573:6;3626:2;3614:9;3605:7;3601:23;3597:32;3594:2;;;3642:1;3639;3632:12;3594:2;3674:9;3668:16;3693:30;3717:5;3693:30;:::i;3758:180::-;3817:6;3870:2;3858:9;3849:7;3845:23;3841:32;3838:2;;;3886:1;3883;3876:12;3838:2;-1:-1:-1;3909:23:1;;3828:110;-1:-1:-1;3828:110:1:o;3943:471::-;3984:3;4022:5;4016:12;4049:6;4044:3;4037:19;4074:1;4084:162;4098:6;4095:1;4092:13;4084:162;;;4160:4;4216:13;;;4212:22;;4206:29;4188:11;;;4184:20;;4177:59;4113:12;4084:162;;;4264:6;4261:1;4258:13;4255:2;;;4330:1;4323:4;4314:6;4309:3;4305:16;4301:27;4294:38;4255:2;-1:-1:-1;4396:2:1;4375:15;-1:-1:-1;;4371:29:1;4362:39;;;;4403:4;4358:50;;3992:422;-1:-1:-1;;3992:422:1:o;4627:488::-;-1:-1:-1;;;;;4896:15:1;;;4878:34;;4948:15;;4943:2;4928:18;;4921:43;4995:2;4980:18;;4973:34;;;5043:3;5038:2;5023:18;;5016:31;;;4821:4;;5064:45;;5089:19;;5081:6;5064:45;:::i;:::-;5056:53;4830:285;-1:-1:-1;;;;;;4830:285:1:o;5399:385::-;5631:1;5627;5622:3;5618:11;5614:19;5606:6;5602:32;5591:9;5584:51;5671:6;5666:2;5655:9;5651:18;5644:34;5714:2;5709;5698:9;5694:18;5687:30;5565:4;5734:44;5774:2;5763:9;5759:18;5751:6;5734:44;:::i;:::-;5726:52;5574:210;-1:-1:-1;;;;;5574:210:1:o;5981:219::-;6130:2;6119:9;6112:21;6093:4;6150:44;6190:2;6179:9;6175:18;6167:6;6150:44;:::i;8635:402::-;8837:2;8819:21;;;8876:2;8856:18;;;8849:30;8915:34;8910:2;8895:18;;8888:62;-1:-1:-1;;;8981:2:1;8966:18;;8959:36;9027:3;9012:19;;8809:228::o;9451:356::-;9653:2;9635:21;;;9672:18;;;9665:30;9731:34;9726:2;9711:18;;9704:62;9798:2;9783:18;;9625:182::o;11430:398::-;11632:2;11614:21;;;11671:2;11651:18;;;11644:30;11710:34;11705:2;11690:18;;11683:62;-1:-1:-1;;;11776:2:1;11761:18;;11754:32;11818:3;11803:19;;11604:224::o;12970:128::-;13010:3;13041:1;13037:6;13034:1;13031:13;13028:2;;;13047:18;;:::i;:::-;-1:-1:-1;13083:9:1;;13018:80::o;13103:125::-;13143:4;13171:1;13168;13165:8;13162:2;;;13176:18;;:::i;:::-;-1:-1:-1;13213:9:1;;13152:76::o;13233:380::-;13312:1;13308:12;;;;13355;;;13376:2;;13430:4;13422:6;13418:17;13408:27;;13376:2;13483;13475:6;13472:14;13452:18;13449:38;13446:2;;;13529:10;13524:3;13520:20;13517:1;13510:31;13564:4;13561:1;13554:15;13592:4;13589:1;13582:15;13446:2;;13288:325;;;:::o;13618:127::-;13679:10;13674:3;13670:20;13667:1;13660:31;13710:4;13707:1;13700:15;13734:4;13731:1;13724:15;13750:127;13811:10;13806:3;13802:20;13799:1;13792:31;13842:4;13839:1;13832:15;13866:4;13863:1;13856:15;13882:131;-1:-1:-1;;;;;;13956:32:1;;13946:43;;13936:2;;14003:1;14000;13993:12

Swarm Source

ipfs://378e4a6199724fb1da85e63527dee281fb3c0bf50d14cb011b814710fb25c920

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.