ETH Price: $2,518.58 (+3.17%)
Gas: 0.79 Gwei

Token

SURYA (SUN)
 

Overview

Max Total Supply

1,000,000,000 SUN

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,396,561.131241899 SUN

Value
$0.00
0xe783Ba6cf325d16c7fCf019517D3548420066aaa
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:
SURYA

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : SURYA.sol
pragma solidity ^0.8.21;

import "./ERC20.sol";
import "./ISpace.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";

contract Ownable {
    address _owner;

    constructor() {
        _owner = msg.sender;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "caller is not the owner");
        _;
    }

    function owner() external view virtual returns (address) {
        return _owner;
    }

    function renounceOwnership(address newOwner) external onlyOwner {
        _owner = newOwner;
    }
}

contract SURYA is ERC20, Ownable {
    uint256 public constant startTotalSupply = 1e9 * (10 ** _decimals);
    uint256 constant _startMaxBuyCount = (startTotalSupply * 25) / 10000;
    uint256 constant _addMaxBuyPercentPerSec = 1; // add 0.01%/second
    IUniswapV2Router02 constant router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    ISpace public immutable space;
    bool _inSwap;
    address pair;
    uint256 _startTime;
    uint256 public feePercent = 10;
    uint256 public ercFeePercent = 20; // noe of this is starts destruction on claim

    constructor(address space_) ERC20("SURYA", "SUN") {
        space = ISpace(space_);
    }

    function setFeePercent(uint256 percent) external onlyOwner {
        require(percent <= 10);
        feePercent = percent;
    }

    function setErcPercent(uint256 percent) external onlyOwner {
        require(percent <= 100);
        ercFeePercent = percent;
    }

    modifier lockTheSwap() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (_inSwap) {
            super._transfer(from, to, amount);
            return;
        }

        if (to == address(0)) {
            require(
                _balances[from] >= amount,
                "ERC20: transfer amount exceeds balance"
            );
            unchecked {
                _balances[from] -= amount;
                _totalSupply -= amount;
            }
            emit Transfer(from, to, amount);
            return;
        }

        if (from == pair) {
            transferFromPair(to, amount);
            space.executeNewPlanets();
            return;
        }

        if (to == pair) {
            transferToPair(from, amount);
            space.executeNewPlanets();
            return;
        }

        super._transfer(from, to, amount);
    }

    function transferFromPair(address to, uint256 amount) private {
        require(amount <= maxBuy(), "maximum buy count limit");
        uint256 tax = (amount * (feePercent / 2)) / 100;
        uint256 ercPercent = (tax * ercFeePercent) / 100;
        uint256 ethPercent = tax - ercPercent;
        if (ercPercent > 0) super._transfer(pair, address(space), ercPercent);
        if (ethPercent > 0) super._transfer(pair, address(this), ethPercent);
        super._transfer(pair, to, amount - 2 * tax);
    }

    function transferToPair(address from, uint256 amount) private {
        uint256 swapCount = balanceOf(address(this));
        uint256 maxSwapCount = 2 * amount;
        if (swapCount > maxSwapCount) swapCount = maxSwapCount;
        _swapTokensForEth(swapCount);
        super._transfer(from, pair, amount);
    }

    function _swapTokensForEth(uint256 tokenAmount) internal lockTheSwap {
        if (tokenAmount == 0) return;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        // make the swap
        router.swapExactTokensForETH(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(space),
            block.timestamp
        );
    }

    function burned() public view returns (uint256) {
        return startTotalSupply - totalSupply();
    }

    function createPair() external payable lockTheSwap {
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        _mint(address(this), startTotalSupply);
        _approve(address(this), address(router), type(uint256).max);
        router.addLiquidityETH{value: msg.value}(
            address(this),
            startTotalSupply,
            0,
            0,
            msg.sender,
            block.timestamp
        );
        _startTime = block.timestamp;
    }

    function maxBuy() public view returns (uint256) {
        if (pair == address(0)) return startTotalSupply;
        uint256 count = _startMaxBuyCount +
            (startTotalSupply *
                (block.timestamp - _startTime) *
                _addMaxBuyPercentPerSec) /
            10000;
        if (count > startTotalSupply) count = startTotalSupply;
        return count;
    }

    function maxBuyWithoutDecimals() public view returns (uint256) {
        return maxBuy() / (10 ** _decimals);
    }
}

