Token

Deliland Land Token (LAND)

Overview

Max Total Supply

1,000,000,000 LAND

Holders

15

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
98,730,403.179505847276352677 LAND

Value
$0.00
0x6bf91f67ae6831741f1addf4625f14d0818e8ab7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
LandToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at SonicScan.org on 2024-12-12
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

/**
 * @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) {
        return msg.data;
    }
}
/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
contract ERC20 is Context, IERC20, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract LandToken is ERC20 {
    constructor () ERC20("Deliland Land Token", "LAND") {
        _mint(0x6c5Ce5cb61B42019f5aA1657f3155CCB82486687,1e27);
    }
}

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":"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":[],"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":"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"}]

608060405234801561000f575f5ffd5b506040518060400160405280601381526020017f44656c696c616e64204c616e6420546f6b656e00000000000000000000000000815250604051806040016040528060048152602001631310539160e21b8152506100796100746100ca60201b60201c565b6100ce565b60046100858382610299565b5060056100928282610299565b5050506100c5736c5ce5cb61b42019f5aa1657f3155ccb824866876b033b2e3c9fd0803ce800000061011d60201b60201c565b610378565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166101775760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f8282546101889190610353565b90915550506001600160a01b0382165f90815260016020526040812080548392906101b4908490610353565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061022a57607f821691505b60208210810361024857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101fd57805f5260205f20601f840160051c810160208510156102735750805b601f840160051c820191505b81811015610292575f815560010161027f565b5050505050565b81516001600160401b038111156102b2576102b2610202565b6102c6816102c08454610216565b8461024e565b6020601f8211600181146102f8575f83156102e15750848201515b5f19600385901b1c1916600184901b178455610292565b5f84815260208120601f198516915b828110156103275787850151825560209485019460019092019101610307565b508482101561034457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561037257634e487b7160e01b5f52601160045260245ffd5b92915050565b610da5806103855f395ff3fe608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101df578063a9059cbb146101f2578063dd62ed3e14610205578063f2fde38b1461024a575f5ffd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101d7575f5ffd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f5ffd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f5ffd5b6100f161025d565b6040516100fe9190610bb8565b60405180910390f35b61011a610115366004610c33565b6102ed565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a366004610c5b565b610303565b604051601281526020016100fe565b61011a61016c366004610c33565b6103ec565b61012e61017f366004610c95565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b6101ae610434565b005b5f5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100fe565b6100f16104bf565b61011a6101ed366004610c33565b6104ce565b61011a610200366004610c33565b6105a5565b61012e610213366004610cb5565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6101ae610258366004610c95565b6105b1565b60606004805461026c90610ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610ce6565b80156102e35780601f106102ba576101008083540402835291602001916102e3565b820191905f5260205f20905b8154815290600101906020018083116102c657829003601f168201915b5050505050905090565b5f6102f93384846106e0565b5060015b92915050565b5f61030f848484610892565b73ffffffffffffffffffffffffffffffffffffffff84165f908152600260209081526040808320338452909152902054828110156103d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103e185338584036106e0565b506001949350505050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102f991859061042f908690610d37565b6106e0565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146104b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cb565b6104bd5f610b44565b565b60606005805461026c90610ce6565b335f90815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103cb565b61059b33858584036106e0565b5060019392505050565b5f6102f9338484610892565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cb565b73ffffffffffffffffffffffffffffffffffffffff81166106d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103cb565b6106dd81610b44565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8216610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff82166109d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526001602052604090205481811015610a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020526040808220858503905591851681529081208054849290610ad0908490610d37565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3691815260200190565b60405180910390a350505050565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c2e575f5ffd5b919050565b5f5f60408385031215610c44575f5ffd5b610c4d83610c0b565b946020939093013593505050565b5f5f5f60608486031215610c6d575f5ffd5b610c7684610c0b565b9250610c8460208501610c0b565b929592945050506040919091013590565b5f60208284031215610ca5575f5ffd5b610cae82610c0b565b9392505050565b5f5f60408385031215610cc6575f5ffd5b610ccf83610c0b565b9150610cdd60208401610c0b565b90509250929050565b600181811c90821680610cfa57607f821691505b602082108103610d31577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b808201808211156102fd577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220175930d23f6f70d355ed7aaa35065112f181322058f1dae89af9dd5eb0f66fb964736f6c634300081c0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101df578063a9059cbb146101f2578063dd62ed3e14610205578063f2fde38b1461024a575f5ffd5b8063715018a6146101a65780638da5cb5b146101b057806395d89b41146101d7575f5ffd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f5ffd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f5ffd5b6100f161025d565b6040516100fe9190610bb8565b60405180910390f35b61011a610115366004610c33565b6102ed565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a366004610c5b565b610303565b604051601281526020016100fe565b61011a61016c366004610c33565b6103ec565b61012e61017f366004610c95565b73ffffffffffffffffffffffffffffffffffffffff165f9081526001602052604090205490565b6101ae610434565b005b5f5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100fe565b6100f16104bf565b61011a6101ed366004610c33565b6104ce565b61011a610200366004610c33565b6105a5565b61012e610213366004610cb5565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260026020908152604080832093909416825291909152205490565b6101ae610258366004610c95565b6105b1565b60606004805461026c90610ce6565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610ce6565b80156102e35780601f106102ba576101008083540402835291602001916102e3565b820191905f5260205f20905b8154815290600101906020018083116102c657829003601f168201915b5050505050905090565b5f6102f93384846106e0565b5060015b92915050565b5f61030f848484610892565b73ffffffffffffffffffffffffffffffffffffffff84165f908152600260209081526040808320338452909152902054828110156103d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103e185338584036106e0565b506001949350505050565b335f81815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102f991859061042f908690610d37565b6106e0565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146104b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cb565b6104bd5f610b44565b565b60606005805461026c90610ce6565b335f90815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103cb565b61059b33858584036106e0565b5060019392505050565b5f6102f9338484610892565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103cb565b73ffffffffffffffffffffffffffffffffffffffff81166106d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103cb565b6106dd81610b44565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8216610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff82166109d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526001602052604090205481811015610a8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103cb565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020526040808220858503905591851681529081208054849290610ad0908490610d37565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b3691815260200190565b60405180910390a350505050565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c2e575f5ffd5b919050565b5f5f60408385031215610c44575f5ffd5b610c4d83610c0b565b946020939093013593505050565b5f5f5f60608486031215610c6d575f5ffd5b610c7684610c0b565b9250610c8460208501610c0b565b929592945050506040919091013590565b5f60208284031215610ca5575f5ffd5b610cae82610c0b565b9392505050565b5f5f60408385031215610cc6575f5ffd5b610ccf83610c0b565b9150610cdd60208401610c0b565b90509250929050565b600181811c90821680610cfa57607f821691505b602082108103610d31577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b808201808211156102fd577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220175930d23f6f70d355ed7aaa35065112f181322058f1dae89af9dd5eb0f66fb964736f6c634300081c0033

Deployed Bytecode Sourcemap

17039:163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9245:169;;;;;;:::i;:::-;;:::i;:::-;;;1167:14:1;;1160:22;1142:41;;1130:2;1115:18;9245:169:0;1002:187:1;8198:108:0;8286:12;;8198:108;;;1340:25:1;;;1328:2;1313:18;8198:108:0;1194:177:1;9896:492:0;;;;;;:::i;:::-;;:::i;8040:93::-;;;8123:2;1897:36:1;;1885:2;1870:18;8040:93:0;1755:184:1;10797:215:0;;;;;;:::i;:::-;;:::i;8369:127::-;;;;;;:::i;:::-;8470:18;;8443:7;8470:18;;;:9;:18;;;;;;;8369:127;5662:94;;;:::i;:::-;;5011:87;5057:7;5084:6;5011:87;;5084:6;;;;2281:74:1;;2269:2;2254:18;5011:87:0;2135:226:1;7297:104:0;;;:::i;11515:413::-;;;;;;:::i;:::-;;:::i;8709:175::-;;;;;;:::i;:::-;;:::i;8947:151::-;;;;;;:::i;:::-;9063:18;;;;9036:7;9063:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8947:151;5911:192;;;;;;:::i;:::-;;:::i;7078:100::-;7132:13;7165:5;7158:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:100;:::o;9245:169::-;9328:4;9345:39;3969:10;9368:7;9377:6;9345:8;:39::i;:::-;-1:-1:-1;9402:4:0;9245:169;;;;;:::o;9896:492::-;10036:4;10053:36;10063:6;10071:9;10082:6;10053:9;:36::i;:::-;10129:19;;;10102:24;10129:19;;;:11;:19;;;;;;;;3969:10;10129:33;;;;;;;;10181:26;;;;10173:79;;;;;;;3275:2:1;10173:79:0;;;3257:21:1;3314:2;3294:18;;;3287:30;3353:34;3333:18;;;3326:62;3424:10;3404:18;;;3397:38;3452:19;;10173:79:0;;;;;;;;;10288:57;10297:6;3969:10;10338:6;10319:16;:25;10288:8;:57::i;:::-;-1:-1:-1;10376:4:0;;9896:492;-1:-1:-1;;;;9896:492:0:o;10797:215::-;3969:10;10885:4;10934:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10885:4;;10902:80;;10925:7;;10934:47;;10971:10;;10934:47;:::i;:::-;10902:8;:80::i;5662:94::-;5057:7;5084:6;5231:23;5084:6;3969:10;5231:23;5223:68;;;;;;;3968:2:1;5223:68:0;;;3950:21:1;;;3987:18;;;3980:30;4046:34;4026:18;;;4019:62;4098:18;;5223:68:0;3766:356:1;5223:68:0;5727:21:::1;5745:1;5727:9;:21::i;:::-;5662:94::o:0;7297:104::-;7353:13;7386:7;7379:14;;;;;:::i;11515:413::-;3969:10;11608:4;11652:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11705:35;;;;11697:85;;;;;;;4329:2:1;11697:85:0;;;4311:21:1;4368:2;4348:18;;;4341:30;4407:34;4387:18;;;4380:62;4478:7;4458:18;;;4451:35;4503:19;;11697:85:0;4127:401:1;11697:85:0;11818:67;3969:10;11841:7;11869:15;11850:16;:34;11818:8;:67::i;:::-;-1:-1:-1;11916:4:0;;11515:413;-1:-1:-1;;;11515:413:0:o;8709:175::-;8795:4;8812:42;3969:10;8836:9;8847:6;8812:9;:42::i;5911:192::-;5057:7;5084:6;5231:23;5084:6;3969:10;5231:23;5223:68;;;;;;;3968:2:1;5223:68:0;;;3950:21:1;;;3987:18;;;3980:30;4046:34;4026:18;;;4019:62;4098:18;;5223:68:0;3766:356:1;5223:68:0;6000:22:::1;::::0;::::1;5992:73;;;::::0;::::1;::::0;;4735:2:1;5992:73:0::1;::::0;::::1;4717:21:1::0;4774:2;4754:18;;;4747:30;4813:34;4793:18;;;4786:62;4884:8;4864:18;;;4857:36;4910:19;;5992:73:0::1;4533:402:1::0;5992:73:0::1;6076:19;6086:8;6076:9;:19::i;:::-;5911:192:::0;:::o;15199:380::-;15335:19;;;15327:68;;;;;;;5142:2:1;15327:68:0;;;5124:21:1;5181:2;5161:18;;;5154:30;5220:34;5200:18;;;5193:62;5291:6;5271:18;;;5264:34;5315:19;;15327:68:0;4940:400:1;15327:68:0;15414:21;;;15406:68;;;;;;;5547:2:1;15406:68:0;;;5529:21:1;5586:2;5566:18;;;5559:30;5625:34;5605:18;;;5598:62;5696:4;5676:18;;;5669:32;5718:19;;15406:68:0;5345:398:1;15406:68:0;15487:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15539:32;;1340:25:1;;;15539:32:0;;1313:18:1;15539:32:0;;;;;;;15199:380;;;:::o;12418:733::-;12558:20;;;12550:70;;;;;;;5950:2:1;12550:70:0;;;5932:21:1;5989:2;5969:18;;;5962:30;6028:34;6008:18;;;6001:62;6099:7;6079:18;;;6072:35;6124:19;;12550:70:0;5748:401:1;12550:70:0;12639:23;;;12631:71;;;;;;;6356:2:1;12631:71:0;;;6338:21:1;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;6505:5;6485:18;;;6478:33;6528:19;;12631:71:0;6154:399:1;12631:71:0;12799:17;;;12775:21;12799:17;;;:9;:17;;;;;;12835:23;;;;12827:74;;;;;;;6760:2:1;12827:74:0;;;6742:21:1;6799:2;6779:18;;;6772:30;6838:34;6818:18;;;6811:62;6909:8;6889:18;;;6882:36;6935:19;;12827:74:0;6558:402:1;12827:74:0;12937:17;;;;;;;;:9;:17;;;;;;12957:22;;;12937:42;;13001:20;;;;;;;;:30;;12973:6;;12937:17;13001:30;;12973:6;;13001:30;:::i;:::-;;;;;;;;13066:9;13049:35;;13058:6;13049:35;;;13077:6;13049:35;;;;1340:25:1;;1328:2;1313:18;;1194:177;13049:35:0;;;;;;;;12539:612;12418:733;;;:::o;6111:173::-;6167:16;6186:6;;;6203:17;;;;;;;;;;6236:40;;6186:6;;;;;;;6236:40;;6167:16;6236:40;6156:128;6111:173;:::o;14:477:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;482:2;412:66;407:2;399:6;395:15;391:88;380:9;376:104;372:113;364:121;;;14:477;;;;:::o;496:196::-;564:20;;624:42;613:54;;603:65;;593:93;;682:1;679;672:12;593:93;496:196;;;:::o;697:300::-;765:6;773;826:2;814:9;805:7;801:23;797:32;794:52;;;842:1;839;832:12;794:52;865:29;884:9;865:29;:::i;:::-;855:39;963:2;948:18;;;;935:32;;-1:-1:-1;;;697:300:1:o;1376:374::-;1453:6;1461;1469;1522:2;1510:9;1501:7;1497:23;1493:32;1490:52;;;1538:1;1535;1528:12;1490:52;1561:29;1580:9;1561:29;:::i;:::-;1551:39;;1609:38;1643:2;1632:9;1628:18;1609:38;:::i;:::-;1376:374;;1599:48;;-1:-1:-1;;;1716:2:1;1701:18;;;;1688:32;;1376:374::o;1944:186::-;2003:6;2056:2;2044:9;2035:7;2031:23;2027:32;2024:52;;;2072:1;2069;2062:12;2024:52;2095:29;2114:9;2095:29;:::i;:::-;2085:39;1944:186;-1:-1:-1;;;1944:186:1:o;2366:260::-;2434:6;2442;2495:2;2483:9;2474:7;2470:23;2466:32;2463:52;;;2511:1;2508;2501:12;2463:52;2534:29;2553:9;2534:29;:::i;:::-;2524:39;;2582:38;2616:2;2605:9;2601:18;2582:38;:::i;:::-;2572:48;;2366:260;;;;;:::o;2631:437::-;2710:1;2706:12;;;;2753;;;2774:61;;2828:4;2820:6;2816:17;2806:27;;2774:61;2881:2;2873:6;2870:14;2850:18;2847:38;2844:218;;2918:77;2915:1;2908:88;3019:4;3016:1;3009:15;3047:4;3044:1;3037:15;2844:218;;2631:437;;;:::o;3482:279::-;3547:9;;;3568:10;;;3565:190;;;3611:77;3608:1;3601:88;3712:4;3709:1;3702:15;3740:4;3737:1;3730:15

Swarm Source

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