ETH Price: $2,680.05 (+1.70%)
Gas: 2 Gwei

Token

Genso (GENSO)
 

Overview

Max Total Supply

1,600,000,000 GENSO

Holders

286

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
930,599.731403309980363331 GENSO

Value
$0.00
0xd8e6028e44eb1ab21e730bd283e3f9cdd7c3319a
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:
GENSO

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-23
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;


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


pragma solidity ^0.8.0;

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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);
}

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);
}

contract GENSO is Context, Ownable, IERC20, IERC20Metadata{
    using SafeMath for uint256;


    mapping (address => uint256) private _balances;

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

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


    constructor() {
        _name = 'Genso';
        _symbol = 'GENSO';
        _decimals = 18;
        _totalSupply = 1_600_000_000 * 1e18;

        
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    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;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERCToken: transfer from the zero address");
        require(recipient != address(0), "ERCToken: transfer to the zero address");

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

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the dead address");
        require(spender != address(0), "ERC20: approve to the dead address");

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

}

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"}]

608060405234801562000010575f80fd5b506200001c33620000e7565b60408051808201909152600581526447656e736f60d81b6020820152600490620000479082620001d6565b506040805180820190915260058082526447454e534f60d81b602083015290620000729082620001d6565b506006805460ff191660121790556b052b7d2dcc80cd2e400000006003819055335f8181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000d99190815260200190565b60405180910390a36200029e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200015f57607f821691505b6020821081036200017e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001d1575f81815260208120601f850160051c81016020861015620001ac5750805b601f850160051c820191505b81811015620001cd57828155600101620001b8565b5050505b505050565b81516001600160401b03811115620001f257620001f262000136565b6200020a816200020384546200014a565b8462000184565b602080601f83116001811462000240575f8415620002285750858301515b5f19600386901b1c1916600185901b178555620001cd565b5f85815260208120601f198616915b8281101562000270578886015182559484019460019091019084016200024f565b50858210156200028e57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b610a6680620002ac5f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101cb578063a9059cbb146101de578063dd62ed3e146101f1578063f2fde38b14610229575f80fd5b8063715018a61461019f5780638da5cb5b146101a957806395d89b41146101c3575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461016457806370a0823114610177575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161023c565b6040516100fe9190610852565b60405180910390f35b61011a6101153660046108b8565b6102cc565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a3660046108e0565b6102e2565b60065460405160ff90911681526020016100fe565b61011a6101723660046108b8565b610349565b61012e610185366004610919565b6001600160a01b03165f9081526001602052604090205490565b6101a761037e565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f16103e7565b61011a6101d93660046108b8565b6103f6565b61011a6101ec3660046108b8565b610443565b61012e6101ff366004610932565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a7610237366004610919565b61044f565b60606004805461024b90610963565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610963565b80156102c25780601f10610299576101008083540402835291602001916102c2565b820191905f5260205f20905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b5f6102d8338484610519565b5060015b92915050565b5f6102ee84848461063d565b61033f843361033a856040518060600160405280602881526020016109e4602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107c6565b610519565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d891859061033a90866107f1565b5f546001600160a01b031633146103dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103e55f610803565b565b60606005805461024b90610963565b5f6102d8338461033a85604051806060016040528060258152602001610a0c60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107c6565b5f6102d833848461063d565b5f546001600160a01b031633146104a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d3565b6001600160a01b03811661050d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b61051681610803565b50565b6001600160a01b03831661057b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d207468652064656164206164646044820152637265737360e01b60648201526084016103d3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f207468652064656164206164647265604482015261737360f01b60648201526084016103d3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a45760405162461bcd60e51b815260206004820152602860248201527f455243546f6b656e3a207472616e736665722066726f6d20746865207a65726f604482015267206164647265737360c01b60648201526084016103d3565b6001600160a01b0382166107095760405162461bcd60e51b815260206004820152602660248201527f455243546f6b656e3a207472616e7366657220746f20746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b610745816040518060600160405280602981526020016109bb602991396001600160a01b0386165f9081526001602052604090205491906107c6565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461077390826107f1565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106309085815260200190565b5f81848411156107e95760405162461bcd60e51b81526004016103d39190610852565b505050900390565b5f6107fc828461099b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b8181101561087d57858101830151858201604001528201610861565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108b3575f80fd5b919050565b5f80604083850312156108c9575f80fd5b6108d28361089d565b946020939093013593505050565b5f805f606084860312156108f2575f80fd5b6108fb8461089d565b92506109096020850161089d565b9150604084013590509250925092565b5f60208284031215610929575f80fd5b6107fc8261089d565b5f8060408385031215610943575f80fd5b61094c8361089d565b915061095a6020840161089d565b90509250929050565b600181811c9082168061097757607f821691505b60208210810361099557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102dc57634e487b7160e01b5f52601160045260245ffdfe455243546f6b656e3a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094d1676c7fe86d87eb7f0594719d4563e9b4e1b2ee30fc4016c522e4f50f34bf64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101cb578063a9059cbb146101de578063dd62ed3e146101f1578063f2fde38b14610229575f80fd5b8063715018a61461019f5780638da5cb5b146101a957806395d89b41146101c3575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461016457806370a0823114610177575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161023c565b6040516100fe9190610852565b60405180910390f35b61011a6101153660046108b8565b6102cc565b60405190151581526020016100fe565b6003545b6040519081526020016100fe565b61011a61014a3660046108e0565b6102e2565b60065460405160ff90911681526020016100fe565b61011a6101723660046108b8565b610349565b61012e610185366004610919565b6001600160a01b03165f9081526001602052604090205490565b6101a761037e565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f16103e7565b61011a6101d93660046108b8565b6103f6565b61011a6101ec3660046108b8565b610443565b61012e6101ff366004610932565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a7610237366004610919565b61044f565b60606004805461024b90610963565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610963565b80156102c25780601f10610299576101008083540402835291602001916102c2565b820191905f5260205f20905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b5f6102d8338484610519565b5060015b92915050565b5f6102ee84848461063d565b61033f843361033a856040518060600160405280602881526020016109e4602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107c6565b610519565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d891859061033a90866107f1565b5f546001600160a01b031633146103dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103e55f610803565b565b60606005805461024b90610963565b5f6102d8338461033a85604051806060016040528060258152602001610a0c60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107c6565b5f6102d833848461063d565b5f546001600160a01b031633146104a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d3565b6001600160a01b03811661050d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b61051681610803565b50565b6001600160a01b03831661057b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d207468652064656164206164646044820152637265737360e01b60648201526084016103d3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f207468652064656164206164647265604482015261737360f01b60648201526084016103d3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106a45760405162461bcd60e51b815260206004820152602860248201527f455243546f6b656e3a207472616e736665722066726f6d20746865207a65726f604482015267206164647265737360c01b60648201526084016103d3565b6001600160a01b0382166107095760405162461bcd60e51b815260206004820152602660248201527f455243546f6b656e3a207472616e7366657220746f20746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b610745816040518060600160405280602981526020016109bb602991396001600160a01b0386165f9081526001602052604090205491906107c6565b6001600160a01b038085165f90815260016020526040808220939093559084168152205461077390826107f1565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106309085815260200190565b5f81848411156107e95760405162461bcd60e51b81526004016103d39190610852565b505050900390565b5f6107fc828461099b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b8181101561087d57858101830151858201604001528201610861565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108b3575f80fd5b919050565b5f80604083850312156108c9575f80fd5b6108d28361089d565b946020939093013593505050565b5f805f606084860312156108f2575f80fd5b6108fb8461089d565b92506109096020850161089d565b9150604084013590509250925092565b5f60208284031215610929575f80fd5b6107fc8261089d565b5f8060408385031215610943575f80fd5b61094c8361089d565b915061095a6020840161089d565b90509250929050565b600181811c9082168061097757607f821691505b60208210810361099557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102dc57634e487b7160e01b5f52601160045260245ffdfe455243546f6b656e3a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122094d1676c7fe86d87eb7f0594719d4563e9b4e1b2ee30fc4016c522e4f50f34bf64736f6c63430008140033

Deployed Bytecode Sourcemap

12360:3348:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12998:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13852:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13852:169:0;1004:187:1;13275:100:0;13355:12;;13275:100;;;1342:25:1;;;1330:2;1315:18;13275:100:0;1196:177:1;14029:321:0;;;;;;:::i;:::-;;:::i;13184:83::-;13250:9;;13184:83;;13250:9;;;;1853:36:1;;1841:2;1826:18;13184:83:0;1711:184:1;14358:218:0;;;;;;:::i;:::-;;:::i;13383:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13476:18:0;13449:7;13476:18;;;:9;:18;;;;;;;13383:119;2418:103;;;:::i;:::-;;1767:87;1813:7;1840:6;1767:87;;-1:-1:-1;;;;;1840:6:0;;;2237:51:1;;2225:2;2210:18;1767:87:0;2091:203:1;13089:87:0;;;:::i;14584:269::-;;;;;;:::i;:::-;;:::i;13510:175::-;;;;;;:::i;:::-;;:::i;13693:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13809:18:0;;;13782:7;13809:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13693:151;2676:201;;;;;;:::i;:::-;;:::i;12998:83::-;13035:13;13068:5;13061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12998:83;:::o;13852:169::-;13935:4;13952:39;685:10;13975:7;13984:6;13952:8;:39::i;:::-;-1:-1:-1;14009:4:0;13852:169;;;;;:::o;14029:321::-;14135:4;14152:36;14162:6;14170:9;14181:6;14152:9;:36::i;:::-;14199:121;14208:6;685:10;14230:89;14268:6;14230:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14230:19:0;;;;;;:11;:19;;;;;;;;685:10;14230:33;;;;;;;;;;:37;:89::i;:::-;14199:8;:121::i;:::-;-1:-1:-1;14338:4:0;14029:321;;;;;:::o;14358:218::-;685:10;14446:4;14495:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14495:34:0;;;;;;;;;;14446:4;;14463:83;;14486:7;;14495:50;;14534:10;14495:38;:50::i;2418:103::-;1813:7;1840:6;-1:-1:-1;;;;;1840:6:0;685:10;1987:23;1979:68;;;;-1:-1:-1;;;1979:68:0;;3151:2:1;1979:68:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;1979:68:0;;;;;;;;;2483:30:::1;2510:1;2483:18;:30::i;:::-;2418:103::o:0;13089:87::-;13128:13;13161:7;13154:14;;;;;:::i;14584:269::-;14677:4;14694:129;685:10;14717:7;14726:96;14765:15;14726:96;;;;;;;;;;;;;;;;;685:10;14726:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14726:34:0;;;;;;;;;;;;:38;:96::i;13510:175::-;13596:4;13613:42;685:10;13637:9;13648:6;13613:9;:42::i;2676:201::-;1813:7;1840:6;-1:-1:-1;;;;;1840:6:0;685:10;1987:23;1979:68;;;;-1:-1:-1;;;1979:68:0;;3151:2:1;1979:68:0;;;3133:21:1;;;3170:18;;;3163:30;3229:34;3209:18;;;3202:62;3281:18;;1979:68:0;2949:356:1;1979:68:0;-1:-1:-1;;;;;2765:22:0;::::1;2757:73;;;::::0;-1:-1:-1;;;2757:73:0;;3512:2:1;2757:73:0::1;::::0;::::1;3494:21:1::0;3551:2;3531:18;;;3524:30;3590:34;3570:18;;;3563:62;-1:-1:-1;;;3641:18:1;;;3634:36;3687:19;;2757:73:0::1;3310:402:1::0;2757:73:0::1;2841:28;2860:8;2841:18;:28::i;:::-;2676:201:::0;:::o;15357:346::-;-1:-1:-1;;;;;15459:19:0;;15451:68;;;;-1:-1:-1;;;15451:68:0;;3919:2:1;15451:68:0;;;3901:21:1;3958:2;3938:18;;;3931:30;3997:34;3977:18;;;3970:62;-1:-1:-1;;;4048:18:1;;;4041:34;4092:19;;15451:68:0;3717:400:1;15451:68:0;-1:-1:-1;;;;;15538:21:0;;15530:68;;;;-1:-1:-1;;;15530:68:0;;4324:2:1;15530:68:0;;;4306:21:1;4363:2;4343:18;;;4336:30;4402:34;4382:18;;;4375:62;-1:-1:-1;;;4453:18:1;;;4446:32;4495:19;;15530:68:0;4122:398:1;15530:68:0;-1:-1:-1;;;;;15611:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15663:32;;1342:25:1;;;15663:32:0;;1315:18:1;15663:32:0;;;;;;;;15357:346;;;:::o;14861:488::-;-1:-1:-1;;;;;14967:20:0;;14959:73;;;;-1:-1:-1;;;14959:73:0;;4727:2:1;14959:73:0;;;4709:21:1;4766:2;4746:18;;;4739:30;4805:34;4785:18;;;4778:62;-1:-1:-1;;;4856:18:1;;;4849:38;4904:19;;14959:73:0;4525:404:1;14959:73:0;-1:-1:-1;;;;;15051:23:0;;15043:74;;;;-1:-1:-1;;;15043:74:0;;5136:2:1;15043:74:0;;;5118:21:1;5175:2;5155:18;;;5148:30;5214:34;5194:18;;;5187:62;-1:-1:-1;;;5265:18:1;;;5258:36;5311:19;;15043:74:0;4934:402:1;15043:74:0;15150;15172:6;15150:74;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15150:17:0;;;;;;:9;:17;;;;;;;:74;:21;:74::i;:::-;-1:-1:-1;;;;;15130:17:0;;;;;;;:9;:17;;;;;;:94;;;;15258:20;;;;;;;:32;;15283:6;15258:24;:32::i;:::-;-1:-1:-1;;;;;15235:20:0;;;;;;;:9;:20;;;;;;;:55;;;;15306:35;;;;;;;;;;15334:6;1342:25:1;;1330:2;1315:18;;1196:177;7867:240:0;7987:7;8048:12;8040:6;;;;8032:29;;;;-1:-1:-1;;;8032:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8083:5:0;;;7867:240::o;5588:98::-;5646:7;5673:5;5677:1;5673;:5;:::i;:::-;5666:12;5588:98;-1:-1:-1;;;5588:98:0:o;3037:191::-;3111:16;3130:6;;-1:-1:-1;;;;;3147:17:0;;;-1:-1:-1;;;;;;3147:17:0;;;;;;3180:40;;3130:6;;;;;;;3180:40;;3111:16;3180:40;3100:128;3037:191;:::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;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;5341:222::-;5406:9;;;5427:10;;;5424:133;;;5479:10;5474:3;5470:20;5467:1;5460:31;5514:4;5511:1;5504:15;5542:4;5539:1;5532:15

Swarm Source

ipfs://94d1676c7fe86d87eb7f0594719d4563e9b4e1b2ee30fc4016c522e4f50f34bf
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.