File 2 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 3 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 5 of 8 : ERC20.sol
pragma solidity ^0.8.21;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;
    uint8 internal constant _decimals = 9;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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 pure 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, 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");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 6 of 8 : ISpace.sol
pragma solidity ^0.8.21;

interface ISpace {
    function executeNewPlanets() external;
}

File 7 of 8 : IUniswapV2Factory.sol
pragma solidity ^0.8.21;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 8 of 8 : IUniswapV2Router02.sol
pragma solidity ^0.8.21;

interface IUniswapV2Router02 {
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function getReserves(
        address factory,
        address tokenA,
        address tokenB
    ) external view returns (uint reserveA, uint reserveB);

    function getAmountsIn(
        uint amountOut,
        address[] memory path
    ) external view returns (uint[] memory amounts);

    function getAmountsOut(
        uint amountIn,
        address[] memory path
    ) external view returns (uint[] memory amounts);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"space_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"ercFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyWithoutDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setErcPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"space","outputs":[{"internalType":"contract ISpace","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a0604052600a60085560146009553480156200001b57600080fd5b50604051620019e6380380620019e68339810160408190526200003e91620000bf565b60405180604001604052806005815260200164535552594160d81b8152506040518060400160405280600381526020016229aaa760e91b815250816003908162000089919062000196565b50600462000098828262000196565b5050600580546001600160a01b03191633179055506001600160a01b031660805262000262565b600060208284031215620000d257600080fd5b81516001600160a01b0381168114620000ea57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011c57607f821691505b6020821081036200013d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019157600081815260208120601f850160051c810160208610156200016c5750805b601f850160051c820191505b818110156200018d5782815560010162000178565b5050505b505050565b81516001600160401b03811115620001b257620001b2620000f1565b620001ca81620001c3845462000107565b8462000143565b602080601f831160018114620002025760008415620001e95750858301515b600019600386901b1c1916600185901b1785556200018d565b600085815260208120601f198616915b82811015620002335788860151825594840194600190910190840162000212565b5085821015620002525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051611753620002936000396000818161021f01528181610d4901528181611071015261127501526117536000f3fe6080604052600436106101405760003560e01c806370db69d6116100b65780639e78fb4f1161006f5780639e78fb4f14610380578063a457c2d714610388578063a9059cbb146103a8578063acaad0d8146103c8578063cb8eebc1146103e8578063dd62ed3e146103fe57600080fd5b806370db69d6146102ed57806373f42561146103025780637ce3489b146103175780637fd6f15c146103375780638da5cb5b1461034d57806395d89b411461036b57600080fd5b806323b872dd1161010857806323b872dd146101ed57806327af9e381461020d578063313ce5671461025957806338bf3cfa14610275578063395093511461029757806370a08231146102b757600080fd5b806306fdde0314610145578063095ea7b31461017057806313a4486c146101a057806318160ddd146101c357806322194e6a146101d8575b600080fd5b34801561015157600080fd5b5061015a61041e565b60405161016791906112e3565b60405180910390f35b34801561017c57600080fd5b5061019061018b366004611349565b6104b0565b6040519015158152602001610167565b3480156101ac57600080fd5b506101b56104ca565b604051908152602001610167565b3480156101cf57600080fd5b506002546101b5565b3480156101e457600080fd5b506101b56104e7565b3480156101f957600080fd5b50610190610208366004611375565b61050c565b34801561021957600080fd5b506102417f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610167565b34801561026557600080fd5b5060405160098152602001610167565b34801561028157600080fd5b506102956102903660046113b6565b610530565b005b3480156102a357600080fd5b506101906102b2366004611349565b610585565b3480156102c357600080fd5b506101b56102d23660046113b6565b6001600160a01b031660009081526020819052604090205490565b3480156102f957600080fd5b506101b56105a7565b34801561030e57600080fd5b506101b56106a2565b34801561032357600080fd5b506102956103323660046113da565b6106d1565b34801561034357600080fd5b506101b560085481565b34801561035957600080fd5b506005546001600160a01b0316610241565b34801561037757600080fd5b5061015a61070e565b61029561071d565b34801561039457600080fd5b506101906103a3366004611349565b6109d3565b3480156103b457600080fd5b506101906103c3366004611349565b610a4e565b3480156103d457600080fd5b506102956103e33660046113da565b610a5c565b3480156103f457600080fd5b506101b560095481565b34801561040a57600080fd5b506101b56104193660046113f3565b610a99565b60606003805461042d9061142c565b80601f01602080910402602001604051908101604052809291908181526020018280546104599061142c565b80156104a65780601f1061047b576101008083540402835291602001916104a6565b820191906000526020600020905b81548152906001019060200180831161048957829003601f168201915b5050505050905090565b6000336104be818585610ac4565b60019150505b92915050565b6104d66009600a611560565b6104e490633b9aca0061156f565b81565b60006104f56009600a611560565b6104fd6105a7565b6105079190611586565b905090565b60003361051a858285610be9565b610525858585610c63565b506001949350505050565b6005546001600160a01b031633146105635760405162461bcd60e51b815260040161055a906115a8565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104be8185856105988383610a99565b6105a291906115df565b610ac4565b6006546000906001600160a01b03166105d4576105c66009600a611560565b61050790633b9aca0061156f565b60006127106001600754426105e991906115f2565b6105f56009600a611560565b61060390633b9aca0061156f565b61060d919061156f565b610617919061156f565b6106219190611586565b6127106106306009600a611560565b61063e90633b9aca0061156f565b61064990601961156f565b6106539190611586565b61065d91906115df565b905061066b6009600a611560565b61067990633b9aca0061156f565b81111561069d5761068c6009600a611560565b61069a90633b9aca0061156f565b90505b919050565b60006106ad60025490565b6106b96009600a611560565b6106c790633b9aca0061156f565b61050791906115f2565b6005546001600160a01b031633146106fb5760405162461bcd60e51b815260040161055a906115a8565b600a81111561070957600080fd5b600855565b60606004805461042d9061142c565b6005805460ff60a01b1916600160a01b1790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190611605565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611605565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089a9190611605565b600680546001600160a01b0319166001600160a01b03929092169190911790556108dd306108ca6009600a611560565b6108d890633b9aca0061156f565b610dea565b6108fe30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610ac4565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d71934306109266009600a611560565b61093490633b9aca0061156f565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610998573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109bd9190611622565b505042600755506005805460ff60a01b19169055565b600033816109e18286610a99565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055a565b6105258286868403610ac4565b6000336104be818585610c63565b6005546001600160a01b03163314610a865760405162461bcd60e51b815260040161055a906115a8565b6064811115610a9457600080fd5b600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055a565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610bf58484610a99565b90506000198114610c5d5781811015610c505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055a565b610c5d8484848403610ac4565b50505050565b600554600160a01b900460ff1615610c8557610c80838383610ea9565b505050565b6001600160a01b038216610d27576001600160a01b038316600090815260208190526040902054811115610ccb5760405162461bcd60e51b815260040161055a90611650565b6001600160a01b0383811660008181526020818152604091829020805486900390556002805486900390559051848152928516927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610bdc565b6006546001600160a01b0390811690841603610dbf57610d478282610fad565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f2e0bf506040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610da257600080fd5b505af1158015610db6573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0390811690831603610ddf57610d4783826110e5565b610c80838383610ea9565b6001600160a01b038216610e405760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055a565b8060026000828254610e5291906115df565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610f0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b6001600160a01b03831660009081526020819052604090205481811015610f465760405162461bcd60e51b815260040161055a90611650565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b610fb56105a7565b8111156110045760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d6974000000000000000000604482015260640161055a565b6000606460026008546110179190611586565b611021908461156f565b61102b9190611586565b9050600060646009548361103f919061156f565b6110499190611586565b9050600061105782846115f2565b9050811561109657600654611096906001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000084610ea9565b80156110b3576006546110b3906001600160a01b03163083610ea9565b6006546110de906001600160a01b0316866110cf86600261156f565b6110d990886115f2565b610ea9565b5050505050565b306000908152602081905260408120549061110183600261156f565b90508082111561110f578091505b61111882611130565b600654610c5d9085906001600160a01b031685610ea9565b6005805460ff60a01b1916600160a01b17905580156112d357604080516002808252606082018352600092602083019080368337019050509050308160008151811061117e5761117e611696565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112149190611605565b8160018151811061122757611227611696565b6001600160a01b03909216602092830291909101909101526040516318cbafe560e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d906318cbafe59061129f90859060009086907f00000000000000000000000000000000000000000000000000000000000000009042906004016116ac565b600060405180830381600087803b1580156112b957600080fd5b505af11580156112cd573d6000803e3d6000fd5b50505050505b506005805460ff60a01b19169055565b600060208083528351808285015260005b81811015611310578581018301518582016040015282016112f4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461134657600080fd5b50565b6000806040838503121561135c57600080fd5b823561136781611331565b946020939093013593505050565b60008060006060848603121561138a57600080fd5b833561139581611331565b925060208401356113a581611331565b929592945050506040919091013590565b6000602082840312156113c857600080fd5b81356113d381611331565b9392505050565b6000602082840312156113ec57600080fd5b5035919050565b6000806040838503121561140657600080fd5b823561141181611331565b9150602083013561142181611331565b809150509250929050565b600181811c9082168061144057607f821691505b60208210810361146057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114b757816000190482111561149d5761149d611466565b808516156114aa57918102915b93841c9390800290611481565b509250929050565b6000826114ce575060016104c4565b816114db575060006104c4565b81600181146114f157600281146114fb57611517565b60019150506104c4565b60ff84111561150c5761150c611466565b50506001821b6104c4565b5060208310610133831016604e8410600b841016171561153a575081810a6104c4565b611544838361147c565b806000190482111561155857611558611466565b029392505050565b60006113d360ff8416836114bf565b80820281158282048414176104c4576104c4611466565b6000826115a357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526017908201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b808201808211156104c4576104c4611466565b818103818111156104c4576104c4611466565b60006020828403121561161757600080fd5b81516113d381611331565b60008060006060848603121561163757600080fd5b8351925060208401519150604084015190509250925092565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116fc5784516001600160a01b0316835293830193918301916001016116d7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e9fb599af3ca24ad6c42e709da54a709b3eb02fd289077cf181f6aa55e067c4a64736f6c63430008150033000000000000000000000000c246a812e32f149f4edf969bef686445b7fe3768

Deployed Bytecode

0x6080604052600436106101405760003560e01c806370db69d6116100b65780639e78fb4f1161006f5780639e78fb4f14610380578063a457c2d714610388578063a9059cbb146103a8578063acaad0d8146103c8578063cb8eebc1146103e8578063dd62ed3e146103fe57600080fd5b806370db69d6146102ed57806373f42561146103025780637ce3489b146103175780637fd6f15c146103375780638da5cb5b1461034d57806395d89b411461036b57600080fd5b806323b872dd1161010857806323b872dd146101ed57806327af9e381461020d578063313ce5671461025957806338bf3cfa14610275578063395093511461029757806370a08231146102b757600080fd5b806306fdde0314610145578063095ea7b31461017057806313a4486c146101a057806318160ddd146101c357806322194e6a146101d8575b600080fd5b34801561015157600080fd5b5061015a61041e565b60405161016791906112e3565b60405180910390f35b34801561017c57600080fd5b5061019061018b366004611349565b6104b0565b6040519015158152602001610167565b3480156101ac57600080fd5b506101b56104ca565b604051908152602001610167565b3480156101cf57600080fd5b506002546101b5565b3480156101e457600080fd5b506101b56104e7565b3480156101f957600080fd5b50610190610208366004611375565b61050c565b34801561021957600080fd5b506102417f000000000000000000000000c246a812e32f149f4edf969bef686445b7fe376881565b6040516001600160a01b039091168152602001610167565b34801561026557600080fd5b5060405160098152602001610167565b34801561028157600080fd5b506102956102903660046113b6565b610530565b005b3480156102a357600080fd5b506101906102b2366004611349565b610585565b3480156102c357600080fd5b506101b56102d23660046113b6565b6001600160a01b031660009081526020819052604090205490565b3480156102f957600080fd5b506101b56105a7565b34801561030e57600080fd5b506101b56106a2565b34801561032357600080fd5b506102956103323660046113da565b6106d1565b34801561034357600080fd5b506101b560085481565b34801561035957600080fd5b506005546001600160a01b0316610241565b34801561037757600080fd5b5061015a61070e565b61029561071d565b34801561039457600080fd5b506101906103a3366004611349565b6109d3565b3480156103b457600080fd5b506101906103c3366004611349565b610a4e565b3480156103d457600080fd5b506102956103e33660046113da565b610a5c565b3480156103f457600080fd5b506101b560095481565b34801561040a57600080fd5b506101b56104193660046113f3565b610a99565b60606003805461042d9061142c565b80601f01602080910402602001604051908101604052809291908181526020018280546104599061142c565b80156104a65780601f1061047b576101008083540402835291602001916104a6565b820191906000526020600020905b81548152906001019060200180831161048957829003601f168201915b5050505050905090565b6000336104be818585610ac4565b60019150505b92915050565b6104d66009600a611560565b6104e490633b9aca0061156f565b81565b60006104f56009600a611560565b6104fd6105a7565b6105079190611586565b905090565b60003361051a858285610be9565b610525858585610c63565b506001949350505050565b6005546001600160a01b031633146105635760405162461bcd60e51b815260040161055a906115a8565b60405180910390fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104be8185856105988383610a99565b6105a291906115df565b610ac4565b6006546000906001600160a01b03166105d4576105c66009600a611560565b61050790633b9aca0061156f565b60006127106001600754426105e991906115f2565b6105f56009600a611560565b61060390633b9aca0061156f565b61060d919061156f565b610617919061156f565b6106219190611586565b6127106106306009600a611560565b61063e90633b9aca0061156f565b61064990601961156f565b6106539190611586565b61065d91906115df565b905061066b6009600a611560565b61067990633b9aca0061156f565b81111561069d5761068c6009600a611560565b61069a90633b9aca0061156f565b90505b919050565b60006106ad60025490565b6106b96009600a611560565b6106c790633b9aca0061156f565b61050791906115f2565b6005546001600160a01b031633146106fb5760405162461bcd60e51b815260040161055a906115a8565b600a81111561070957600080fd5b600855565b60606004805461042d9061142c565b6005805460ff60a01b1916600160a01b1790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190611605565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611605565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089a9190611605565b600680546001600160a01b0319166001600160a01b03929092169190911790556108dd306108ca6009600a611560565b6108d890633b9aca0061156f565b610dea565b6108fe30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610ac4565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d71934306109266009600a611560565b61093490633b9aca0061156f565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af1158015610998573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109bd9190611622565b505042600755506005805460ff60a01b19169055565b600033816109e18286610a99565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161055a565b6105258286868403610ac4565b6000336104be818585610c63565b6005546001600160a01b03163314610a865760405162461bcd60e51b815260040161055a906115a8565b6064811115610a9457600080fd5b600955565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b038316610b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161055a565b6001600160a01b038216610b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161055a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610bf58484610a99565b90506000198114610c5d5781811015610c505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055a565b610c5d8484848403610ac4565b50505050565b600554600160a01b900460ff1615610c8557610c80838383610ea9565b505050565b6001600160a01b038216610d27576001600160a01b038316600090815260208190526040902054811115610ccb5760405162461bcd60e51b815260040161055a90611650565b6001600160a01b0383811660008181526020818152604091829020805486900390556002805486900390559051848152928516927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610bdc565b6006546001600160a01b0390811690841603610dbf57610d478282610fad565b7f000000000000000000000000c246a812e32f149f4edf969bef686445b7fe37686001600160a01b031663f2e0bf506040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610da257600080fd5b505af1158015610db6573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0390811690831603610ddf57610d4783826110e5565b610c80838383610ea9565b6001600160a01b038216610e405760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055a565b8060026000828254610e5291906115df565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610f0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161055a565b6001600160a01b03831660009081526020819052604090205481811015610f465760405162461bcd60e51b815260040161055a90611650565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b610fb56105a7565b8111156110045760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d6974000000000000000000604482015260640161055a565b6000606460026008546110179190611586565b611021908461156f565b61102b9190611586565b9050600060646009548361103f919061156f565b6110499190611586565b9050600061105782846115f2565b9050811561109657600654611096906001600160a01b03167f000000000000000000000000c246a812e32f149f4edf969bef686445b7fe376884610ea9565b80156110b3576006546110b3906001600160a01b03163083610ea9565b6006546110de906001600160a01b0316866110cf86600261156f565b6110d990886115f2565b610ea9565b5050505050565b306000908152602081905260408120549061110183600261156f565b90508082111561110f578091505b61111882611130565b600654610c5d9085906001600160a01b031685610ea9565b6005805460ff60a01b1916600160a01b17905580156112d357604080516002808252606082018352600092602083019080368337019050509050308160008151811061117e5761117e611696565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112149190611605565b8160018151811061122757611227611696565b6001600160a01b03909216602092830291909101909101526040516318cbafe560e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d906318cbafe59061129f90859060009086907f000000000000000000000000c246a812e32f149f4edf969bef686445b7fe37689042906004016116ac565b600060405180830381600087803b1580156112b957600080fd5b505af11580156112cd573d6000803e3d6000fd5b50505050505b506005805460ff60a01b19169055565b600060208083528351808285015260005b81811015611310578581018301518582016040015282016112f4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461134657600080fd5b50565b6000806040838503121561135c57600080fd5b823561136781611331565b946020939093013593505050565b60008060006060848603121561138a57600080fd5b833561139581611331565b925060208401356113a581611331565b929592945050506040919091013590565b6000602082840312156113c857600080fd5b81356113d381611331565b9392505050565b6000602082840312156113ec57600080fd5b5035919050565b6000806040838503121561140657600080fd5b823561141181611331565b9150602083013561142181611331565b809150509250929050565b600181811c9082168061144057607f821691505b60208210810361146057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114b757816000190482111561149d5761149d611466565b808516156114aa57918102915b93841c9390800290611481565b509250929050565b6000826114ce575060016104c4565b816114db575060006104c4565b81600181146114f157600281146114fb57611517565b60019150506104c4565b60ff84111561150c5761150c611466565b50506001821b6104c4565b5060208310610133831016604e8410600b841016171561153a575081810a6104c4565b611544838361147c565b806000190482111561155857611558611466565b029392505050565b60006113d360ff8416836114bf565b80820281158282048414176104c4576104c4611466565b6000826115a357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526017908201527f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000604082015260600190565b808201808211156104c4576104c4611466565b818103818111156104c4576104c4611466565b60006020828403121561161757600080fd5b81516113d381611331565b60008060006060848603121561163757600080fd5b8351925060208401519150604084015190509250925092565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116fc5784516001600160a01b0316835293830193918301916001016116d7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e9fb599af3ca24ad6c42e709da54a709b3eb02fd289077cf181f6aa55e067c4a64736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000c246a812e32f149f4edf969bef686445b7fe3768

-----Decoded View---------------
Arg [0] : space_ (address): 0xc246a812E32F149f4eDF969beF686445b7fe3768

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c246a812e32f149f4edf969bef686445b7fe3768


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.