ETH Price: $3,441.71 (-0.02%)
Gas: 1 Gwei

Token

RobinHood (HOOD)
 

Overview

Max Total Supply

420,690,000,000,000 HOOD

Holders

187

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: HOOD 15
Balance
0.000000010609209466 HOOD

Value
$0.00
0xb8594c3ea64c4aa90a29b327858874f44a5d4be7
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:
RobinHood

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : RobinHood.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";

/**
 * Introducing RobinHood and the $HOOD - the ultimate crypto adventure where generosity meets decentralization! 🏹💰
 * As transactions occur, our mischievous smart contract automatically snatches 10% from every sell and redirects it to the last lucky soul who bought before (min 0.1 ETH buy)
 * Consider it a modern-day twist on Robin Hood's "steal from the rich and give to the poor" mantra. 🎩💰
 * Learn more: https://robinhood.army
 * And join the world of decentralized generosity: https://t.me/robinhoodMEME
 */
contract RobinHood is Ownable, ERC20 {
    uint256 public constant SUPPLY = 420690000000000 ether;
    address public lastEligibleBuyer;
    uint256 public maxByWallet; 
    uint256 public robinHoodShare = 100;
    address public uniswapV2Pair;

    constructor() ERC20("RobinHood", "HOOD") {
        _mint(msg.sender, SUPPLY);
        maxByWallet = SUPPLY * 5 / 1000;
    }

    function _transfer(address from, address to, uint256 amount) internal override(ERC20)  {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
        }

        if(from == uniswapV2Pair) {
            require((super.balanceOf(to) + amount) <= maxByWallet, "maxByWallet reach");
            lastEligibleBuyer = to;
            robinHoodShare = 100;
        }

        if (to == uniswapV2Pair) {
            uint256 lastBuyerGain = amount * robinHoodShare / 1000;
            robinHoodShare = robinHoodShare + 10;
            amount = amount - lastBuyerGain;
            super._transfer(from, lastEligibleBuyer, lastBuyerGain);
        }

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

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function step1(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function step2() external onlyOwner {
        maxByWallet = SUPPLY * 20 / 1000;
        _transferOwnership(address(0));
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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 view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        _afterTokenTransfer(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");

        _beforeTokenTransfer(address(0), account, amount);

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

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

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

        _beforeTokenTransfer(account, address(0), amount);

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 4 of 6 : 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 6 : 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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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);
}

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

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":[],"name":"SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"lastEligibleBuyer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxByWallet","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"robinHoodShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"step1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"step2","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405260646008553480156200001657600080fd5b506040518060400160405280600981526020017f526f62696e486f6f6400000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f4f4400000000000000000000000000000000000000000000000000000000815250620000a3620000976200012160201b60201c565b6200012960201b60201c565b8160049081620000b49190620005df565b508060059081620000c69190620005df565b505050620000e9336d14bddab3e51a57cff87a50000000620001ed60201b60201c565b6103e860056d14bddab3e51a57cff87a50000000620001099190620006f5565b6200011591906200076f565b60078190555062000893565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200025f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002569062000808565b60405180910390fd5b62000273600083836200035b60201b60201c565b80600360008282546200028791906200082a565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033b919062000876565b60405180910390a362000357600083836200036060201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e757607f821691505b602082108103620003fd57620003fc6200039f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000428565b62000473868362000428565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004c0620004ba620004b4846200048b565b62000495565b6200048b565b9050919050565b6000819050919050565b620004dc836200049f565b620004f4620004eb82620004c7565b84845462000435565b825550505050565b600090565b6200050b620004fc565b62000518818484620004d1565b505050565b5b8181101562000540576200053460008262000501565b6001810190506200051e565b5050565b601f8211156200058f57620005598162000403565b620005648462000418565b8101602085101562000574578190505b6200058c620005838562000418565b8301826200051d565b50505b505050565b600082821c905092915050565b6000620005b46000198460080262000594565b1980831691505092915050565b6000620005cf8383620005a1565b9150826002028217905092915050565b620005ea8262000365565b67ffffffffffffffff81111562000606576200060562000370565b5b620006128254620003ce565b6200061f82828562000544565b600060209050601f83116001811462000657576000841562000642578287015190505b6200064e8582620005c1565b865550620006be565b601f198416620006678662000403565b60005b8281101562000691578489015182556001820191506020850194506020810190506200066a565b86831015620006b15784890151620006ad601f891682620005a1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000702826200048b565b91506200070f836200048b565b92508282026200071f816200048b565b91508282048414831517620007395762000738620006c6565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200077c826200048b565b915062000789836200048b565b9250826200079c576200079b62000740565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007f0601f83620007a7565b9150620007fd82620007b8565b602082019050919050565b600060208201905081810360008301526200082381620007e1565b9050919050565b600062000837826200048b565b915062000844836200048b565b92508282019050808211156200085f576200085e620006c6565b5b92915050565b62000870816200048b565b82525050565b60006020820190506200088d600083018462000865565b92915050565b611fbb80620008a36000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a16680221161007c578063a166802214610343578063a457c2d714610361578063a9059cbb14610391578063c50497ae146103c1578063dd62ed3e146103df578063f2fde38b1461040f57610142565b806370a08231146102c3578063715018a6146102f35780638da5cb5b146102fd5780638f4ed3331461031b57806395d89b411461032557610142565b8063313ce5671161010a578063313ce5671461020157806334ecc70a1461021f578063395093511461023d57806342966c681461026d57806349bd5a5e146102895780635f636573146102a757610142565b806306fdde03146101475780630846da0d14610165578063095ea7b31461018357806318160ddd146101b357806323b872dd146101d1575b600080fd5b61014f61042b565b60405161015c9190611471565b60405180910390f35b61016d6104bd565b60405161017a91906114ac565b60405180910390f35b61019d60048036038101906101989190611556565b6104c3565b6040516101aa91906115b1565b60405180910390f35b6101bb6104e6565b6040516101c891906114ac565b60405180910390f35b6101eb60048036038101906101e691906115cc565b6104f0565b6040516101f891906115b1565b60405180910390f35b61020961051f565b604051610216919061163b565b60405180910390f35b610227610528565b60405161023491906114ac565b60405180910390f35b61025760048036038101906102529190611556565b61052e565b60405161026491906115b1565b60405180910390f35b61028760048036038101906102829190611656565b610565565b005b610291610572565b60405161029e9190611692565b60405180910390f35b6102c160048036038101906102bc91906116ad565b610598565b005b6102dd60048036038101906102d891906116ad565b6105e4565b6040516102ea91906114ac565b60405180910390f35b6102fb61062d565b005b610305610641565b6040516103129190611692565b60405180910390f35b61032361066a565b005b61032d6106ac565b60405161033a9190611471565b60405180910390f35b61034b61073e565b6040516103589190611692565b60405180910390f35b61037b60048036038101906103769190611556565b610764565b60405161038891906115b1565b60405180910390f35b6103ab60048036038101906103a69190611556565b6107db565b6040516103b891906115b1565b60405180910390f35b6103c96107fe565b6040516103d691906114ac565b60405180910390f35b6103f960048036038101906103f491906116da565b610810565b60405161040691906114ac565b60405180910390f35b610429600480360381019061042491906116ad565b610897565b005b60606004805461043a90611749565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611749565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b60085481565b6000806104ce61091a565b90506104db818585610922565b600191505092915050565b6000600354905090565b6000806104fb61091a565b9050610508858285610aeb565b610513858585610b77565b60019150509392505050565b60006012905090565b60075481565b60008061053961091a565b905061055a81858561054b8589610810565b61055591906117a9565b610922565b600191505092915050565b61056f3382610e4d565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105a061101c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063561101c565b61063f600061109a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61067261101c565b6103e860146d14bddab3e51a57cff87a5000000061069091906117dd565b61069a919061184e565b6007819055506106aa600061109a565b565b6060600580546106bb90611749565b80601f01602080910402602001604051908101604052809291908181526020018280546106e790611749565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061076f61091a565b9050600061077d8286610810565b9050838110156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906118f1565b60405180910390fd5b6107cf8286868403610922565b60019250505092915050565b6000806107e661091a565b90506107f3818585610b77565b600191505092915050565b6d14bddab3e51a57cff87a5000000081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61089f61101c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590611983565b60405180910390fd5b6109178161109a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790611aa7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ade91906114ac565b60405180910390a3505050565b6000610af78484610810565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b715781811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b13565b60405180910390fd5b610b708484848403610922565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c8057610bd5610641565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c405750610c11610641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611b7f565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d775760075481610ce2846105e4565b610cec91906117a9565b1115610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611beb565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646008819055505b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d5760006103e860085483610ddf91906117dd565b610de9919061184e565b9050600a600854610dfa91906117a9565b6008819055508082610e0c9190611c0b565b9150610e3b84600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361115e565b505b610e4883838361115e565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611cb1565b60405180910390fd5b610ec8826000836113d7565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690611d43565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100391906114ac565b60405180910390a3611017836000846113dc565b505050565b61102461091a565b73ffffffffffffffffffffffffffffffffffffffff16611042610641565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611daf565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490611e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390611ed3565b60405180910390fd5b6112478383836113d7565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590611f65565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113be91906114ac565b60405180910390a36113d18484846113dc565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561141b578082015181840152602081019050611400565b60008484015250505050565b6000601f19601f8301169050919050565b6000611443826113e1565b61144d81856113ec565b935061145d8185602086016113fd565b61146681611427565b840191505092915050565b6000602082019050818103600083015261148b8184611438565b905092915050565b6000819050919050565b6114a681611493565b82525050565b60006020820190506114c1600083018461149d565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114f7826114cc565b9050919050565b611507816114ec565b811461151257600080fd5b50565b600081359050611524816114fe565b92915050565b61153381611493565b811461153e57600080fd5b50565b6000813590506115508161152a565b92915050565b6000806040838503121561156d5761156c6114c7565b5b600061157b85828601611515565b925050602061158c85828601611541565b9150509250929050565b60008115159050919050565b6115ab81611596565b82525050565b60006020820190506115c660008301846115a2565b92915050565b6000806000606084860312156115e5576115e46114c7565b5b60006115f386828701611515565b935050602061160486828701611515565b925050604061161586828701611541565b9150509250925092565b600060ff82169050919050565b6116358161161f565b82525050565b6000602082019050611650600083018461162c565b92915050565b60006020828403121561166c5761166b6114c7565b5b600061167a84828501611541565b91505092915050565b61168c816114ec565b82525050565b60006020820190506116a76000830184611683565b92915050565b6000602082840312156116c3576116c26114c7565b5b60006116d184828501611515565b91505092915050565b600080604083850312156116f1576116f06114c7565b5b60006116ff85828601611515565b925050602061171085828601611515565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176157607f821691505b6020821081036117745761177361171a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117b482611493565b91506117bf83611493565b92508282019050808211156117d7576117d661177a565b5b92915050565b60006117e882611493565b91506117f383611493565b925082820261180181611493565b915082820484148315176118185761181761177a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061185982611493565b915061186483611493565b9250826118745761187361181f565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118db6025836113ec565b91506118e68261187f565b604082019050919050565b6000602082019050818103600083015261190a816118ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061196d6026836113ec565b915061197882611911565b604082019050919050565b6000602082019050818103600083015261199c81611960565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119ff6024836113ec565b9150611a0a826119a3565b604082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a916022836113ec565b9150611a9c82611a35565b604082019050919050565b60006020820190508181036000830152611ac081611a84565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611afd601d836113ec565b9150611b0882611ac7565b602082019050919050565b60006020820190508181036000830152611b2c81611af0565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611b696016836113ec565b9150611b7482611b33565b602082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f6d6178427957616c6c6574207265616368000000000000000000000000000000600082015250565b6000611bd56011836113ec565b9150611be082611b9f565b602082019050919050565b60006020820190508181036000830152611c0481611bc8565b9050919050565b6000611c1682611493565b9150611c2183611493565b9250828203905081811115611c3957611c3861177a565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9b6021836113ec565b9150611ca682611c3f565b604082019050919050565b60006020820190508181036000830152611cca81611c8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d2d6022836113ec565b9150611d3882611cd1565b604082019050919050565b60006020820190508181036000830152611d5c81611d20565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d996020836113ec565b9150611da482611d63565b602082019050919050565b60006020820190508181036000830152611dc881611d8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e2b6025836113ec565b9150611e3682611dcf565b604082019050919050565b60006020820190508181036000830152611e5a81611e1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebd6023836113ec565b9150611ec882611e61565b604082019050919050565b60006020820190508181036000830152611eec81611eb0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f4f6026836113ec565b9150611f5a82611ef3565b604082019050919050565b60006020820190508181036000830152611f7e81611f42565b905091905056fea2646970667358221220625fee780e311a8313204a1f18f96f284412b579c51d27261400a6278c03b77064736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a16680221161007c578063a166802214610343578063a457c2d714610361578063a9059cbb14610391578063c50497ae146103c1578063dd62ed3e146103df578063f2fde38b1461040f57610142565b806370a08231146102c3578063715018a6146102f35780638da5cb5b146102fd5780638f4ed3331461031b57806395d89b411461032557610142565b8063313ce5671161010a578063313ce5671461020157806334ecc70a1461021f578063395093511461023d57806342966c681461026d57806349bd5a5e146102895780635f636573146102a757610142565b806306fdde03146101475780630846da0d14610165578063095ea7b31461018357806318160ddd146101b357806323b872dd146101d1575b600080fd5b61014f61042b565b60405161015c9190611471565b60405180910390f35b61016d6104bd565b60405161017a91906114ac565b60405180910390f35b61019d60048036038101906101989190611556565b6104c3565b6040516101aa91906115b1565b60405180910390f35b6101bb6104e6565b6040516101c891906114ac565b60405180910390f35b6101eb60048036038101906101e691906115cc565b6104f0565b6040516101f891906115b1565b60405180910390f35b61020961051f565b604051610216919061163b565b60405180910390f35b610227610528565b60405161023491906114ac565b60405180910390f35b61025760048036038101906102529190611556565b61052e565b60405161026491906115b1565b60405180910390f35b61028760048036038101906102829190611656565b610565565b005b610291610572565b60405161029e9190611692565b60405180910390f35b6102c160048036038101906102bc91906116ad565b610598565b005b6102dd60048036038101906102d891906116ad565b6105e4565b6040516102ea91906114ac565b60405180910390f35b6102fb61062d565b005b610305610641565b6040516103129190611692565b60405180910390f35b61032361066a565b005b61032d6106ac565b60405161033a9190611471565b60405180910390f35b61034b61073e565b6040516103589190611692565b60405180910390f35b61037b60048036038101906103769190611556565b610764565b60405161038891906115b1565b60405180910390f35b6103ab60048036038101906103a69190611556565b6107db565b6040516103b891906115b1565b60405180910390f35b6103c96107fe565b6040516103d691906114ac565b60405180910390f35b6103f960048036038101906103f491906116da565b610810565b60405161040691906114ac565b60405180910390f35b610429600480360381019061042491906116ad565b610897565b005b60606004805461043a90611749565b80601f016020809104026020016040519081016040528092919081815260200182805461046690611749565b80156104b35780601f10610488576101008083540402835291602001916104b3565b820191906000526020600020905b81548152906001019060200180831161049657829003601f168201915b5050505050905090565b60085481565b6000806104ce61091a565b90506104db818585610922565b600191505092915050565b6000600354905090565b6000806104fb61091a565b9050610508858285610aeb565b610513858585610b77565b60019150509392505050565b60006012905090565b60075481565b60008061053961091a565b905061055a81858561054b8589610810565b61055591906117a9565b610922565b600191505092915050565b61056f3382610e4d565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105a061101c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063561101c565b61063f600061109a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61067261101c565b6103e860146d14bddab3e51a57cff87a5000000061069091906117dd565b61069a919061184e565b6007819055506106aa600061109a565b565b6060600580546106bb90611749565b80601f01602080910402602001604051908101604052809291908181526020018280546106e790611749565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061076f61091a565b9050600061077d8286610810565b9050838110156107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906118f1565b60405180910390fd5b6107cf8286868403610922565b60019250505092915050565b6000806107e661091a565b90506107f3818585610b77565b600191505092915050565b6d14bddab3e51a57cff87a5000000081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61089f61101c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590611983565b60405180910390fd5b6109178161109a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098890611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f790611aa7565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ade91906114ac565b60405180910390a3505050565b6000610af78484610810565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b715781811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b13565b60405180910390fd5b610b708484848403610922565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c8057610bd5610641565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c405750610c11610641565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690611b7f565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d775760075481610ce2846105e4565b610cec91906117a9565b1115610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611beb565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646008819055505b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e3d5760006103e860085483610ddf91906117dd565b610de9919061184e565b9050600a600854610dfa91906117a9565b6008819055508082610e0c9190611c0b565b9150610e3b84600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361115e565b505b610e4883838361115e565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611cb1565b60405180910390fd5b610ec8826000836113d7565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690611d43565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100391906114ac565b60405180910390a3611017836000846113dc565b505050565b61102461091a565b73ffffffffffffffffffffffffffffffffffffffff16611042610641565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611daf565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490611e41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390611ed3565b60405180910390fd5b6112478383836113d7565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590611f65565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113be91906114ac565b60405180910390a36113d18484846113dc565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561141b578082015181840152602081019050611400565b60008484015250505050565b6000601f19601f8301169050919050565b6000611443826113e1565b61144d81856113ec565b935061145d8185602086016113fd565b61146681611427565b840191505092915050565b6000602082019050818103600083015261148b8184611438565b905092915050565b6000819050919050565b6114a681611493565b82525050565b60006020820190506114c1600083018461149d565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114f7826114cc565b9050919050565b611507816114ec565b811461151257600080fd5b50565b600081359050611524816114fe565b92915050565b61153381611493565b811461153e57600080fd5b50565b6000813590506115508161152a565b92915050565b6000806040838503121561156d5761156c6114c7565b5b600061157b85828601611515565b925050602061158c85828601611541565b9150509250929050565b60008115159050919050565b6115ab81611596565b82525050565b60006020820190506115c660008301846115a2565b92915050565b6000806000606084860312156115e5576115e46114c7565b5b60006115f386828701611515565b935050602061160486828701611515565b925050604061161586828701611541565b9150509250925092565b600060ff82169050919050565b6116358161161f565b82525050565b6000602082019050611650600083018461162c565b92915050565b60006020828403121561166c5761166b6114c7565b5b600061167a84828501611541565b91505092915050565b61168c816114ec565b82525050565b60006020820190506116a76000830184611683565b92915050565b6000602082840312156116c3576116c26114c7565b5b60006116d184828501611515565b91505092915050565b600080604083850312156116f1576116f06114c7565b5b60006116ff85828601611515565b925050602061171085828601611515565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061176157607f821691505b6020821081036117745761177361171a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117b482611493565b91506117bf83611493565b92508282019050808211156117d7576117d661177a565b5b92915050565b60006117e882611493565b91506117f383611493565b925082820261180181611493565b915082820484148315176118185761181761177a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061185982611493565b915061186483611493565b9250826118745761187361181f565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118db6025836113ec565b91506118e68261187f565b604082019050919050565b6000602082019050818103600083015261190a816118ce565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061196d6026836113ec565b915061197882611911565b604082019050919050565b6000602082019050818103600083015261199c81611960565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119ff6024836113ec565b9150611a0a826119a3565b604082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a916022836113ec565b9150611a9c82611a35565b604082019050919050565b60006020820190508181036000830152611ac081611a84565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611afd601d836113ec565b9150611b0882611ac7565b602082019050919050565b60006020820190508181036000830152611b2c81611af0565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b6000611b696016836113ec565b9150611b7482611b33565b602082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f6d6178427957616c6c6574207265616368000000000000000000000000000000600082015250565b6000611bd56011836113ec565b9150611be082611b9f565b602082019050919050565b60006020820190508181036000830152611c0481611bc8565b9050919050565b6000611c1682611493565b9150611c2183611493565b9250828203905081811115611c3957611c3861177a565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9b6021836113ec565b9150611ca682611c3f565b604082019050919050565b60006020820190508181036000830152611cca81611c8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d2d6022836113ec565b9150611d3882611cd1565b604082019050919050565b60006020820190508181036000830152611d5c81611d20565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d996020836113ec565b9150611da482611d63565b602082019050919050565b60006020820190508181036000830152611dc881611d8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e2b6025836113ec565b9150611e3682611dcf565b604082019050919050565b60006020820190508181036000830152611e5a81611e1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebd6023836113ec565b9150611ec882611e61565b604082019050919050565b60006020820190508181036000830152611eec81611eb0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f4f6026836113ec565b9150611f5a82611ef3565b604082019050919050565b60006020820190508181036000830152611f7e81611f42565b905091905056fea2646970667358221220625fee780e311a8313204a1f18f96f284412b579c51d27261400a6278c03b77064736f6c63430008120033

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.