ETH Price: $3,381.56 (-1.84%)
Gas: 4 Gwei

Token

Sudo Snacks (SNACK)
 

Overview

Max Total Supply

10,789,283,485.276729559748421767 SNACK

Holders

190

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
sulaf.eth
Balance
106,733.644604142002355409 SNACK

Value
$0.00
0x5ddf420df839a65f33bd140eb19b4a3ac95acd17
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:
SnackToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: SnackToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./ERC20.sol";

contract SnackToken is ERC20, Ownable {
    constructor() ERC20("Sudo Snacks", "SNACK", 18) {}

    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 2 of 4: ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

File 3 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040523480156200001157600080fd5b50604080518082018252600b81526a5375646f20536e61636b7360a81b602080830191825283518085019094526005845264534e41434b60d81b908401528151919291601291620000669160009190620001bc565b5081516200007c906001906020850190620001bc565b507fff0000000000000000000000000000000000000000000000000000000000000060f882901b166080524660a052620000b5620000ce565b60c05250620000c891503390506200016a565b62000342565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405162000102919062000262565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ca9062000305565b90600052602060002090601f016020900481019282620001ee576000855562000239565b82601f106200020957805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002395782518255916020019190600101906200021c565b50620002479291506200024b565b5090565b5b808211156200024757600081556001016200024c565b600080835482600182811c9150808316806200027f57607f831692505b6020808410821415620002a057634e487b7160e01b87526022600452602487fd5b818015620002b75760018114620002c957620002f7565b60ff19861689528489019650620002f7565b60008a815260209020885b86811015620002ef5781548b820152908501908301620002d4565b505084890196505b509498975050505050505050565b600181811c908216806200031a57607f821691505b602082108114156200033c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c60a05160c051610ce66200037560003960006104ba01526000610485015260006101750152610ce66000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610231578063d505accf14610244578063dd62ed3e14610257578063f2fde38b1461028257600080fd5b8063715018a6146101e65780637ecebe00146101ee5780638da5cb5b1461020e57806395d89b411461022957600080fd5b8063313ce567116100d3578063313ce567146101705780633644e515146101a957806340c10f19146101b157806370a08231146101c657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d610295565b60405161011a9190610bdd565b60405180910390f35b610136610131366004610b19565b610323565b604051901515815260200161011a565b61014f60025481565b60405190815260200161011a565b61013661016b366004610a6d565b61038f565b6101977f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161011a565b61014f610481565b6101c46101bf366004610b19565b6104dc565b005b61014f6101d4366004610a1a565b60036020526000908152604090205481565b6101c46104f2565b61014f6101fc366004610a1a565b60056020526000908152604090205481565b6006546040516001600160a01b03909116815260200161011a565b61010d610506565b61013661023f366004610b19565b610513565b6101c4610252366004610aa8565b61058b565b61014f610265366004610a3b565b600460209081526000928352604080842090915290825290205481565b6101c4610290366004610a1a565b6107d4565b600080546102a290610c5f565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c5f565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037e9086815260200190565b60405180910390a350600192915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103eb576103c68382610c48565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610413908490610c48565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061046e9087815260200190565b60405180910390a3506001949350505050565b60007f000000000000000000000000000000000000000000000000000000000000000046146104b7576104b261084d565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6104e46108e7565b6104ee8282610941565b5050565b6104fa6108e7565b61050460006109ac565b565b600180546102a290610c5f565b33600090815260036020526040812080548391908390610534908490610c48565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061037e9086815260200190565b428410156105e05760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b600060016105ec610481565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156106f8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061072e5750876001600160a01b0316816001600160a01b0316145b61076b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016105d7565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6107dc6108e7565b6001600160a01b0381166108415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b61084a816109ac565b50565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161087f9190610b42565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6006546001600160a01b031633146105045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d7565b80600260008282546109539190610c30565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610a1557600080fd5b919050565b600060208284031215610a2b578081fd5b610a34826109fe565b9392505050565b60008060408385031215610a4d578081fd5b610a56836109fe565b9150610a64602084016109fe565b90509250929050565b600080600060608486031215610a81578081fd5b610a8a846109fe565b9250610a98602085016109fe565b9150604084013590509250925092565b600080600080600080600060e0888a031215610ac2578283fd5b610acb886109fe565b9650610ad9602089016109fe565b95506040880135945060608801359350608088013560ff81168114610afc578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610b2b578182fd5b610b34836109fe565b946020939093013593505050565b600080835482600182811c915080831680610b5e57607f831692505b6020808410821415610b7e57634e487b7160e01b87526022600452602487fd5b818015610b925760018114610ba357610bcf565b60ff19861689528489019650610bcf565b60008a815260209020885b86811015610bc75781548b820152908501908301610bae565b505084890196505b509498975050505050505050565b6000602080835283518082850152825b81811015610c0957858101830151858201604001528201610bed565b81811115610c1a5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c4357610c43610c9a565b500190565b600082821015610c5a57610c5a610c9a565b500390565b600181811c90821680610c7357607f821691505b60208210811415610c9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b5542a2e2cc0edb9840b3e25dfefe284d7c9b21bd051ff9e157f32d6a6c8b7a564736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610231578063d505accf14610244578063dd62ed3e14610257578063f2fde38b1461028257600080fd5b8063715018a6146101e65780637ecebe00146101ee5780638da5cb5b1461020e57806395d89b411461022957600080fd5b8063313ce567116100d3578063313ce567146101705780633644e515146101a957806340c10f19146101b157806370a08231146101c657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d610295565b60405161011a9190610bdd565b60405180910390f35b610136610131366004610b19565b610323565b604051901515815260200161011a565b61014f60025481565b60405190815260200161011a565b61013661016b366004610a6d565b61038f565b6101977f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161011a565b61014f610481565b6101c46101bf366004610b19565b6104dc565b005b61014f6101d4366004610a1a565b60036020526000908152604090205481565b6101c46104f2565b61014f6101fc366004610a1a565b60056020526000908152604090205481565b6006546040516001600160a01b03909116815260200161011a565b61010d610506565b61013661023f366004610b19565b610513565b6101c4610252366004610aa8565b61058b565b61014f610265366004610a3b565b600460209081526000928352604080842090915290825290205481565b6101c4610290366004610a1a565b6107d4565b600080546102a290610c5f565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c5f565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037e9086815260200190565b60405180910390a350600192915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103eb576103c68382610c48565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b03851660009081526003602052604081208054859290610413908490610c48565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061046e9087815260200190565b60405180910390a3506001949350505050565b60007f000000000000000000000000000000000000000000000000000000000000000146146104b7576104b261084d565b905090565b507fafad2d5baa8f68994bac277f528af9f7685fd75eb85cecb6927d3d1cc98bb07490565b6104e46108e7565b6104ee8282610941565b5050565b6104fa6108e7565b61050460006109ac565b565b600180546102a290610c5f565b33600090815260036020526040812080548391908390610534908490610c48565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061037e9086815260200190565b428410156105e05760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b600060016105ec610481565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156106f8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061072e5750876001600160a01b0316816001600160a01b0316145b61076b5760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016105d7565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6107dc6108e7565b6001600160a01b0381166108415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d7565b61084a816109ac565b50565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161087f9190610b42565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6006546001600160a01b031633146105045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d7565b80600260008282546109539190610c30565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610a1557600080fd5b919050565b600060208284031215610a2b578081fd5b610a34826109fe565b9392505050565b60008060408385031215610a4d578081fd5b610a56836109fe565b9150610a64602084016109fe565b90509250929050565b600080600060608486031215610a81578081fd5b610a8a846109fe565b9250610a98602085016109fe565b9150604084013590509250925092565b600080600080600080600060e0888a031215610ac2578283fd5b610acb886109fe565b9650610ad9602089016109fe565b95506040880135945060608801359350608088013560ff81168114610afc578384fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610b2b578182fd5b610b34836109fe565b946020939093013593505050565b600080835482600182811c915080831680610b5e57607f831692505b6020808410821415610b7e57634e487b7160e01b87526022600452602487fd5b818015610b925760018114610ba357610bcf565b60ff19861689528489019650610bcf565b60008a815260209020885b86811015610bc75781548b820152908501908301610bae565b505084890196505b509498975050505050505050565b6000602080835283518082850152825b81811015610c0957858101830151858201604001528201610bed565b81811115610c1a5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c4357610c43610c9a565b500190565b600082821015610c5a57610c5a610c9a565b500390565b600181811c90821680610c7357607f821691505b60208210811415610c9457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b5542a2e2cc0edb9840b3e25dfefe284d7c9b21bd051ff9e157f32d6a6c8b7a564736f6c63430008040033

Deployed Bytecode Sourcemap

105:199:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:18:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2461:211;;;;;;:::i;:::-;;:::i;:::-;;;3881:14:4;;3874:22;3856:41;;3844:2;3829:18;2461:211:1;3811:92:4;1304:26:1;;;;;;;;;4054:25:4;;;4042:2;4027:18;1304:26:1;4009:76:4;3057:592:1;;;;;;:::i;:::-;;:::i;1083:31::-;;;;;;;;8008:4:4;7996:17;;;7978:36;;7966:2;7951:18;1083:31:1;7933:87:4;5327:177:1;;;:::i;205:97:3:-;;;;;;:::i;:::-;;:::i;:::-;;1337:44:1;;;;;;:::i;:::-;;;;;;;;;;;;;;1824:101:2;;;:::i;1751:41:1:-;;;;;;:::i;:::-;;;;;;;;;;;;;;1194:85:2;1266:6;;1194:85;;-1:-1:-1;;;;;1266:6:2;;;3654:51:4;;3642:2;3627:18;1194:85:2;3609:102:4;1056:20:1;;;:::i;2678:373::-;;;;;;:::i;:::-;;:::i;3838:1483::-;;;;;;:::i;:::-;;:::i;1388:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2074:198:2;;;;;;:::i;:::-;;:::i;1031:18:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2461:211::-;2561:10;2535:4;2551:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2551:30:1;;;;;;;;;;:39;;;2606:37;2535:4;;2551:30;;2606:37;;;;2584:6;4054:25:4;;4042:2;4027:18;;4009:76;2606:37:1;;;;;;;;-1:-1:-1;2661:4:1;2461:211;;;;:::o;3057:592::-;-1:-1:-1;;;;;3209:15:1;;3175:4;3209:15;;;:9;:15;;;;;;;;3225:10;3209:27;;;;;;;;-1:-1:-1;;3287:28:1;;3283:80;;3347:16;3357:6;3347:7;:16;:::i;:::-;-1:-1:-1;;;;;3317:15:1;;;;;;:9;:15;;;;;;;;3333:10;3317:27;;;;;;;:46;3283:80;-1:-1:-1;;;;;3374:15:1;;;;;;:9;:15;;;;;:25;;3393:6;;3374:15;:25;;3393:6;;3374:25;:::i;:::-;;;;-1:-1:-1;;;;;;;3545:13:1;;;;;;;:9;:13;;;;;;;:23;;;;;;3594:26;3545:13;;3594:26;;;;;;;3562:6;4054:25:4;;4042:2;4027:18;;4009:76;3594:26:1;;;;;;;;-1:-1:-1;3638:4:1;;3057:592;-1:-1:-1;;;;3057:592:1:o;5327:177::-;5384:7;5427:16;5410:13;:33;:87;;5473:24;:22;:24::i;:::-;5403:94;;5327:177;:::o;5410:87::-;-1:-1:-1;5446:24:1;;5327:177::o;205:97:3:-;1087:13:2;:11;:13::i;:::-;276:19:3::1;282:3;287:7;276:5;:19::i;:::-;205:97:::0;;:::o;1824:101:2:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1056:20:1:-;;;;;;;:::i;2678:373::-;2774:10;2748:4;2764:21;;;:9;:21;;;;;:31;;2789:6;;2764:21;2748:4;;2764:31;;2789:6;;2764:31;:::i;:::-;;;;-1:-1:-1;;;;;;;2941:13:1;;;;;;:9;:13;;;;;;;:23;;;;;;2990:32;2999:10;;2990:32;;;;2958:6;4054:25:4;;4042:2;4027:18;;4009:76;3838:1483:1;4057:15;4045:8;:27;;4037:63;;;;-1:-1:-1;;;4037:63:1;;7504:2:4;4037:63:1;;;7486:21:4;7543:2;7523:18;;;7516:30;7582:25;7562:18;;;7555:53;7625:18;;4037:63:1;;;;;;;;;4265:24;4292:805;4428:18;:16;:18::i;:::-;-1:-1:-1;;;;;4873:13:1;;;;;;;:6;:13;;;;;;;;;:15;;;;;;;;4511:449;;4555:165;4511:449;;;4377:25:4;4456:18;;;4449:43;;;;4528:15;;;4508:18;;;4501:43;4560:18;;;4553:34;;;4603:19;;;4596:35;;;;4647:19;;;;4640:35;;;4511:449:1;;;;;;;;;;4349:19:4;;;4511:449:1;;;4472:514;;;;;;;;-1:-1:-1;;;4350:658:1;;;3369:27:4;3412:11;;;3405:27;;;;3448:12;;;3441:28;;;;3485:12;;4350:658:1;;;-1:-1:-1;;4350:658:1;;;;;;;;;4319:707;;4350:658;4319:707;;;;4292:805;;;;;;;;;5407:25:4;5480:4;5468:17;;5448:18;;;5441:45;5502:18;;;5495:34;;;5545:18;;;5538:34;;;5379:19;;4292:805:1;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4292:805:1;;-1:-1:-1;;4292:805:1;;;-1:-1:-1;;;;;;;5120:30:1;;;;;;:59;;;5174:5;-1:-1:-1;;;;;5154:25:1;:16;-1:-1:-1;;;;;5154:25:1;;5120:59;5112:86;;;;-1:-1:-1;;;5112:86:1;;7161:2:4;5112:86:1;;;7143:21:4;7200:2;7180:18;;;7173:30;-1:-1:-1;;;7219:18:4;;;7212:44;7273:18;;5112:86:1;7133:164:4;5112:86:1;-1:-1:-1;;;;;5213:27:1;;;;;;;:9;:27;;;;;;;;:36;;;;;;;;;;;;;:44;;;5283:31;4054:25:4;;;5213:36:1;;5283:31;;;;;4027:18:4;5283:31:1;;;;;;;3838:1483;;;;;;;:::o;2074:198:2:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:2;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:2;;6393:2:4;2154:73:2::1;::::0;::::1;6375:21:4::0;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:4;;;6515:36;6568:19;;2154:73:2::1;6365:228:4::0;2154:73:2::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;5510:446:1:-;5575:7;5672:95;5805:4;5789:22;;;;;;:::i;:::-;;;;;;;;;;5640:295;;;4945:25:4;;;;4986:18;;4979:34;;;;5833:14:1;5029:18:4;;;5022:34;5869:13:1;5072:18:4;;;5065:34;5912:4:1;5115:19:4;;;5108:61;4917:19;;5640:295:1;;;;;;;;;;;;5613:336;;;;;;5594:355;;5510:446;:::o;1352:130:2:-;1266:6;;-1:-1:-1;;;;;1266:6:2;719:10:0;1415:23:2;1407:68;;;;-1:-1:-1;;;1407:68:2;;6800:2:4;1407:68:2;;;6782:21:4;;;6819:18;;;6812:30;6878:34;6858:18;;;6851:62;6930:18;;1407:68:2;6772:182:4;6150:325:1;6235:6;6220:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;6387:13:1;;;;;;:9;:13;;;;;;;;:23;;;;;;6436:32;4054:25:4;;;6436:32:1;;4027:18:4;6436:32:1;;;;;;;6150:325;;:::o;2426:187:2:-;2518:6;;;-1:-1:-1;;;;;2534:17:2;;;-1:-1:-1;;;;;;2534:17:2;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2426:187;;:::o;14:173:4:-;82:20;;-1:-1:-1;;;;;131:31:4;;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;:::-;343:39;262:126;-1:-1:-1;;;262:126:4:o;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:713::-;1122:6;1130;1138;1146;1154;1162;1170;1223:3;1211:9;1202:7;1198:23;1194:33;1191:2;;;1245:6;1237;1230:22;1191:2;1273:29;1292:9;1273:29;:::i;:::-;1263:39;;1321:38;1355:2;1344:9;1340:18;1321:38;:::i;:::-;1311:48;;1406:2;1395:9;1391:18;1378:32;1368:42;;1457:2;1446:9;1442:18;1429:32;1419:42;;1511:3;1500:9;1496:19;1483:33;1556:4;1549:5;1545:16;1538:5;1535:27;1525:2;;1581:6;1573;1566:22;1525:2;1181:543;;;;-1:-1:-1;1181:543:4;;;;1609:5;1661:3;1646:19;;1633:33;;-1:-1:-1;1713:3:4;1698:19;;;1685:33;;1181:543;-1:-1:-1;;1181:543:4:o;1729:264::-;1797:6;1805;1858:2;1846:9;1837:7;1833:23;1829:32;1826:2;;;1879:6;1871;1864:22;1826:2;1907:29;1926:9;1907:29;:::i;:::-;1897:39;1983:2;1968:18;;;;1955:32;;-1:-1:-1;;;1816:177:4:o;1998:1108::-;2128:3;2157;2192:6;2186:13;2222:3;2244:1;2272:9;2268:2;2264:18;2254:28;;2332:2;2321:9;2317:18;2354;2344:2;;2398:4;2390:6;2386:17;2376:27;;2344:2;2424;2472;2464:6;2461:14;2441:18;2438:38;2435:2;;;-1:-1:-1;;;2499:33:4;;2555:4;2552:1;2545:15;2585:4;2506:3;2573:17;2435:2;2616:18;2643:104;;;;2761:1;2756:325;;;;2609:472;;2643:104;-1:-1:-1;;2676:24:4;;2664:37;;2721:16;;;;-1:-1:-1;2643:104:4;;2756:325;8075:4;8094:17;;;8144:4;8128:21;;2854:3;2870:165;2884:6;2881:1;2878:13;2870:165;;;2962:14;;2949:11;;;2942:35;3005:16;;;;2899:10;;2870:165;;;2874:3;;3064:6;3059:3;3055:16;3048:23;;2609:472;-1:-1:-1;3097:3:4;;2136:970;-1:-1:-1;;;;;;;;2136:970:4:o;5583:603::-;5695:4;5724:2;5753;5742:9;5735:21;5785:6;5779:13;5828:6;5823:2;5812:9;5808:18;5801:34;5853:4;5866:140;5880:6;5877:1;5874:13;5866:140;;;5975:14;;;5971:23;;5965:30;5941:17;;;5960:2;5937:26;5930:66;5895:10;;5866:140;;;6024:6;6021:1;6018:13;6015:2;;;6094:4;6089:2;6080:6;6069:9;6065:22;6061:31;6054:45;6015:2;-1:-1:-1;6170:2:4;6149:15;-1:-1:-1;;6145:29:4;6130:45;;;;6177:2;6126:54;;5704:482;-1:-1:-1;;;5704:482:4:o;8160:128::-;8200:3;8231:1;8227:6;8224:1;8221:13;8218:2;;;8237:18;;:::i;:::-;-1:-1:-1;8273:9:4;;8208:80::o;8293:125::-;8333:4;8361:1;8358;8355:8;8352:2;;;8366:18;;:::i;:::-;-1:-1:-1;8403:9:4;;8342:76::o;8423:380::-;8502:1;8498:12;;;;8545;;;8566:2;;8620:4;8612:6;8608:17;8598:27;;8566:2;8673;8665:6;8662:14;8642:18;8639:38;8636:2;;;8719:10;8714:3;8710:20;8707:1;8700:31;8754:4;8751:1;8744:15;8782:4;8779:1;8772:15;8636:2;;8478:325;;;:::o;8808:127::-;8869:10;8864:3;8860:20;8857:1;8850:31;8900:4;8897:1;8890:15;8924:4;8921:1;8914:15

Swarm Source

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