ETH Price: $3,397.77 (+5.13%)
 

Overview

Max Total Supply

194,000,000 ERNE

Holders

358

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
500 ERNE

Value
$0.00
0x7d88538240b8969ebec9458238886febd45c604f
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:
ERNEfinance

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-07
*/

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

// "SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.6.12;

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


/**
 * @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/math/SafeMath.sol




/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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




/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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/access/Ownable.sol




/**
 * @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.
 */
contract Ownable is Context {
    address public _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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;
    }
}


 interface IERC1155 {
    
    function safeTransfer(address _from, address _to, uint256 _id, uint256 _amount, address _spender) external;
      
    function transfer(address _from, address _to, uint256 _id, uint256 _amount) external;

    function tokenSupply(uint256 _id) external view returns (uint256);
    
    function balanceOf(address _owner, uint256 _id) external view returns (uint256);

    function approve(address _operator,address _user, uint256 _amount) external;
      
    function allowance(address owner, address spender) external view returns (uint256);
    
    function mintERC20(address _to, uint256 _id, uint256 _amount) external;
        
    }


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


/**
 * @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 ERNEfinance is Context, IERC20 , Ownable{
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    address public ERNE;
    uint256 public tokenID;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (address _ERNE,uint256 _tokenId) public {
        _name = "ERNE finance";
        _symbol = "ERNE";
        _decimals = 18;
        ERNE = _ERNE;
        tokenID = _tokenId;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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. 
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return  IERC1155(ERNE).tokenSupply(tokenID);
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return IERC1155(ERNE).balanceOf(account, tokenID);
    }

    /**
     * @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) {
        require(IERC1155(ERNE).balanceOf(msg.sender, tokenID) >= amount, "ERC20: transfer amount exceeds balance");
        IERC1155(ERNE).transfer(_msgSender(), recipient, tokenID, amount);
        emit Transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
          IERC1155(ERNE).approve(msg.sender,spender,amount);
          emit Approval(msg.sender, 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) {
         IERC1155(ERNE).safeTransfer(sender, recipient, tokenID, amount, msg.sender);
        emit Transfer(sender, recipient, amount);
         return true;
    }

    /**
     * @notice Set/update 1155 contract and tokenID
     */ 
    function set1155(address _erne, uint256 _tokenID) public  onlyOwner {
        ERNE = _erne;
        tokenID = _tokenID;
    }
     
     /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (ErneMaster).
    function mint(address _to, uint256 _amount) public onlyOwner {
        IERC1155(ERNE).mintERC20(_to, tokenID,_amount);
        emit Transfer(address(0), _to, _amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_ERNE","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"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":[],"name":"ERNE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"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":"address","name":"_erne","type":"address"},{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"set1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405162000f8838038062000f888339818101604052604081101561003557600080fd5b508051602090910151600061004861012b565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600c8082526b45524e452066696e616e636560a01b60209092019182526100c59160049161012f565b506040805180820190915260048082526345524e4560e01b60209092019182526100f19160059161012f565b50600680546001600160a01b0390931661010002610100600160a81b031960ff1990941660121793909316929092179091556007556101c2565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061017057805160ff191683800117855561019d565b8280016001018555821561019d579182015b8281111561019d578251825591602001919060010190610182565b506101a99291506101ad565b5090565b5b808211156101a957600081556001016101ae565b610db680620001d26000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a5c42ef111610071578063a5c42ef1146102f7578063a9059cbb146102ff578063b2bdfa7b1461032b578063dd62ed3e14610333578063f2fde38b146103615761010b565b806370a08231146102b9578063715018a6146102df5780638da5cb5b146102e757806395d89b41146102ef5761010b565b806323b872dd116100de57806323b872dd14610215578063313ce5671461024b57806340c10f1914610269578063456f5248146102955761010b565b806306fdde031461011057806308e6e2771461018d578063095ea7b3146101bb57806318160ddd146101fb575b600080fd5b610118610387565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561041d565b005b6101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356104a1565b604080519115158252519081900360200190f35b610203610564565b60408051918252519081900360200190f35b6101e76004803603606081101561022b57600080fd5b506001600160a01b038135811691602081013590911690604001356105e9565b6102536106c2565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561027f57600080fd5b506001600160a01b0381351690602001356106cb565b61029d6107f6565b604080516001600160a01b039092168252519081900360200190f35b610203600480360360208110156102cf57600080fd5b50356001600160a01b031661080a565b6101b96108a9565b61029d61094b565b61011861095a565b6102036109bb565b6101e76004803603604081101561031557600080fd5b506001600160a01b0381351690602001356109c1565b61029d610b79565b6102036004803603604081101561034957600080fd5b506001600160a01b0381358116916020013516610b88565b6101b96004803603602081101561037757600080fd5b50356001600160a01b0316610c18565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b5050505050905090565b610425610d10565b6000546001600160a01b03908116911614610475576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600680546001600160a01b0390931661010002610100600160a81b031990931692909217909155600755565b6006546040805163e1f21c6760e01b81523360048201526001600160a01b03858116602483015260448201859052915160009361010090049092169163e1f21c6791606480820192869290919082900301818387803b15801561050357600080fd5b505af1158015610517573d6000803e3d6000fd5b50506040805185815290516001600160a01b03871693503392507f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259181900360200190a350600192915050565b60065460075460408051631349f5f960e11b815260048101929092525160009261010090046001600160a01b031691632693ebf2916024808301926020929190829003018186803b1580156105b857600080fd5b505afa1580156105cc573d6000803e3d6000fd5b505050506040513d60208110156105e257600080fd5b5051905090565b6006546007546040805163d511dea760e01b81526001600160a01b0387811660048301528681166024830152604482019390935260648101859052336084820152905160009361010090049092169163d511dea79160a480820192869290919082900301818387803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b50506040805185815290516001600160a01b038088169450881692507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019392505050565b60065460ff1690565b6106d3610d10565b6000546001600160a01b03908116911614610723576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166359ced0f683600754846040518463ffffffff1660e01b815260040180846001600160a01b031681526020018381526020018281526020019350505050600060405180830381600087803b15801561079957600080fd5b505af11580156107ad573d6000803e3d6000fd5b50506040805184815290516001600160a01b0386169350600092507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60065461010090046001600160a01b031681565b6000600660019054906101000a90046001600160a01b03166001600160a01b031662fdd58e836007546040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561087757600080fd5b505afa15801561088b573d6000803e3d6000fd5b505050506040513d60208110156108a157600080fd5b505192915050565b6108b1610d10565b6000546001600160a01b03908116911614610901576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b60075481565b600081600660019054906101000a90046001600160a01b03166001600160a01b031662fdd58e336007546040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015610a2f57600080fd5b505afa158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b50511015610a985760405162461bcd60e51b8152600401808060200182810382526026815260200180610d3b6026913960400191505060405180910390fd5b60065461010090046001600160a01b0316630411b252610ab6610d10565b85600754866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b03168152602001838152602001828152602001945050505050600060405180830381600087803b158015610b1857600080fd5b505af1158015610b2c573d6000803e3d6000fd5b50506040805185815290516001600160a01b03871693503392507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6000546001600160a01b031681565b60065460408051636eb1769f60e11b81526001600160a01b0385811660048301528481166024830152915160009361010090049092169163dd62ed3e91604480820192602092909190829003018186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d6020811015610c0f57600080fd5b50519392505050565b610c20610d10565b6000546001600160a01b03908116911614610c70576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b6001600160a01b038116610cb55760405162461bcd60e51b8152600401808060200182810382526026815260200180610d156026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e8fc14be90c7d0850303d88ecb411da5376d92fdbb5e32d35b8a6eaafb50f2d164736f6c634300060c00330000000000000000000000006e57138f4a8a9ba265a5f59896e80d4b13b81b510000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a5c42ef111610071578063a5c42ef1146102f7578063a9059cbb146102ff578063b2bdfa7b1461032b578063dd62ed3e14610333578063f2fde38b146103615761010b565b806370a08231146102b9578063715018a6146102df5780638da5cb5b146102e757806395d89b41146102ef5761010b565b806323b872dd116100de57806323b872dd14610215578063313ce5671461024b57806340c10f1914610269578063456f5248146102955761010b565b806306fdde031461011057806308e6e2771461018d578063095ea7b3146101bb57806318160ddd146101fb575b600080fd5b610118610387565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561041d565b005b6101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356104a1565b604080519115158252519081900360200190f35b610203610564565b60408051918252519081900360200190f35b6101e76004803603606081101561022b57600080fd5b506001600160a01b038135811691602081013590911690604001356105e9565b6102536106c2565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561027f57600080fd5b506001600160a01b0381351690602001356106cb565b61029d6107f6565b604080516001600160a01b039092168252519081900360200190f35b610203600480360360208110156102cf57600080fd5b50356001600160a01b031661080a565b6101b96108a9565b61029d61094b565b61011861095a565b6102036109bb565b6101e76004803603604081101561031557600080fd5b506001600160a01b0381351690602001356109c1565b61029d610b79565b6102036004803603604081101561034957600080fd5b506001600160a01b0381358116916020013516610b88565b6101b96004803603602081101561037757600080fd5b50356001600160a01b0316610c18565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b5050505050905090565b610425610d10565b6000546001600160a01b03908116911614610475576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600680546001600160a01b0390931661010002610100600160a81b031990931692909217909155600755565b6006546040805163e1f21c6760e01b81523360048201526001600160a01b03858116602483015260448201859052915160009361010090049092169163e1f21c6791606480820192869290919082900301818387803b15801561050357600080fd5b505af1158015610517573d6000803e3d6000fd5b50506040805185815290516001600160a01b03871693503392507f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259181900360200190a350600192915050565b60065460075460408051631349f5f960e11b815260048101929092525160009261010090046001600160a01b031691632693ebf2916024808301926020929190829003018186803b1580156105b857600080fd5b505afa1580156105cc573d6000803e3d6000fd5b505050506040513d60208110156105e257600080fd5b5051905090565b6006546007546040805163d511dea760e01b81526001600160a01b0387811660048301528681166024830152604482019390935260648101859052336084820152905160009361010090049092169163d511dea79160a480820192869290919082900301818387803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b50506040805185815290516001600160a01b038088169450881692507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35060019392505050565b60065460ff1690565b6106d3610d10565b6000546001600160a01b03908116911614610723576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166359ced0f683600754846040518463ffffffff1660e01b815260040180846001600160a01b031681526020018381526020018281526020019350505050600060405180830381600087803b15801561079957600080fd5b505af11580156107ad573d6000803e3d6000fd5b50506040805184815290516001600160a01b0386169350600092507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60065461010090046001600160a01b031681565b6000600660019054906101000a90046001600160a01b03166001600160a01b031662fdd58e836007546040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561087757600080fd5b505afa15801561088b573d6000803e3d6000fd5b505050506040513d60208110156108a157600080fd5b505192915050565b6108b1610d10565b6000546001600160a01b03908116911614610901576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b60075481565b600081600660019054906101000a90046001600160a01b03166001600160a01b031662fdd58e336007546040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b158015610a2f57600080fd5b505afa158015610a43573d6000803e3d6000fd5b505050506040513d6020811015610a5957600080fd5b50511015610a985760405162461bcd60e51b8152600401808060200182810382526026815260200180610d3b6026913960400191505060405180910390fd5b60065461010090046001600160a01b0316630411b252610ab6610d10565b85600754866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b03168152602001838152602001828152602001945050505050600060405180830381600087803b158015610b1857600080fd5b505af1158015610b2c573d6000803e3d6000fd5b50506040805185815290516001600160a01b03871693503392507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350600192915050565b6000546001600160a01b031681565b60065460408051636eb1769f60e11b81526001600160a01b0385811660048301528481166024830152915160009361010090049092169163dd62ed3e91604480820192602092909190829003018186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d6020811015610c0f57600080fd5b50519392505050565b610c20610d10565b6000546001600160a01b03908116911614610c70576040805162461bcd60e51b81526020600482018190526024820152600080516020610d61833981519152604482015290519081900360640190fd5b6001600160a01b038116610cb55760405162461bcd60e51b8152600401808060200182810382526026815260200180610d156026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e8fc14be90c7d0850303d88ecb411da5376d92fdbb5e32d35b8a6eaafb50f2d164736f6c634300060c0033

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

0000000000000000000000006e57138f4a8a9ba265a5f59896e80d4b13b81b510000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : _ERNE (address): 0x6e57138F4A8A9bA265A5F59896E80d4b13B81b51
Arg [1] : _tokenId (uint256): 1

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006e57138f4a8a9ba265a5f59896e80d4b13b81b51
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

19577:4827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20525:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23885:128;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23885:128:0;;;;;;;;:::i;:::-;;22813:236;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22813:236:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21526:124;;;:::i;:::-;;;;;;;;;;;;;;;;23523:282;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23523:282:0;;;;;;;;;;;;;;;;;:::i;21378:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24125:176;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24125:176:0;;;;;;;;:::i;19958:19::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19958:19:0;;;;;;;;;;;;;;21713:143;;;;;;;;;;;;;;;;-1:-1:-1;21713:143:0;-1:-1:-1;;;;;21713:143:0;;:::i;17082:148::-;;;:::i;16440:79::-;;;:::i;20727:87::-;;;:::i;19984:22::-;;;:::i;22069:371::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22069:371:0;;;;;;;;:::i;15975:21::-;;;:::i;22503:163::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22503:163:0;;;;;;;;;;:::i;17385:244::-;;;;;;;;;;;;;;;;-1:-1:-1;17385:244:0;-1:-1:-1;;;;;17385:244:0;;:::i;20525:83::-;20595:5;20588:12;;;;;;;;-1:-1:-1;;20588:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20562:13;;20588:12;;20595:5;;20588:12;;20595:5;20588:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20525:83;:::o;23885:128::-;16662:12;:10;:12::i;:::-;16652:6;;-1:-1:-1;;;;;16652:6:0;;;:22;;;16644:67;;;;;-1:-1:-1;;;16644:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16644:67:0;;;;;;;;;;;;;;;23964:4:::1;:12:::0;;-1:-1:-1;;;;;23964:12:0;;::::1;;;-1:-1:-1::0;;;;;;23964:12:0;;::::1;::::0;;;::::1;::::0;;;23987:7:::1;:18:::0;23885:128::o;22813:236::-;22924:4;;22915:49;;;-1:-1:-1;;;22915:49:0;;22938:10;22915:49;;;;-1:-1:-1;;;;;22915:49:0;;;;;;;;;;;;;;;-1:-1:-1;;22924:4:0;;;;;;;22915:22;;:49;;;;;-1:-1:-1;;22915:49:0;;;;;;;;-1:-1:-1;22924:4:0;22915:49;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22982:37:0;;;;;;;;-1:-1:-1;;;;;22982:37:0;;;-1:-1:-1;22991:10:0;;-1:-1:-1;22982:37:0;;;;;;;;;-1:-1:-1;23037:4:0;22813:236;;;;:::o;21526:124::-;21616:4;;21634:7;;21607:35;;;-1:-1:-1;;;21607:35:0;;;;;;;;;;-1:-1:-1;;21616:4:0;;;-1:-1:-1;;;;;21616:4:0;;21607:26;;:35;;;;;;;;;;;;;;21616:4;21607:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21607:35:0;;-1:-1:-1;21526:124:0;:::o;23523:282::-;23657:4;;23695:7;;23648:75;;;-1:-1:-1;;;23648:75:0;;-1:-1:-1;;;;;23648:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23712:10;23648:75;;;;;;-1:-1:-1;;23657:4:0;;;;;;;23648:27;;:75;;;;;-1:-1:-1;;23648:75:0;;;;;;;;-1:-1:-1;23657:4:0;23648:75;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23739:35:0;;;;;;;;-1:-1:-1;;;;;23739:35:0;;;;-1:-1:-1;23739:35:0;;;-1:-1:-1;23739:35:0;;;;;;;;;-1:-1:-1;23793:4:0;23523:282;;;;;:::o;21378:83::-;21444:9;;;;21378:83;:::o;24125:176::-;16662:12;:10;:12::i;:::-;16652:6;;-1:-1:-1;;;;;16652:6:0;;;:22;;;16644:67;;;;;-1:-1:-1;;;16644:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16644:67:0;;;;;;;;;;;;;;;24206:4:::1;;;;;;;;;-1:-1:-1::0;;;;;24206:4:0::1;-1:-1:-1::0;;;;;24197:24:0::1;;24222:3;24227:7;;24235;24197:46;;;;;;;;;;;;;-1:-1:-1::0;;;;;24197:46:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;24259:34:0::1;::::0;;;;;;;-1:-1:-1;;;;;24259:34:0;::::1;::::0;-1:-1:-1;24276:1:0::1;::::0;-1:-1:-1;24259:34:0::1;::::0;;;;::::1;::::0;;::::1;24125:176:::0;;:::o;19958:19::-;;;;;;-1:-1:-1;;;;;19958:19:0;;:::o;21713:143::-;21779:7;21815:4;;;;;;;;;-1:-1:-1;;;;;21815:4:0;-1:-1:-1;;;;;21806:24:0;;21831:7;21840;;21806:42;;;;;;;;;;;;;-1:-1:-1;;;;;21806:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21806:42:0;;21713:143;-1:-1:-1;;21713:143:0:o;17082:148::-;16662:12;:10;:12::i;:::-;16652:6;;-1:-1:-1;;;;;16652:6:0;;;:22;;;16644:67;;;;;-1:-1:-1;;;16644:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16644:67:0;;;;;;;;;;;;;;;17189:1:::1;17173:6:::0;;17152:40:::1;::::0;-1:-1:-1;;;;;17173:6:0;;::::1;::::0;17152:40:::1;::::0;17189:1;;17152:40:::1;17220:1;17203:19:::0;;-1:-1:-1;;;;;;17203:19:0::1;::::0;;17082:148::o;16440:79::-;16478:7;16505:6;-1:-1:-1;;;;;16505:6:0;16440:79;:::o;20727:87::-;20799:7;20792:14;;;;;;;;-1:-1:-1;;20792:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20766:13;;20792:14;;20799:7;;20792:14;;20799:7;20792:14;;;;;;;;;;;;;;;;;;;;;;;;19984:22;;;;:::o;22069:371::-;22156:4;22230:6;22190:4;;;;;;;;;-1:-1:-1;;;;;22190:4:0;-1:-1:-1;;;;;22181:24:0;;22206:10;22218:7;;22181:45;;;;;;;;;;;;;-1:-1:-1;;;;;22181:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22181:45:0;:55;;22173:106;;;;-1:-1:-1;;;22173:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22299:4;;;;;-1:-1:-1;;;;;22299:4:0;22290:23;22314:12;:10;:12::i;:::-;22328:9;22339:7;;22348:6;22290:65;;;;;;;;;;;;;-1:-1:-1;;;;;22290:65:0;;;;;;-1:-1:-1;;;;;22290:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22371:39:0;;;;;;;;-1:-1:-1;;;;;22371:39:0;;;-1:-1:-1;22380:10:0;;-1:-1:-1;22371:39:0;;;;;;;;;-1:-1:-1;22428:4:0;22069:371;;;;:::o;15975:21::-;;;-1:-1:-1;;;;;15975:21:0;;:::o;22503:163::-;22628:4;;22619:39;;;-1:-1:-1;;;22619:39:0;;-1:-1:-1;;;;;22619:39:0;;;;;;;;;;;;;;;;-1:-1:-1;;22628:4:0;;;;;;;22619:24;;:39;;;;;;;;;;;;;;;22628:4;22619:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22619:39:0;;22503:163;-1:-1:-1;;;22503:163:0:o;17385:244::-;16662:12;:10;:12::i;:::-;16652:6;;-1:-1:-1;;;;;16652:6:0;;;:22;;;16644:67;;;;;-1:-1:-1;;;16644:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16644:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17474:22:0;::::1;17466:73;;;;-1:-1:-1::0;;;17466:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17576:6;::::0;;17555:38:::1;::::0;-1:-1:-1;;;;;17555:38:0;;::::1;::::0;17576:6;::::1;::::0;17555:38:::1;::::0;::::1;17604:6;:17:::0;;-1:-1:-1;;;;;;17604:17:0::1;-1:-1:-1::0;;;;;17604:17:0;;;::::1;::::0;;;::::1;::::0;;17385:244::o;665:106::-;753:10;665:106;:::o

Swarm Source

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