ETH Price: $3,475.00 (-0.19%)
Gas: 2 Gwei

Token

PKPK (PKPK)
 

Overview

Max Total Supply

1,000,000 PKPK

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bearbucksdeployer.eth
Balance
2,694.877094124032208959 PKPK

Value
$0.00
0xea65a7e9378ec8bd8bc7c2eea327e251cb7d086a
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:
PkpkToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-24
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org
/**
https://twitter.com/pkpk_eth
Chat:https://t.me/PKPK_eth
Telegram:https://t.me/PKPK_club
*/
// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * 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_) {
        _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 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 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 contracts/PepeToken.sol



pragma solidity ^0.8.0;


contract PkpkToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;

    address payable public devWallet = payable(0x853220438c08a61e21bA48044854dcdC72e4f844); // set as dev wallet

    constructor(uint256 _totalSupply) ERC20("PKPK", "PKPK") {
        _mint(msg.sender, _totalSupply);
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function claimBalance() external {
     payable(devWallet).transfer(address(this).balance);
    }

    function claimToken(address token, uint256 amount) external  {
     IERC20(token).transfer(devWallet, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimToken","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":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600a80546001600160a01b03191673853220438c08a61e21ba48044854dcdc72e4f8441790553480156200003757600080fd5b5060405162001513380380620015138339810160408190526200005a9162000391565b60405180604001604052806004815260200163504b504b60e01b81525060405180604001604052806004815260200163504b504b60e01b815250620000ae620000a8620000e760201b60201c565b620000eb565b6004620000bc83826200044f565b506005620000cb82826200044f565b505050620000e033826200013b60201b60201c565b5062000543565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a56000838362000232565b8060036000828254620001b991906200051b565b90915550506001600160a01b03821660009081526001602052604081208054839290620001e89084906200051b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6009546001600160a01b0316620002c0576000546001600160a01b03848116911614806200026d57506000546001600160a01b038381169116145b620002bb5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016200018e565b505050565b60065460ff168015620002e057506009546001600160a01b038481169116145b15620002bb576007548162000300846200037660201b620005db1760201c565b6200030c91906200051b565b111580156200033f57506008548162000330846200037660201b620005db1760201c565b6200033c91906200051b565b10155b620002bb5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016200018e565b6001600160a01b031660009081526001602052604090205490565b600060208284031215620003a457600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d657607f821691505b602082108103620003f757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002bb57600081815260208120601f850160051c81016020861015620004265750805b601f850160051c820191505b81811015620004475782815560010162000432565b505050505050565b81516001600160401b038111156200046b576200046b620003ab565b62000483816200047c8454620003c1565b84620003fd565b602080601f831160018114620004bb5760008415620004a25750858301515b600019600386901b1c1916600185901b17855562000447565b600085815260208120601f198616915b82811015620004ec57888601518255948401946001909101908401620004cb565b50858210156200050b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200053d57634e487b7160e01b600052601160045260246000fd5b92915050565b610fc080620005536000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806349bd5a5e116100c35780638ea5220f1161007c5780638ea5220f1461029357806395d89b41146102a6578063a457c2d7146102ae578063a9059cbb146102c1578063dd62ed3e146102d4578063f2fde38b1461030d57600080fd5b806349bd5a5e1461022657806370a0823114610251578063715018a614610264578063860a32ec1461026c57806389f9a1d3146102795780638da5cb5b1461028257600080fd5b806323b872dd1161011557806323b872dd146101c357806330509bca146101d6578063313ce567146101de57806339509351146101ed5780633aa633aa1461020057806342966c681461021357600080fd5b806306fdde0314610152578063095ea7b3146101705780631698755f1461019357806318160ddd146101a85780631ab99e12146101ba575b600080fd5b61015a610320565b6040516101679190610d32565b60405180910390f35b61018361017e366004610d9c565b6103b2565b6040519015158152602001610167565b6101a66101a1366004610d9c565b6103c9565b005b6003545b604051908152602001610167565b6101ac60085481565b6101836101d1366004610dc6565b610445565b6101a66104f4565b60405160128152602001610167565b6101836101fb366004610d9c565b610530565b6101a661020e366004610e10565b61056c565b6101a6610221366004610e54565b6105d1565b600954610239906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6101ac61025f366004610e6d565b6105db565b6101a66105f6565b6006546101839060ff1681565b6101ac60075481565b6000546001600160a01b0316610239565b600a54610239906001600160a01b031681565b61015a61062c565b6101836102bc366004610d9c565b61063b565b6101836102cf366004610d9c565b6106d4565b6101ac6102e2366004610e8f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a661031b366004610e6d565b6106e1565b60606004805461032f90610ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610ec2565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf338484610779565b5060015b92915050565b600a5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af115801561041c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104409190610efc565b505050565b600061045284848461089d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104dc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e98533858403610779565b506001949350505050565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561052d573d6000803e3d6000fd5b50565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf918590610567908690610f2f565b610779565b6000546001600160a01b031633146105965760405162461bcd60e51b81526004016104d390610f42565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61052d3382610a77565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106205760405162461bcd60e51b81526004016104d390610f42565b61062a6000610bd1565b565b60606005805461032f90610ec2565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d3565b6106ca3385858403610779565b5060019392505050565b60006103bf33848461089d565b6000546001600160a01b0316331461070b5760405162461bcd60e51b81526004016104d390610f42565b6001600160a01b0381166107705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d3565b61052d81610bd1565b6001600160a01b0383166107db5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d3565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d3565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d3565b61096e838383610c21565b6001600160a01b038316600090815260016020526040902054818110156109e65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d3565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a1d908490610f2f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a6991815260200190565b60405180910390a350505050565b6001600160a01b038216610ad75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104d3565b610ae382600083610c21565b6001600160a01b03821660009081526001602052604090205481811015610b575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104d3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b86908490610f77565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610c9f576000546001600160a01b0384811691161480610c5a57506000546001600160a01b038381169116145b6104405760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104d3565b60065460ff168015610cbe57506009546001600160a01b038481169116145b156104405760075481610cd0846105db565b610cda9190610f2f565b11158015610cfd575060085481610cf0846105db565b610cfa9190610f2f565b10155b6104405760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104d3565b600060208083528351808285015260005b81811015610d5f57858101830151858201604001528201610d43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d9757600080fd5b919050565b60008060408385031215610daf57600080fd5b610db883610d80565b946020939093013593505050565b600080600060608486031215610ddb57600080fd5b610de484610d80565b9250610df260208501610d80565b9150604084013590509250925092565b801515811461052d57600080fd5b60008060008060808587031215610e2657600080fd5b8435610e3181610e02565b9350610e3f60208601610d80565b93969395505050506040820135916060013590565b600060208284031215610e6657600080fd5b5035919050565b600060208284031215610e7f57600080fd5b610e8882610d80565b9392505050565b60008060408385031215610ea257600080fd5b610eab83610d80565b9150610eb960208401610d80565b90509250929050565b600181811c90821680610ed657607f821691505b602082108103610ef657634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610f0e57600080fd5b8151610e8881610e02565b634e487b7160e01b600052601160045260246000fd5b808201808211156103c3576103c3610f19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156103c3576103c3610f1956fea2646970667358221220875c431745769cf121744921d94e8da3075cecff1094d0e9806ecbd2abb9b9d964736f6c6343000812003300000000000000000000000000000000000000000000d3c21bcecceda1000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806349bd5a5e116100c35780638ea5220f1161007c5780638ea5220f1461029357806395d89b41146102a6578063a457c2d7146102ae578063a9059cbb146102c1578063dd62ed3e146102d4578063f2fde38b1461030d57600080fd5b806349bd5a5e1461022657806370a0823114610251578063715018a614610264578063860a32ec1461026c57806389f9a1d3146102795780638da5cb5b1461028257600080fd5b806323b872dd1161011557806323b872dd146101c357806330509bca146101d6578063313ce567146101de57806339509351146101ed5780633aa633aa1461020057806342966c681461021357600080fd5b806306fdde0314610152578063095ea7b3146101705780631698755f1461019357806318160ddd146101a85780631ab99e12146101ba575b600080fd5b61015a610320565b6040516101679190610d32565b60405180910390f35b61018361017e366004610d9c565b6103b2565b6040519015158152602001610167565b6101a66101a1366004610d9c565b6103c9565b005b6003545b604051908152602001610167565b6101ac60085481565b6101836101d1366004610dc6565b610445565b6101a66104f4565b60405160128152602001610167565b6101836101fb366004610d9c565b610530565b6101a661020e366004610e10565b61056c565b6101a6610221366004610e54565b6105d1565b600954610239906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6101ac61025f366004610e6d565b6105db565b6101a66105f6565b6006546101839060ff1681565b6101ac60075481565b6000546001600160a01b0316610239565b600a54610239906001600160a01b031681565b61015a61062c565b6101836102bc366004610d9c565b61063b565b6101836102cf366004610d9c565b6106d4565b6101ac6102e2366004610e8f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a661031b366004610e6d565b6106e1565b60606004805461032f90610ec2565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610ec2565b80156103a85780601f1061037d576101008083540402835291602001916103a8565b820191906000526020600020905b81548152906001019060200180831161038b57829003601f168201915b5050505050905090565b60006103bf338484610779565b5060015b92915050565b600a5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb906044016020604051808303816000875af115801561041c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104409190610efc565b505050565b600061045284848461089d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104dc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e98533858403610779565b506001949350505050565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561052d573d6000803e3d6000fd5b50565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103bf918590610567908690610f2f565b610779565b6000546001600160a01b031633146105965760405162461bcd60e51b81526004016104d390610f42565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b61052d3382610a77565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031633146106205760405162461bcd60e51b81526004016104d390610f42565b61062a6000610bd1565b565b60606005805461032f90610ec2565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104d3565b6106ca3385858403610779565b5060019392505050565b60006103bf33848461089d565b6000546001600160a01b0316331461070b5760405162461bcd60e51b81526004016104d390610f42565b6001600160a01b0381166107705760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d3565b61052d81610bd1565b6001600160a01b0383166107db5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104d3565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104d3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104d3565b6001600160a01b0382166109635760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104d3565b61096e838383610c21565b6001600160a01b038316600090815260016020526040902054818110156109e65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104d3565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a1d908490610f2f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a6991815260200190565b60405180910390a350505050565b6001600160a01b038216610ad75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104d3565b610ae382600083610c21565b6001600160a01b03821660009081526001602052604090205481811015610b575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104d3565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610b86908490610f77565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546001600160a01b0316610c9f576000546001600160a01b0384811691161480610c5a57506000546001600160a01b038381169116145b6104405760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104d3565b60065460ff168015610cbe57506009546001600160a01b038481169116145b156104405760075481610cd0846105db565b610cda9190610f2f565b11158015610cfd575060085481610cf0846105db565b610cfa9190610f2f565b10155b6104405760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104d3565b600060208083528351808285015260005b81811015610d5f57858101830151858201604001528201610d43565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d9757600080fd5b919050565b60008060408385031215610daf57600080fd5b610db883610d80565b946020939093013593505050565b600080600060608486031215610ddb57600080fd5b610de484610d80565b9250610df260208501610d80565b9150604084013590509250925092565b801515811461052d57600080fd5b60008060008060808587031215610e2657600080fd5b8435610e3181610e02565b9350610e3f60208601610d80565b93969395505050506040820135916060013590565b600060208284031215610e6657600080fd5b5035919050565b600060208284031215610e7f57600080fd5b610e8882610d80565b9392505050565b60008060408385031215610ea257600080fd5b610eab83610d80565b9150610eb960208401610d80565b90509250929050565b600181811c90821680610ed657607f821691505b602082108103610ef657634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610f0e57600080fd5b8151610e8881610e02565b634e487b7160e01b600052601160045260246000fd5b808201808211156103c3576103c3610f19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156103c3576103c3610f1956fea2646970667358221220875c431745769cf121744921d94e8da3075cecff1094d0e9806ecbd2abb9b9d964736f6c63430008120033

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

00000000000000000000000000000000000000000000d3c21bcecceda1000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000


Deployed Bytecode Sourcemap

19441:1543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9410:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11577:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11577:169:0;1004:187:1;20270:118:0;;;;;;:::i;:::-;;:::i;:::-;;10530:108;10618:12;;10530:108;;;1342:25:1;;;1330:2;1315:18;10530:108:0;1196:177:1;19549:31:0;;;;;;12228:492;;;;;;:::i;:::-;;:::i;20163:99::-;;;:::i;10372:93::-;;;10455:2;1853:36:1;;1841:2;1826:18;10372:93:0;1711:184:1;13129:215:0;;;;;;:::i;:::-;;:::i;19854:301::-;;;;;;:::i;:::-;;:::i;20900:81::-;;;;;;:::i;:::-;;:::i;19587:28::-;;;;;-1:-1:-1;;;;;19587:28:0;;;;;;-1:-1:-1;;;;;2829:32:1;;;2811:51;;2799:2;2784:18;19587:28:0;2665:203:1;10701:127:0;;;;;;:::i;:::-;;:::i;2811:103::-;;;:::i;19485:19::-;;;;;;;;;19511:31;;;;;;2160:87;2206:7;2233:6;-1:-1:-1;;;;;2233:6:0;2160:87;;19624:86;;;;;-1:-1:-1;;;;;19624:86:0;;;9629:104;;;:::i;13847:413::-;;;;;;:::i;:::-;;:::i;11041:175::-;;;;;;:::i;:::-;;:::i;11279:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11395:18:0;;;11368:7;11395:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11279:151;3069:201;;;;;;:::i;:::-;;:::i;9410:100::-;9464:13;9497:5;9490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9410:100;:::o;11577:169::-;11660:4;11677:39;958:10;11700:7;11709:6;11677:8;:39::i;:::-;-1:-1:-1;11734:4:0;11577:169;;;;;:::o;20270:118::-;20362:9;;20339:41;;-1:-1:-1;;;20339:41:0;;-1:-1:-1;;;;;20362:9:0;;;20339:41;;;4120:51:1;4187:18;;;4180:34;;;20339:22:0;;;;;;4093:18:1;;20339:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20270:118;;:::o;12228:492::-;12368:4;12385:36;12395:6;12403:9;12414:6;12385:9;:36::i;:::-;-1:-1:-1;;;;;12461:19:0;;12434:24;12461:19;;;:11;:19;;;;;;;;958:10;12461:33;;;;;;;;12513:26;;;;12505:79;;;;-1:-1:-1;;;12505:79:0;;4677:2:1;12505:79:0;;;4659:21:1;4716:2;4696:18;;;4689:30;4755:34;4735:18;;;4728:62;-1:-1:-1;;;4806:18:1;;;4799:38;4854:19;;12505:79:0;;;;;;;;;12620:57;12629:6;958:10;12670:6;12651:16;:25;12620:8;:57::i;:::-;-1:-1:-1;12708:4:0;;12228:492;-1:-1:-1;;;;12228:492:0:o;20163:99::-;20212:9;;20204:50;;-1:-1:-1;;;;;20212:9:0;;;;20232:21;20204:50;;;;;20212:9;20204:50;20212:9;20204:50;20232:21;20212:9;20204:50;;;;;;;;;;;;;;;;;;;;;20163:99::o;13129:215::-;958:10;13217:4;13266:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13266:34:0;;;;;;;;;;13217:4;;13234:80;;13257:7;;13266:47;;13303:10;;13266:47;:::i;:::-;13234:8;:80::i;19854:301::-;2206:7;2233:6;-1:-1:-1;;;;;2233:6:0;958:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;19994:7:::1;:18:::0;;-1:-1:-1;;19994:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20023:13:::1;:30:::0;;-1:-1:-1;;;;;;20023:30:0::1;-1:-1:-1::0;;;;;20023:30:0;;;::::1;::::0;;;::::1;::::0;;;20064:16:::1;:36:::0;20111:16:::1;:36:::0;19854:301::o;20900:81::-;20949:24;20955:10;20967:5;20949;:24::i;10701:127::-;-1:-1:-1;;;;;10802:18:0;10775:7;10802:18;;;:9;:18;;;;;;;10701:127::o;2811:103::-;2206:7;2233:6;-1:-1:-1;;;;;2233:6:0;958:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;9629:104::-;9685:13;9718:7;9711:14;;;;;:::i;13847:413::-;958:10;13940:4;13984:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13984:34:0;;;;;;;;;;14037:35;;;;14029:85;;;;-1:-1:-1;;;14029:85:0;;5709:2:1;14029:85:0;;;5691:21:1;5748:2;5728:18;;;5721:30;5787:34;5767:18;;;5760:62;-1:-1:-1;;;5838:18:1;;;5831:35;5883:19;;14029:85:0;5507:401:1;14029:85:0;14150:67;958:10;14173:7;14201:15;14182:16;:34;14150:8;:67::i;:::-;-1:-1:-1;14248:4:0;;13847:413;-1:-1:-1;;;13847:413:0:o;11041:175::-;11127:4;11144:42;958:10;11168:9;11179:6;11144:9;:42::i;3069:201::-;2206:7;2233:6;-1:-1:-1;;;;;2233:6:0;958:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3158:22:0;::::1;3150:73;;;::::0;-1:-1:-1;;;3150:73:0;;6115:2:1;3150:73:0::1;::::0;::::1;6097:21:1::0;6154:2;6134:18;;;6127:30;6193:34;6173:18;;;6166:62;-1:-1:-1;;;6244:18:1;;;6237:36;6290:19;;3150:73:0::1;5913:402:1::0;3150:73:0::1;3234:28;3253:8;3234:18;:28::i;17531:380::-:0;-1:-1:-1;;;;;17667:19:0;;17659:68;;;;-1:-1:-1;;;17659:68:0;;6522:2:1;17659:68:0;;;6504:21:1;6561:2;6541:18;;;6534:30;6600:34;6580:18;;;6573:62;-1:-1:-1;;;6651:18:1;;;6644:34;6695:19;;17659:68:0;6320:400:1;17659:68:0;-1:-1:-1;;;;;17746:21:0;;17738:68;;;;-1:-1:-1;;;17738:68:0;;6927:2:1;17738:68:0;;;6909:21:1;6966:2;6946:18;;;6939:30;7005:34;6985:18;;;6978:62;-1:-1:-1;;;7056:18:1;;;7049:32;7098:19;;17738:68:0;6725:398:1;17738:68:0;-1:-1:-1;;;;;17819:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17871:32;;1342:25:1;;;17871:32:0;;1315:18:1;17871:32:0;;;;;;;17531:380;;;:::o;14750:733::-;-1:-1:-1;;;;;14890:20:0;;14882:70;;;;-1:-1:-1;;;14882:70:0;;7330:2:1;14882:70:0;;;7312:21:1;7369:2;7349:18;;;7342:30;7408:34;7388:18;;;7381:62;-1:-1:-1;;;7459:18:1;;;7452:35;7504:19;;14882:70:0;7128:401:1;14882:70:0;-1:-1:-1;;;;;14971:23:0;;14963:71;;;;-1:-1:-1;;;14963:71:0;;7736:2:1;14963:71:0;;;7718:21:1;7775:2;7755:18;;;7748:30;7814:34;7794:18;;;7787:62;-1:-1:-1;;;7865:18:1;;;7858:33;7908:19;;14963:71:0;7534:399:1;14963:71:0;15047:47;15068:6;15076:9;15087:6;15047:20;:47::i;:::-;-1:-1:-1;;;;;15131:17:0;;15107:21;15131:17;;;:9;:17;;;;;;15167:23;;;;15159:74;;;;-1:-1:-1;;;15159:74:0;;8140:2:1;15159:74:0;;;8122:21:1;8179:2;8159:18;;;8152:30;8218:34;8198:18;;;8191:62;-1:-1:-1;;;8269:18:1;;;8262:36;8315:19;;15159:74:0;7938:402:1;15159:74:0;-1:-1:-1;;;;;15269:17:0;;;;;;;:9;:17;;;;;;15289:22;;;15269:42;;15333:20;;;;;;;;:30;;15305:6;;15269:17;15333:30;;15305:6;;15333:30;:::i;:::-;;;;;;;;15398:9;-1:-1:-1;;;;;15381:35:0;15390:6;-1:-1:-1;;;;;15381:35:0;;15409:6;15381:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15381:35:0;;;;;;;;14871:612;14750:733;;;:::o;16502:591::-;-1:-1:-1;;;;;16586:21:0;;16578:67;;;;-1:-1:-1;;;16578:67:0;;8547:2:1;16578:67:0;;;8529:21:1;8586:2;8566:18;;;8559:30;8625:34;8605:18;;;8598:62;-1:-1:-1;;;8676:18:1;;;8669:31;8717:19;;16578:67:0;8345:397:1;16578:67:0;16658:49;16679:7;16696:1;16700:6;16658:20;:49::i;:::-;-1:-1:-1;;;;;16745:18:0;;16720:22;16745:18;;;:9;:18;;;;;;16782:24;;;;16774:71;;;;-1:-1:-1;;;16774:71:0;;8949:2:1;16774:71:0;;;8931:21:1;8988:2;8968:18;;;8961:30;9027:34;9007:18;;;9000:62;-1:-1:-1;;;9078:18:1;;;9071:32;9120:19;;16774:71:0;8747:398:1;16774:71:0;-1:-1:-1;;;;;16881:18:0;;;;;;:9;:18;;;;;16902:23;;;16881:44;;16947:12;:22;;16919:6;;16881:18;16947:22;;16919:6;;16947:22;:::i;:::-;;;;-1:-1:-1;;16987:37:0;;1342:25:1;;;17013:1:0;;-1:-1:-1;;;;;16987:37:0;;;;;1330:2:1;1315:18;16987:37:0;;;;;;;20339:41;20270:118;;:::o;3430:191::-;3504:16;3523:6;;-1:-1:-1;;;;;3540:17:0;;;-1:-1:-1;;;;;;3540:17:0;;;;;;3573:40;;3523:6;;;;;;;3573:40;;3504:16;3573:40;3493:128;3430:191;:::o;20396:496::-;20545:13;;-1:-1:-1;;;;;20545:13:0;20541:148;;2206:7;2233:6;-1:-1:-1;;;;;20597:15:0;;;2233:6;;20597:15;;:32;;-1:-1:-1;2206:7:0;2233:6;-1:-1:-1;;;;;20616:13:0;;;2233:6;;20616:13;20597:32;20589:67;;;;-1:-1:-1;;;20589:67:0;;9485:2:1;20589:67:0;;;9467:21:1;9524:2;9504:18;;;9497:30;-1:-1:-1;;;9543:18:1;;;9536:52;9605:18;;20589:67:0;9283:346:1;20541:148:0;20705:7;;;;:32;;;;-1:-1:-1;20724:13:0;;-1:-1:-1;;;;;20716:21:0;;;20724:13;;20716:21;20705:32;20701:184;;;20794:16;;20784:6;20762:19;20778:2;20762:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20846:16;;20836:6;20814:19;20830:2;20814:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20762:100;20754:119;;;;-1:-1:-1;;;20754:119:0;;9836:2:1;20754:119:0;;;9818:21:1;9875:1;9855:18;;;9848:29;-1:-1:-1;;;9893:18:1;;;9886:36;9939:18;;20754:119:0;9634:329:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:118::-;1986:5;1979:13;1972:21;1965:5;1962:32;1952:60;;2008:1;2005;1998:12;2023:452;2106:6;2114;2122;2130;2183:3;2171:9;2162:7;2158:23;2154:33;2151:53;;;2200:1;2197;2190:12;2151:53;2239:9;2226:23;2258:28;2280:5;2258:28;:::i;:::-;2305:5;-1:-1:-1;2329:38:1;2363:2;2348:18;;2329:38;:::i;:::-;2023:452;;2319:48;;-1:-1:-1;;;;2414:2:1;2399:18;;2386:32;;2465:2;2450:18;2437:32;;2023:452::o;2480:180::-;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:52;;;2608:1;2605;2598:12;2560:52;-1:-1:-1;2631:23:1;;2480:180;-1:-1:-1;2480:180:1:o;2873:186::-;2932:6;2985:2;2973:9;2964:7;2960:23;2956:32;2953:52;;;3001:1;2998;2991:12;2953:52;3024:29;3043:9;3024:29;:::i;:::-;3014:39;2873:186;-1:-1:-1;;;2873:186:1:o;3288:260::-;3356:6;3364;3417:2;3405:9;3396:7;3392:23;3388:32;3385:52;;;3433:1;3430;3423:12;3385:52;3456:29;3475:9;3456:29;:::i;:::-;3446:39;;3504:38;3538:2;3527:9;3523:18;3504:38;:::i;:::-;3494:48;;3288:260;;;;;:::o;3553:380::-;3632:1;3628:12;;;;3675;;;3696:61;;3750:4;3742:6;3738:17;3728:27;;3696:61;3803:2;3795:6;3792:14;3772:18;3769:38;3766:161;;3849:10;3844:3;3840:20;3837:1;3830:31;3884:4;3881:1;3874:15;3912:4;3909:1;3902:15;3766:161;;3553:380;;;:::o;4225:245::-;4292:6;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;4393:9;4387:16;4412:28;4434:5;4412:28;:::i;4884:127::-;4945:10;4940:3;4936:20;4933:1;4926:31;4976:4;4973:1;4966:15;5000:4;4997:1;4990:15;5016:125;5081:9;;;5102:10;;;5099:36;;;5115:18;;:::i;5146:356::-;5348:2;5330:21;;;5367:18;;;5360:30;5426:34;5421:2;5406:18;;5399:62;5493:2;5478:18;;5146:356::o;9150:128::-;9217:9;;;9238:11;;;9235:37;;;9252:18;;:::i

Swarm Source

ipfs://875c431745769cf121744921d94e8da3075cecff1094d0e9806ecbd2abb9b9d9
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.