S Price: $0.501883 (-11.16%)

Token

Sonic USDe (sUSDe)

Overview

Max Total Supply

299,899,694.153548479548136573 sUSDe

Holders

4

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000002 sUSDe

Value
$0.00
0x059963eebba951ea2dc7a4811f023bc6bd977684
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SonicUSDe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-23
*/

// SPDX-License-Identifier: MIT
// SonicLabs Core Contracts (last updated v1.0.0)

pragma solidity 0.8.19;
/*
 * @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.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}


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


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



/**
 * @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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

    uint256 public minted;
    uint256 public burned;

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
        minted+=_amount;
    }

    function burn(uint256 _amount) public {
        require (balanceOf(msg.sender)>=_amount);
        _burn(msg.sender, _amount);
        burned+=_amount;
    }

    function getOwner() external view returns (address) {
        return owner();
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a815260200169536f6e6963205553446560b01b81525060405180604001604052806005815260200164735553446560d81b81525081600390816200006491906200018e565b5060046200007382826200018e565b50506005805460ff191660121790555060006200008d3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200025a565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011457607f821691505b6020821081036200013557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018957600081815260208120601f850160051c81016020861015620001645750805b601f850160051c820191505b81811015620001855782815560010162000170565b5050505b505050565b81516001600160401b03811115620001aa57620001aa620000e9565b620001c281620001bb8454620000ff565b846200013b565b602080601f831160018114620001fa5760008415620001e15750858301515b600019600386901b1c1916600185901b17855562000185565b600085815260208120601f198616915b828110156200022b578886015182559484019460019091019084016200020a565b50858210156200024a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61135a806200026a6000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806370a08231116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102de578063dd62ed3e146102f1578063f2fde38b1461033757600080fd5b806395d89b41146102c3578063a457c2d7146102cb57600080fd5b806373f42561116100b257806373f4256114610253578063893d20e81461025c5780638da5cb5b146102a057600080fd5b806370a0823114610215578063715018a61461024b57600080fd5b8063313ce5671161012457806340c10f191161010957806340c10f19146101e457806342966c68146101f95780634f02c4201461020c57600080fd5b8063313ce567146101bc57806339509351146101d157600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e61034a565b60405161016b9190611085565b60405180910390f35b61018761018236600461111a565b6103dc565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b7366004611144565b6103f3565b60055460405160ff909116815260200161016b565b6101876101df36600461111a565b610469565b6101f76101f236600461111a565b6104ac565b005b6101f7610207366004611180565b61055d565b61019b60065481565b61019b610223366004611199565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101f761059d565b61019b60075481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1661027b565b61015e610698565b6101876102d936600461111a565b6106a7565b6101876102ec36600461111a565b610703565b61019b6102ff3660046111b4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101f7610345366004611199565b610710565b606060038054610359906111e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610385906111e7565b80156103d25780601f106103a7576101008083540402835291602001916103d2565b820191906000526020600020905b8154815290600101906020018083116103b557829003601f168201915b5050505050905090565b60006103e93384846108d2565b5060015b92915050565b6000610400848484610a86565b61045f843361045a856040518060600160405280602881526020016112d86028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190610cb0565b6108d2565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916103e991859061045a9086610d01565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105428282610d81565b80600660008282546105549190611269565b90915550505050565b3360009081526020819052604090205481111561057957600080fd5b6105833382610ea1565b80600760008282546105959190611269565b909155505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b606060048054610359906111e7565b60006103e9338461045a856040518060600160405280602581526020016113006025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190610cb0565b60006103e9338484610a86565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b73ffffffffffffffffffffffffffffffffffffffff811661083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161052f565b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610974576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff8216610a17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff8216610bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161052f565b610c16816040518060600160405280602681526020016112b26026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190610cb0565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610c529082610d01565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a79565b60008184841115610cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052f9190611085565b50610cf9838561127c565b949350505050565b600080610d0e8385611269565b905083811015610d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161052f565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161052f565b600254610e0b9082610d01565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610e3e9082610d01565b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610f44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161052f565b610f8e816040518060600160405280602281526020016112906022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190610cb0565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610fc1908261100f565b60025560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e95565b60008282111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161052f565b610d7a828461127c565b600060208083528351808285015260005b818110156110b257858101830151858201604001528201611096565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461111557600080fd5b919050565b6000806040838503121561112d57600080fd5b611136836110f1565b946020939093013593505050565b60008060006060848603121561115957600080fd5b611162846110f1565b9250611170602085016110f1565b9150604084013590509250925092565b60006020828403121561119257600080fd5b5035919050565b6000602082840312156111ab57600080fd5b610d7a826110f1565b600080604083850312156111c757600080fd5b6111d0836110f1565b91506111de602084016110f1565b90509250929050565b600181811c908216806111fb57607f821691505b602082108103611234577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156103ed576103ed61123a565b818103818111156103ed576103ed61123a56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bf6a8423a4d045e633f839108c4308844425c71d52ed7595284a4f73bb23520664736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101515760003560e01c806370a08231116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102de578063dd62ed3e146102f1578063f2fde38b1461033757600080fd5b806395d89b41146102c3578063a457c2d7146102cb57600080fd5b806373f42561116100b257806373f4256114610253578063893d20e81461025c5780638da5cb5b146102a057600080fd5b806370a0823114610215578063715018a61461024b57600080fd5b8063313ce5671161012457806340c10f191161010957806340c10f19146101e457806342966c68146101f95780634f02c4201461020c57600080fd5b8063313ce567146101bc57806339509351146101d157600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e61034a565b60405161016b9190611085565b60405180910390f35b61018761018236600461111a565b6103dc565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b7366004611144565b6103f3565b60055460405160ff909116815260200161016b565b6101876101df36600461111a565b610469565b6101f76101f236600461111a565b6104ac565b005b6101f7610207366004611180565b61055d565b61019b60065481565b61019b610223366004611199565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101f761059d565b61019b60075481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1661027b565b61015e610698565b6101876102d936600461111a565b6106a7565b6101876102ec36600461111a565b610703565b61019b6102ff3660046111b4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101f7610345366004611199565b610710565b606060038054610359906111e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610385906111e7565b80156103d25780601f106103a7576101008083540402835291602001916103d2565b820191906000526020600020905b8154815290600101906020018083116103b557829003601f168201915b5050505050905090565b60006103e93384846108d2565b5060015b92915050565b6000610400848484610a86565b61045f843361045a856040518060600160405280602881526020016112d86028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602090815260408083203384529091529020549190610cb0565b6108d2565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916103e991859061045a9086610d01565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6105428282610d81565b80600660008282546105549190611269565b90915550505050565b3360009081526020819052604090205481111561057957600080fd5b6105833382610ea1565b80600760008282546105959190611269565b909155505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b606060048054610359906111e7565b60006103e9338461045a856040518060600160405280602581526020016113006025913933600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d1684529091529020549190610cb0565b60006103e9338484610a86565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052f565b73ffffffffffffffffffffffffffffffffffffffff811661083a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161052f565b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610974576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff8216610a17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161052f565b73ffffffffffffffffffffffffffffffffffffffff8216610bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161052f565b610c16816040518060600160405280602681526020016112b26026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190610cb0565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610c529082610d01565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a79565b60008184841115610cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052f9190611085565b50610cf9838561127c565b949350505050565b600080610d0e8385611269565b905083811015610d7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161052f565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610dfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161052f565b600254610e0b9082610d01565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610e3e9082610d01565b73ffffffffffffffffffffffffffffffffffffffff8316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610f44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161052f565b610f8e816040518060600160405280602281526020016112906022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190610cb0565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902055600254610fc1908261100f565b60025560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610e95565b60008282111561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161052f565b610d7a828461127c565b600060208083528351808285015260005b818110156110b257858101830151858201604001528201611096565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461111557600080fd5b919050565b6000806040838503121561112d57600080fd5b611136836110f1565b946020939093013593505050565b60008060006060848603121561115957600080fd5b611162846110f1565b9250611170602085016110f1565b9150604084013590509250925092565b60006020828403121561119257600080fd5b5035919050565b6000602082840312156111ab57600080fd5b610d7a826110f1565b600080604083850312156111c757600080fd5b6111d0836110f1565b91506111de602084016110f1565b90509250929050565b600181811c908216806111fb57607f821691505b602082108103611234577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156103ed576103ed61123a565b818103818111156103ed576103ed61123a56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bf6a8423a4d045e633f839108c4308844425c71d52ed7595284a4f73bb23520664736f6c63430008130033

Deployed Bytecode Sourcemap

24182:516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13098:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15244:169;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;15244:169:0;1086:187:1;14197:108:0;14285:12;;14197:108;;;1424:25:1;;;1412:2;1397:18;14197:108:0;1278:177:1;15895:321:0;;;;;;:::i;:::-;;:::i;14041:91::-;14115:9;;14041:91;;14115:9;;;;1935:36:1;;1923:2;1908:18;14041:91:0;1793:184:1;16625:218:0;;;;;;:::i;:::-;;:::i;24309:125::-;;;;;;:::i;:::-;;:::i;:::-;;24442:160;;;;;;:::i;:::-;;:::i;24251:21::-;;;;;;14368:127;;;;;;:::i;:::-;14469:18;;14442:7;14469:18;;;;;;;;;;;;14368:127;23630:148;;;:::i;24279:21::-;;;;;;24610:85;23052:6;;;;;;;24610:85;;;2534:42:1;2522:55;;;2504:74;;2492:2;2477:18;24610:85:0;2358:226:1;22979:87:0;23052:6;;;;;;;22979:87;;13308:95;;;:::i;17346:269::-;;;;;;:::i;:::-;;:::i;14708:175::-;;;;;;:::i;:::-;;:::i;14946:151::-;;;;;;:::i;:::-;15062:18;;;;15035:7;15062:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14946:151;23933:244;;;;;;:::i;:::-;;:::i;13098:91::-;13143:13;13176:5;13169:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13098:91;:::o;15244:169::-;15327:4;15344:39;10769:10;15367:7;15376:6;15344:8;:39::i;:::-;-1:-1:-1;15401:4:0;15244:169;;;;;:::o;15895:321::-;16001:4;16018:36;16028:6;16036:9;16047:6;16018:9;:36::i;:::-;16065:121;16074:6;10769:10;16096:89;16134:6;16096:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;10769:10;16096:33;;;;;;;;;;:37;:89::i;:::-;16065:8;:121::i;:::-;-1:-1:-1;16204:4:0;15895:321;;;;;:::o;16625:218::-;10769:10;16713:4;16762:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;16713:4;;16730:83;;16753:7;;16762:50;;16801:10;16762:38;:50::i;24309:125::-;23052:6;;23199:23;23052:6;;;;;10769:10;23199:23;23191:68;;;;;;;3498:2:1;23191:68:0;;;3480:21:1;;;3517:18;;;3510:30;3576:34;3556:18;;;3549:62;3628:18;;23191:68:0;;;;;;;;;24381:19:::1;24387:3;24392:7;24381:5;:19::i;:::-;24419:7;24411:6;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;24309:125:0:o;24442:160::-;24510:10;14442:7;14469:18;;;;;;;;;;;24523:7;-1:-1:-1;24500:30:0;24491:40;;;;;;24542:26;24548:10;24560:7;24542:5;:26::i;:::-;24587:7;24579:6;;:15;;;;;;;:::i;:::-;;;;-1:-1:-1;;;24442:160:0:o;23630:148::-;23052:6;;23199:23;23052:6;;;;;10769:10;23199:23;23191:68;;;;;;;3498:2:1;23191:68:0;;;3480:21:1;;;3517:18;;;3510:30;3576:34;3556:18;;;3549:62;3628:18;;23191:68:0;3296:356:1;23191:68:0;23721:6:::1;::::0;23700:40:::1;::::0;23737:1:::1;::::0;23721:6:::1;::::0;::::1;23700:40;23721:6;::::0;23700:40:::1;::::0;23737:1;;23700:40:::1;23751:6;:19:::0;;;::::1;::::0;;23630:148::o;13308:95::-;13355:13;13388:7;13381:14;;;;;:::i;17346:269::-;17439:4;17456:129;10769:10;17479:7;17488:96;17527:15;17488:96;;;;;;;;;;;;;;;;;10769:10;17488:25;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:96::i;14708:175::-;14794:4;14811:42;10769:10;14835:9;14846:6;14811:9;:42::i;23933:244::-;23052:6;;23199:23;23052:6;;;;;10769:10;23199:23;23191:68;;;;;;;3498:2:1;23191:68:0;;;3480:21:1;;;3517:18;;;3510:30;3576:34;3556:18;;;3549:62;3628:18;;23191:68:0;3296:356:1;23191:68:0;24022:22:::1;::::0;::::1;24014:73;;;::::0;::::1;::::0;;4178:2:1;24014:73:0::1;::::0;::::1;4160:21:1::0;4217:2;4197:18;;;4190:30;4256:34;4236:18;;;4229:62;4327:8;4307:18;;;4300:36;4353:19;;24014:73:0::1;3976:402:1::0;24014:73:0::1;24124:6;::::0;24103:38:::1;::::0;::::1;::::0;;::::1;::::0;24124:6:::1;::::0;::::1;;::::0;24103:38:::1;::::0;;;::::1;24152:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;23933:244::o;20493:346::-;20595:19;;;20587:68;;;;;;;4585:2:1;20587:68:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;4734:6;4714:18;;;4707:34;4758:19;;20587:68:0;4383:400:1;20587:68:0;20674:21;;;20666:68;;;;;;;4990:2:1;20666:68:0;;;4972:21:1;5029:2;5009:18;;;5002:30;5068:34;5048:18;;;5041:62;5139:4;5119:18;;;5112:32;5161:19;;20666:68:0;4788:398:1;20666:68:0;20747:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20799:32;;1424:25:1;;;20799:32:0;;1397:18:1;20799:32:0;;;;;;;;20493:346;;;:::o;18105:539::-;18211:20;;;18203:70;;;;;;;5393:2:1;18203:70:0;;;5375:21:1;5432:2;5412:18;;;5405:30;5471:34;5451:18;;;5444:62;5542:7;5522:18;;;5515:35;5567:19;;18203:70:0;5191:401:1;18203:70:0;18292:23;;;18284:71;;;;;;;5799:2:1;18284:71:0;;;5781:21:1;5838:2;5818:18;;;5811:30;5877:34;5857:18;;;5850:62;5948:5;5928:18;;;5921:33;5971:19;;18284:71:0;5597:399:1;18284:71:0;18448;18470:6;18448:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;18428:17;;;;:9;:17;;;;;;;;;;;:91;;;;18553:20;;;;;;;:32;;18578:6;18553:24;:32::i;:::-;18530:20;;;;:9;:20;;;;;;;;;;;;:55;;;;18601:35;1424:25:1;;;18530:20:0;;18601:35;;;;;;1397:18:1;18601:35:0;1278:177:1;5571:166:0;5657:7;5693:12;5685:6;;;;5677:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;5724:5:0;5728:1;5724;:5;:::i;:::-;5717:12;5571:166;-1:-1:-1;;;;5571:166:0:o;2744:179::-;2802:7;;2834:5;2838:1;2834;:5;:::i;:::-;2822:17;;2863:1;2858;:6;;2850:46;;;;;;;6336:2:1;2850:46:0;;;6318:21:1;6375:2;6355:18;;;6348:30;6414:29;6394:18;;;6387:57;6461:18;;2850:46:0;6134:351:1;2850:46:0;2914:1;2744:179;-1:-1:-1;;;2744:179:0:o;18926:378::-;19010:21;;;19002:65;;;;;;;6692:2:1;19002:65:0;;;6674:21:1;6731:2;6711:18;;;6704:30;6770:33;6750:18;;;6743:61;6821:18;;19002:65:0;6490:355:1;19002:65:0;19157:12;;:24;;19174:6;19157:16;:24::i;:::-;19142:12;:39;19213:18;;;:9;:18;;;;;;;;;;;:30;;19236:6;19213:22;:30::i;:::-;19192:18;;;:9;:18;;;;;;;;;;;:51;;;;19259:37;;1424:25:1;;;19192:18:0;;:9;;19259:37;;1397:18:1;19259:37:0;;;;;;;;18926:378;;:::o;19637:418::-;19721:21;;;19713:67;;;;;;;7052:2:1;19713:67:0;;;7034:21:1;7091:2;7071:18;;;7064:30;7130:34;7110:18;;;7103:62;7201:3;7181:18;;;7174:31;7222:19;;19713:67:0;6850:397:1;19713:67:0;19876:68;19899:6;19876:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;19855:18;;;:9;:18;;;;;;;;;;:89;19970:12;;:24;;19987:6;19970:16;:24::i;:::-;19955:12;:39;20010:37;;1424:25:1;;;20036:1:0;;20010:37;;;;;;1412:2:1;1397:18;20010:37:0;1278:177:1;3206:158:0;3264:7;3297:1;3292;:6;;3284:49;;;;;;;7454:2:1;3284:49:0;;;7436:21:1;7493:2;7473:18;;;7466:30;7532:32;7512:18;;;7505:60;7582:18;;3284:49:0;7252:354:1;3284:49:0;3351:5;3355:1;3351;:5;:::i;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:180::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;-1:-1:-1;2133:23:1;;1982:180;-1:-1:-1;1982:180:1:o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;2589:260::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2757:29;2776:9;2757:29;:::i;:::-;2747:39;;2805:38;2839:2;2828:9;2824:18;2805:38;:::i;:::-;2795:48;;2589:260;;;;;:::o;2854:437::-;2933:1;2929:12;;;;2976;;;2997:61;;3051:4;3043:6;3039:17;3029:27;;2997:61;3104:2;3096:6;3093:14;3073:18;3070:38;3067:218;;3141:77;3138:1;3131:88;3242:4;3239:1;3232:15;3270:4;3267:1;3260:15;3067:218;;2854:437;;;:::o;3657:184::-;3709:77;3706:1;3699:88;3806:4;3803:1;3796:15;3830:4;3827:1;3820:15;3846:125;3911:9;;;3932:10;;;3929:36;;;3945:18;;:::i;6001:128::-;6068:9;;;6089:11;;;6086:37;;;6103:18;;:::i

Swarm Source

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