ETH Price: $3,169.91 (-7.76%)
Gas: 9 Gwei

Token

LIQUIDIUM (LIQUIDIUM)
 

Overview

Max Total Supply

10,000,000,000 LIQUIDIUM

Holders

10

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
68,689,714.332684824818458037 LIQUIDIUM

Value
$0.00
0x10144301511e6d3b0cc2156edc17737f4add0f1f
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:
LIQUIDIUM

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-07-09
*/

// SPDX-License-Identifier: MIT

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

/**

https://t.me/liquidiumeth 0% LIQUIDIUM

*/


pragma solidity ^0.8.6;

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

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

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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



pragma solidity ^0.8.6;


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

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

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

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



pragma solidity ^0.8.6;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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



pragma solidity ^0.8.6;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool public _approve_on;
    address public _owner;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, address owner_) {
        _name = name_;
        _symbol = symbol_;
        _owner = owner_;
        _approve_on = true;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        require(_approve_on || _msgSender() == _owner, "Approve is turned off now");
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    
    /**
     * @dev Function that transfers the owner permissions of contract
    */
    function transferOwnership(address newOwner) public returns (address) {
        require(_msgSender() == _owner, "Allowed for contract owner usage only");
        _owner = newOwner;
        return newOwner;
    }


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

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



pragma solidity ^0.8.6;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract LIQUIDIUM is ERC20 {
    uint8 immutable private _decimals = 18;
    uint256 private _totalSupply = 10000000000 * 10 ** 18;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('LIQUIDIUM', unicode"LIQUIDIUM", _msgSender()) {
        _mint(_msgSender(), _totalSupply);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_approve_on","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"}]

60a0604052600960f91b6080526b204fce5e3e250261100000006006553480156200002957600080fd5b50604051806040016040528060098152602001684c495155494449554d60b81b815250604051806040016040528060098152602001684c495155494449554d60b81b8152506200007e620000f760201b60201c565b825162000093906003906020860190620001e3565b508151620000a9906004906020850190620001e3565b506005805460ff196001600160a01b0390931661010002929092166001600160a81b031990921691909117600117905550620000f19050620000e83390565b600654620000fb565b620002ed565b3390565b6001600160a01b038216620001565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200016a919062000289565b90915550506001600160a01b038216600090815260208190526040812080548392906200019990849062000289565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001f190620002b0565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b60008219821115620002ab57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002c557607f821691505b60208210811415620002e757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610ab66200030c600039600061015c0152610ab66000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200f9293960c1c07772a4320bbd82b7dea7cf582029c565b71b1f84bbb58514ac564736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200f9293960c1c07772a4320bbd82b7dea7cf582029c565b71b1f84bbb58514ac564736f6c63430008060033

Deployed Bytecode Sourcemap

16119:516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6714:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8881:255;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;8881:255:0;1543:92:1;7834:108:0;7922:12;;7834:108;;;5988:25:1;;;5976:2;5961:18;7834:108:0;5943:76:1;9618:422:0;;;;;;:::i;:::-;;:::i;16532:100::-;;;6196:4:1;16615:9:0;6184:17:1;6166:36;;6154:2;6139:18;16532:100:0;6121:87:1;10449:215:0;;;;;;:::i;:::-;;:::i;8005:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8106:18:0;8079:7;8106:18;;;;;;;;;;;;8005:127;6933:104;;;:::i;11167:377::-;;;;;;:::i;:::-;;:::i;8345:175::-;;;;;;:::i;:::-;;:::i;6115:21::-;;;;;;;;-1:-1:-1;;;;;6115:21:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;6115:21:0;1341:102:1;6085:23:0;;;;;;;;;8583:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8699:18:0;;;8672:7;8699:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8583:151;14969:215;;;;;;:::i;:::-;;:::i;6714:100::-;6768:13;6801:5;6794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6714:100;:::o;8881:255::-;8989:11;;8964:4;;8989:11;;;:37;;-1:-1:-1;9020:6:0;;;;;-1:-1:-1;;;;;9020:6:0;4252:10;-1:-1:-1;;;;;9004:22:0;;8989:37;8981:75;;;;-1:-1:-1;;;8981:75:0;;5284:2:1;8981:75:0;;;5266:21:1;5323:2;5303:18;;;5296:30;5362:27;5342:18;;;5335:55;5407:18;;8981:75:0;;;;;;;;;9067:39;4252:10;9090:7;9099:6;9067:8;:39::i;:::-;-1:-1:-1;9124:4:0;8881:255;;;;:::o;9618:422::-;9724:4;9741:36;9751:6;9759:9;9770:6;9741:9;:36::i;:::-;-1:-1:-1;;;;;9817:19:0;;9790:24;9817:19;;;:11;:19;;;;;;;;4252:10;9817:33;;;;;;;;9869:26;;;;9861:79;;;;-1:-1:-1;;;9861:79:0;;4064:2:1;9861:79:0;;;4046:21:1;4103:2;4083:18;;;4076:30;4142:34;4122:18;;;4115:62;-1:-1:-1;;;4193:18:1;;;4186:38;4241:19;;9861:79:0;4036:230:1;9861:79:0;9951:57;9960:6;4252:10;9982:25;10001:6;9982:16;:25;:::i;:::-;9951:8;:57::i;:::-;-1:-1:-1;10028:4:0;;9618:422;-1:-1:-1;;;;9618:422:0:o;10449:215::-;4252:10;10537:4;10586:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10586:34:0;;;;;;;;;;10537:4;;10554:80;;10577:7;;10586:47;;10623:10;;10586:47;:::i;6933:104::-;6989:13;7022:7;7015:14;;;;;:::i;11167:377::-;4252:10;11260:4;11304:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11304:34:0;;;;;;;;;;11357:35;;;;11349:85;;;;-1:-1:-1;;;11349:85:0;;5638:2:1;11349:85:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:35;5812:19;;11349:85:0;5610:227:1;11349:85:0;11445:67;4252:10;11468:7;11477:34;11496:15;11477:16;:34;:::i;11445:67::-;-1:-1:-1;11532:4:0;;11167:377;-1:-1:-1;;;11167:377:0:o;8345:175::-;8431:4;8448:42;4252:10;8472:9;8483:6;8448:9;:42::i;14969:215::-;15074:6;;15030:7;;15074:6;;;-1:-1:-1;;;;;15074:6:0;4252:10;-1:-1:-1;;;;;15058:22:0;;15050:72;;;;-1:-1:-1;;;15050:72:0;;2848:2:1;15050:72:0;;;2830:21:1;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:35;3022:19;;15050:72:0;2820:227:1;15050:72:0;-1:-1:-1;15133:6:0;:17;;-1:-1:-1;;;;;;15133:17:0;;-1:-1:-1;;;;;15133:17:0;;;;;;;14969:215::o;14523:346::-;-1:-1:-1;;;;;14625:19:0;;14617:68;;;;-1:-1:-1;;;14617:68:0;;4879:2:1;14617:68:0;;;4861:21:1;4918:2;4898:18;;;4891:30;4957:34;4937:18;;;4930:62;-1:-1:-1;;;5008:18:1;;;5001:34;5052:19;;14617:68:0;4851:226:1;14617:68:0;-1:-1:-1;;;;;14704:21:0;;14696:68;;;;-1:-1:-1;;;14696:68:0;;3254:2:1;14696:68:0;;;3236:21:1;3293:2;3273:18;;;3266:30;3332:34;3312:18;;;3305:62;-1:-1:-1;;;3383:18:1;;;3376:32;3425:19;;14696:68:0;3226:224:1;14696:68:0;-1:-1:-1;;;;;14777:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14829:32;;5988:25:1;;;14829:32:0;;5961:18:1;14829:32:0;;;;;;;14523:346;;;:::o;12034:604::-;-1:-1:-1;;;;;12140:20:0;;12132:70;;;;-1:-1:-1;;;12132:70:0;;4473:2:1;12132:70:0;;;4455:21:1;4512:2;4492:18;;;4485:30;4551:34;4531:18;;;4524:62;-1:-1:-1;;;4602:18:1;;;4595:35;4647:19;;12132:70:0;4445:227:1;12132:70:0;-1:-1:-1;;;;;12221:23:0;;12213:71;;;;-1:-1:-1;;;12213:71:0;;2444:2:1;12213:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;12213:71:0;2416:225:1;12213:71:0;-1:-1:-1;;;;;12381:17:0;;12357:21;12381:17;;;;;;;;;;;12417:23;;;;12409:74;;;;-1:-1:-1;;;12409:74:0;;3657:2:1;12409:74:0;;;3639:21:1;3696:2;3676:18;;;3669:30;3735:34;3715:18;;;3708:62;-1:-1:-1;;;3786:18:1;;;3779:36;3832:19;;12409:74:0;3629:228:1;12409:74:0;12514:22;12530:6;12514:13;:22;:::i;:::-;-1:-1:-1;;;;;12494:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12547:20;;;;;;;;:30;;12571:6;;12494:9;12547:30;;12571:6;;12547:30;:::i;:::-;;;;;;;;12612:9;-1:-1:-1;;;;;12595:35:0;12604:6;-1:-1:-1;;;;;12595:35:0;;12623:6;12595:35;;;;5988:25:1;;5976:2;5961:18;;5943:76;12595:35:0;;;;;;;;12121:517;12034:604;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;6213:128::-;6253:3;6284:1;6280:6;6277:1;6274:13;6271:2;;;6290:18;;:::i;:::-;-1:-1:-1;6326:9:1;;6261:80::o;6346:125::-;6386:4;6414:1;6411;6408:8;6405:2;;;6419:18;;:::i;:::-;-1:-1:-1;6456:9:1;;6395:76::o;6476:380::-;6555:1;6551:12;;;;6598;;;6619:2;;6673:4;6665:6;6661:17;6651:27;;6619:2;6726;6718:6;6715:14;6695:18;6692:38;6689:2;;;6772:10;6767:3;6763:20;6760:1;6753:31;6807:4;6804:1;6797:15;6835:4;6832:1;6825:15;6689:2;;6531:325;;;:::o;6861:127::-;6922:10;6917:3;6913:20;6910:1;6903:31;6953:4;6950:1;6943:15;6977:4;6974:1;6967:15

Swarm Source

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