ETH Price: $2,438.49 (+3.42%)

Token

The Lost Bulls (TLBS)
 

Overview

Max Total Supply

3,000,000,000 TLBS

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
194,805 TLBS

Value
$0.00
0x7321f832571eacc8564d64c6681e36ac63a6d3d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x0ec2EF72...6C1f4B260
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
StandardToken

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-12-24
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

/*
Coinscope Generated Token
Platform: https://www.coinscope.co/createtoken
*/

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

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

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

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

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

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

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

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

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

// import "@openzeppelin/contracts/utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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);
    }
}

library SafeMath {
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        string tokenType,
        uint256 version
    );
}

contract StandardToken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;

    uint256 public constant VERSION = 3;

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

    string private _name;
    string private _symbol;
    uint8 private immutable _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        address feeReceiver
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _mint(owner(), totalSupply_);

        emit TokenCreated(owner(), address(this), "base", VERSION);

        if (feeReceiver == address(0x0)) return;

        payable(feeReceiver).transfer(address(this).balance);
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(
        address account,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[account][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}.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     */
    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.
     *
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     */
    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");

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `account` s tokens.
     */
    function _approve(
        address account,
        address spender,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"address","name":"feeReceiver","type":"address"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"string","name":"tokenType","type":"string"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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"}]

60a06040526040516200104338038062001043833981016040819052620000269162000345565b62000031336200013e565b60036200003f868262000484565b5060046200004e858262000484565b5060ff8316608052620000746200006d6000546001600160a01b031690565b836200018e565b30620000886000546001600160a01b031690565b6001600160a01b03167f989c950f789dd53617d32eabbd91a779b5ac03cd8caeb147f73c8c11739d0fb16003604051620000e391906040808252600490820152636261736560e01b6060820152602081019190915260800190565b60405180910390a36001600160a01b0381161562000133576040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801562000131573d6000803e3d6000fd5b505b505050505062000578565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001e95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600554620001f9919062000550565b6005556001600160a01b0382166000908152600160205260409020546200022290829062000550565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002749085815260200190565b60405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a857600080fd5b81516001600160401b0380821115620002c557620002c562000280565b604051601f8301601f19908116603f01168101908282118183101715620002f057620002f062000280565b816040528381526020925086838588010111156200030d57600080fd5b600091505b8382101562000331578582018301518183018401529082019062000312565b600093810190920192909252949350505050565b600080600080600060a086880312156200035e57600080fd5b85516001600160401b03808211156200037657600080fd5b6200038489838a0162000296565b965060208801519150808211156200039b57600080fd5b50620003aa8882890162000296565b945050604086015160ff81168114620003c257600080fd5b6060870151608088015191945092506001600160a01b0381168114620003e757600080fd5b809150509295509295909350565b600181811c908216806200040a57607f821691505b6020821081036200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047f57600081815260208120601f850160051c810160208610156200045a5750805b601f850160051c820191505b818110156200047b5782815560010162000466565b5050505b505050565b81516001600160401b03811115620004a057620004a062000280565b620004b881620004b18454620003f5565b8462000431565b602080601f831160018114620004f05760008415620004d75750858301515b600019600386901b1c1916600185901b1785556200047b565b600085815260208120601f198616915b82811015620005215788860151825594840194600190910190840162000500565b5085821015620005405787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200057257634e487b7160e01b600052601160045260246000fd5b92915050565b608051610aaf6200059460003960006101670152610aaf6000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020d578063dd62ed3e14610220578063f2fde38b14610259578063ffa1ad741461026c57600080fd5b8063715018a6146101cd5780638da5cb5b146101d757806395d89b41146101f2578063a457c2d7146101fa57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461019157806370a08231146101a457600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610274565b60405161010f9190610886565b60405180910390f35b61012b6101263660046108f0565b610306565b604051901515815260200161010f565b6005545b60405190815260200161010f565b61012b61015b36600461091a565b61031d565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161010f565b61012b61019f3660046108f0565b610386565b61013f6101b2366004610956565b6001600160a01b031660009081526001602052604090205490565b6101d56103bd565b005b6000546040516001600160a01b03909116815260200161010f565b610102610428565b61012b6102083660046108f0565b610437565b61012b61021b3660046108f0565b610486565b61013f61022e366004610978565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d5610267366004610956565b610493565b61013f600381565b606060038054610283906109ab565b80601f01602080910402602001604051908101604052809291908181526020018280546102af906109ab565b80156102fc5780601f106102d1576101008083540402835291602001916102fc565b820191906000526020600020905b8154815290600101906020018083116102df57829003601f168201915b5050505050905090565b600061031333848461055e565b5060015b92915050565b600061032a848484610683565b61037c843361037785604051806060016040528060288152602001610a2d602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919061080a565b61055e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103139185906103779086906109e5565b6000546001600160a01b0316331461041c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104266000610836565b565b606060048054610283906109ab565b6000610313338461037785604051806060016040528060258152602001610a55602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919061080a565b6000610313338484610683565b6000546001600160a01b031633146104ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6001600160a01b0381166105525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610413565b61055b81610836565b50565b6001600160a01b0383166105c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106215760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166107495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b61078681604051806060016040528060268152602001610a07602691396001600160a01b038616600090815260016020526040902054919061080a565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107b69082906109e5565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106769085815260200190565b6000818484111561082e5760405162461bcd60e51b81526004016104139190610886565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108b357858101830151858201604001528201610897565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108eb57600080fd5b919050565b6000806040838503121561090357600080fd5b61090c836108d4565b946020939093013593505050565b60008060006060848603121561092f57600080fd5b610938846108d4565b9250610946602085016108d4565b9150604084013590509250925092565b60006020828403121561096857600080fd5b610971826108d4565b9392505050565b6000806040838503121561098b57600080fd5b610994836108d4565b91506109a2602084016108d4565b90509250929050565b600181811c908216806109bf57607f821691505b6020821081036109df57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561031757634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206375dc72b5deb9931df87172f7201383bcf7b032cff4d9676ed3514134fe8df764736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000052b7d2dcc80cd2e40000000000000000000000000000001717afbe81bb09cbd283f18474349efe2c27dced00000000000000000000000000000000000000000000000000000000000000035356520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953565220544f4b454e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020d578063dd62ed3e14610220578063f2fde38b14610259578063ffa1ad741461026c57600080fd5b8063715018a6146101cd5780638da5cb5b146101d757806395d89b41146101f2578063a457c2d7146101fa57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461019157806370a08231146101a457600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610274565b60405161010f9190610886565b60405180910390f35b61012b6101263660046108f0565b610306565b604051901515815260200161010f565b6005545b60405190815260200161010f565b61012b61015b36600461091a565b61031d565b60405160ff7f000000000000000000000000000000000000000000000000000000000000001216815260200161010f565b61012b61019f3660046108f0565b610386565b61013f6101b2366004610956565b6001600160a01b031660009081526001602052604090205490565b6101d56103bd565b005b6000546040516001600160a01b03909116815260200161010f565b610102610428565b61012b6102083660046108f0565b610437565b61012b61021b3660046108f0565b610486565b61013f61022e366004610978565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d5610267366004610956565b610493565b61013f600381565b606060038054610283906109ab565b80601f01602080910402602001604051908101604052809291908181526020018280546102af906109ab565b80156102fc5780601f106102d1576101008083540402835291602001916102fc565b820191906000526020600020905b8154815290600101906020018083116102df57829003601f168201915b5050505050905090565b600061031333848461055e565b5060015b92915050565b600061032a848484610683565b61037c843361037785604051806060016040528060288152602001610a2d602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919061080a565b61055e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103139185906103779086906109e5565b6000546001600160a01b0316331461041c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104266000610836565b565b606060048054610283906109ab565b6000610313338461037785604051806060016040528060258152602001610a55602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919061080a565b6000610313338484610683565b6000546001600160a01b031633146104ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6001600160a01b0381166105525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610413565b61055b81610836565b50565b6001600160a01b0383166105c05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106215760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166107495760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b61078681604051806060016040528060268152602001610a07602691396001600160a01b038616600090815260016020526040902054919061080a565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107b69082906109e5565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106769085815260200190565b6000818484111561082e5760405162461bcd60e51b81526004016104139190610886565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108b357858101830151858201604001528201610897565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108eb57600080fd5b919050565b6000806040838503121561090357600080fd5b61090c836108d4565b946020939093013593505050565b60008060006060848603121561092f57600080fd5b610938846108d4565b9250610946602085016108d4565b9150604084013590509250925092565b60006020828403121561096857600080fd5b610971826108d4565b9392505050565b6000806040838503121561098b57600080fd5b610994836108d4565b91506109a2602084016108d4565b90509250929050565b600181811c908216806109bf57607f821691505b6020821081036109df57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561031757634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206375dc72b5deb9931df87172f7201383bcf7b032cff4d9676ed3514134fe8df764736f6c63430008100033

Deployed Bytecode Sourcemap

6549:6175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7514:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9543:194;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9543:194:0;1004:187:1;8426:108:0;8514:12;;8426:108;;;1342:25:1;;;1330:2;1315:18;8426:108:0;1196:177:1;9803:454:0;;;;;;:::i;:::-;;:::i;8270:91::-;;;1883:4:1;8344:9:0;1871:17:1;1853:36;;1841:2;1826:18;8270:91:0;1711:184:1;10375:290:0;;;;;;:::i;:::-;;:::i;8597:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8714:18:0;8687:7;8714:18;;;:9;:18;;;;;;;8597:143;5265:94;;;:::i;:::-;;4614:87;4660:7;4687:6;4614:87;;-1:-1:-1;;;;;4687:6:0;;;2237:51:1;;2225:2;2210:18;4614:87:0;2091:203:1;7724:95:0;;;:::i;10783:393::-;;;;;;:::i;:::-;;:::i;8953:200::-;;;;;;:::i;:::-;;:::i;9216:180::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9359:20:0;;;9332:7;9359:20;;;:11;:20;;;;;;;;:29;;;;;;;;;;;;;9216:180;5514:229;;;;;;:::i;:::-;;:::i;6644:35::-;;6678:1;6644:35;;7514:91;7559:13;7592:5;7585:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7514:91;:::o;9543:194::-;9651:4;9668:39;3598:10;9691:7;9700:6;9668:8;:39::i;:::-;-1:-1:-1;9725:4:0;9543:194;;;;;:::o;9803:454::-;9943:4;9960:36;9970:6;9978:9;9989:6;9960:9;:36::i;:::-;10007:220;10030:6;3598:10;10078:138;10134:6;10078:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10078:19:0;;;;;;:11;:19;;;;;;;;3598:10;10078:33;;;;;;;;;;:37;:138::i;:::-;10007:8;:220::i;:::-;-1:-1:-1;10245:4:0;9803:454;;;;;:::o;10375:290::-;3598:10;10488:4;10577:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10577:34:0;;;;;;;;;;10488:4;;10505:130;;10555:7;;10577:47;;10614:10;;10577:47;:::i;5265:94::-;4660:7;4687:6;-1:-1:-1;;;;;4687:6:0;3598:10;4834:23;4826:68;;;;-1:-1:-1;;;4826:68:0;;3378:2:1;4826:68:0;;;3360:21:1;;;3397:18;;;3390:30;3456:34;3436:18;;;3429:62;3508:18;;4826:68:0;;;;;;;;;5330:21:::1;5348:1;5330:9;:21::i;:::-;5265:94::o:0;7724:95::-;7771:13;7804:7;7797:14;;;;;:::i;10783:393::-;10901:4;10918:228;3598:10;10968:7;10990:145;11047:15;10990:145;;;;;;;;;;;;;;;;;3598:10;10990:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10990:34:0;;;;;;;;;;;;:38;:145::i;8953:200::-;9064:4;9081:42;3598:10;9105:9;9116:6;9081:9;:42::i;5514:229::-;4660:7;4687:6;-1:-1:-1;;;;;4687:6:0;3598:10;4834:23;4826:68;;;;-1:-1:-1;;;4826:68:0;;3378:2:1;4826:68:0;;;3360:21:1;;;3397:18;;;3390:30;3456:34;3436:18;;;3429:62;3508:18;;4826:68:0;3176:356:1;4826:68:0;-1:-1:-1;;;;;5617:22:0;::::1;5595:110;;;::::0;-1:-1:-1;;;5595:110:0;;3739:2:1;5595:110:0::1;::::0;::::1;3721:21:1::0;3778:2;3758:18;;;3751:30;3817:34;3797:18;;;3790:62;-1:-1:-1;;;3868:18:1;;;3861:36;3914:19;;5595:110:0::1;3537:402:1::0;5595:110:0::1;5716:19;5726:8;5716:9;:19::i;:::-;5514:229:::0;:::o;12333:388::-;-1:-1:-1;;;;;12471:21:0;;12463:70;;;;-1:-1:-1;;;12463:70:0;;4146:2:1;12463:70:0;;;4128:21:1;4185:2;4165:18;;;4158:30;4224:34;4204:18;;;4197:62;-1:-1:-1;;;4275:18:1;;;4268:34;4319:19;;12463:70:0;3944:400:1;12463:70:0;-1:-1:-1;;;;;12552:21:0;;12544:68;;;;-1:-1:-1;;;12544:68:0;;4551:2:1;12544:68:0;;;4533:21:1;4590:2;4570:18;;;4563:30;4629:34;4609:18;;;4602:62;-1:-1:-1;;;4680:18:1;;;4673:32;4722:19;;12544:68:0;4349:398:1;12544:68:0;-1:-1:-1;;;;;12625:20:0;;;;;;;:11;:20;;;;;;;;:29;;;;;;;;;;;;;:38;;;12679:34;;1342:25:1;;;12679:34:0;;1315:18:1;12679:34:0;;;;;;;;12333:388;;;:::o;11267:547::-;-1:-1:-1;;;;;11407:20:0;;11399:70;;;;-1:-1:-1;;;11399:70:0;;4954:2:1;11399:70:0;;;4936:21:1;4993:2;4973:18;;;4966:30;5032:34;5012:18;;;5005:62;-1:-1:-1;;;5083:18:1;;;5076:35;5128:19;;11399:70:0;4752:401:1;11399:70:0;-1:-1:-1;;;;;11488:23:0;;11480:71;;;;-1:-1:-1;;;11480:71:0;;5360:2:1;11480:71:0;;;5342:21:1;5399:2;5379:18;;;5372:30;5438:34;5418:18;;;5411:62;-1:-1:-1;;;5489:18:1;;;5482:33;5532:19;;11480:71:0;5158:399:1;11480:71:0;11584:108;11620:6;11584:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11584:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;11564:17:0;;;;;;;:9;:17;;;;;;:128;;;;11726:20;;;;;;;:29;;11749:6;;11726:29;:::i;:::-;-1:-1:-1;;;;;11703:20:0;;;;;;;:9;:20;;;;;;;:52;;;;11771:35;;;;;;;;;;11799:6;1342:25:1;;1330:2;1315:18;;1196:177;6117:240:0;6237:7;6298:12;6290:6;;;;6282:29;;;;-1:-1:-1;;;6282:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;6333:5:0;;;6117:240::o;5751:173::-;5807:16;5826:6;;-1:-1:-1;;;;;5843:17:0;;;-1:-1:-1;;;;;;5843:17:0;;;;;;5876:40;;5826:6;;;;;;;5876:40;;5807:16;5876:40;5796:128;5751:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15

Swarm Source

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