ETH Price: $3,333.59 (-3.88%)
Gas: 5 Gwei

Token

Wednesday DUDes (WDUD)
 

Overview

Max Total Supply

100,000,000 WDUD

Holders

3

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
95,927,853.238129288811252728 WDUD

Value
$0.00
0x8236f1620168c4ec2953b444099010c3a38bf01a
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:
WDUD

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : wDUD.sol
/**
 *Submitted for verification at Etherscan.io on 2023-08-23
*/

// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;

/**

IT'S WEDNESDAY, DUDES!

Let's celebrate it with a new MEMcoin

**/

/*
 * @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) {
        this;
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function decimals() external view returns (uint8);
    function symbol() external view returns (string memory);
    function name() external view returns (string memory);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address _owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract WDUD is IERC20, Ownable {

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _maxAddressAmt;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    mapping (address => bool) private _maxAddressAmtExcluded;

    constructor() {

        _name = "Wednesday DUDes";
        _symbol = "WDUD";

        _decimals = 18;
        _totalSupply = 100000000e18;

        _maxAddressAmt = (_totalSupply*10)/100;

        setMaxAddressAmtExcluded(_msgSender(), true);
        setMaxAddressAmtExcluded(address(0x8236f1620168c4EC2953b444099010C3a38Bf01A), true);

        _balances[_msgSender()] = _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function setMaxAddressAmtExcluded(address a, bool excluded) public onlyOwner {
        require(a != address(0), "Address must not be zero address");
        _maxAddressAmtExcluded[a] = excluded;
    }

    function removeMaxAddressAmt() public onlyOwner{
        _maxAddressAmt = _totalSupply;
    }

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

    // function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {
    //     if (!_maxAddressAmtExcluded[to]) {
    //         require(balanceOf(to) <= _maxAddressAmt, "Cannot exceed max amount per address");
    //     }
    // }

    function _afterTokenTransfer(address to) internal virtual {
        if (!_maxAddressAmtExcluded[to]) {
            require(balanceOf(to) <= _maxAddressAmt, "Cannot exceed max amount per address");
        }
    }


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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(address(0));
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal virtual {}

	
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(to);
    }

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

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

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

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

    function balanceOf(address account) public view 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;
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
    
/**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxAddressAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setMaxAddressAmtExcluded","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":"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"}]

60806040523480156200001157600080fd5b50600062000024620002ce60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600f81526020017f5765646e65736461792044554465730000000000000000000000000000000000815250600590805190602001906200010f9291906200045c565b506040518060400160405280600481526020017f5744554400000000000000000000000000000000000000000000000000000000815250600690805190602001906200015d9291906200045c565b506012600760006101000a81548160ff021916908360ff1602179055506a52b7d2dcc80cd2e40000006003819055506064600a6003546200019f91906200064b565b620001ab919062000613565b600481905550620001d3620001c5620002ce60201b60201c565b6001620002d660201b60201c565b620001fa738236f1620168c4ec2953b444099010c3a38bf01a6001620002d660201b60201c565b6003546001600062000211620002ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200025f620002ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600354604051620002c09190620005e5565b60405180910390a362000779565b600033905090565b620002e6620002ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030c6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035c90620005a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cf90620005c3565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046a90620006b6565b90600052602060002090601f0160209004810192826200048e5760008555620004da565b82601f10620004a957805160ff1916838001178555620004da565b82800160010185558215620004da579182015b82811115620004d9578251825591602001919060010190620004bc565b5b509050620004e99190620004ed565b5090565b5b8082111562000508576000816000905550600101620004ee565b5090565b60006200051b60208362000602565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006200055d60208362000602565b91507f41646472657373206d757374206e6f74206265207a65726f20616464726573736000830152602082019050919050565b6200059b81620006ac565b82525050565b60006020820190508181036000830152620005bc816200050c565b9050919050565b60006020820190508181036000830152620005de816200054e565b9050919050565b6000602082019050620005fc600083018462000590565b92915050565b600082825260208201905092915050565b60006200062082620006ac565b91506200062d83620006ac565b92508262000640576200063f6200071b565b5b828204905092915050565b60006200065882620006ac565b91506200066583620006ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006a157620006a0620006ec565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006cf57607f821691505b60208210811415620006e657620006e56200074a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611dd080620007896000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a32e7d4611610071578063a32e7d4614610296578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a6146102465780638cb16318146102505780638da5cb5b1461025a57806395d89b41146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b60405161012591906119c2565b60405180910390f35b610148600480360381019061014391906113f6565b6103f0565b60405161015591906119a7565b60405180910390f35b61016661040e565b6040516101739190611b84565b60405180910390f35b6101966004803603810190610191919061136b565b610418565b6040516101a391906119a7565b60405180910390f35b6101b4610447565b6040516101c19190611b9f565b60405180910390f35b6101e460048036038101906101df91906113f6565b61045e565b6040516101f191906119a7565b60405180910390f35b610214600480360381019061020f9190611432565b610495565b005b610230600480360381019061022b9190611306565b6104a9565b60405161023d9190611b84565b60405180910390f35b61024e6104f2565b005b61025861062c565b005b6102626106b3565b60405161026f919061198c565b60405180910390f35b6102806106dc565b60405161028d91906119c2565b60405180910390f35b6102b060048036038101906102ab91906113ba565b61076e565b005b6102cc60048036038101906102c791906113f6565b6108b5565b6040516102d991906119a7565b60405180910390f35b6102fc60048036038101906102f791906113f6565b61092c565b60405161030991906119a7565b60405180910390f35b61032c6004803603810190610327919061132f565b61094a565b6040516103399190611b84565b60405180910390f35b61035c60048036038101906103579190611306565b6109d1565b005b60606005805461036d90611cb4565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611cb4565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610b7a565b8484610b82565b6001905092915050565b6000600354905090565b600080610423610b7a565b9050610430858285610d4d565b61043b858585610dd9565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600080610469610b7a565b905061048a81858561047b858961094a565b6104859190611bd6565b610b82565b600191505092915050565b6104a66104a0610b7a565b82611052565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104fa610b7a565b73ffffffffffffffffffffffffffffffffffffffff166105186106b3565b73ffffffffffffffffffffffffffffffffffffffff161461056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610634610b7a565b73ffffffffffffffffffffffffffffffffffffffff166106526106b3565b73ffffffffffffffffffffffffffffffffffffffff16146106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90611ac4565b60405180910390fd5b600354600481905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546106eb90611cb4565b80601f016020809104026020016040519081016040528092919081815260200182805461071790611cb4565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b610776610b7a565b73ffffffffffffffffffffffffffffffffffffffff166107946106b3565b73ffffffffffffffffffffffffffffffffffffffff16146107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190611b44565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108c0610b7a565b905060006108ce828661094a565b905083811015610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90611b64565b60405180910390fd5b6109208286868403610b82565b60019250505092915050565b6000610940610939610b7a565b8484610dd9565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d9610b7a565b73ffffffffffffffffffffffffffffffffffffffff166109f76106b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611a44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990611b24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611a64565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d409190611b84565b60405180910390a3505050565b6000610d59848461094a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd35781811015610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90611a84565b60405180910390fd5b610dd28484848403610b82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906119e4565b60405180910390fd5b610ec4838383611220565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611aa4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103b9190611b84565b60405180910390a361104c83611225565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990611ae4565b60405180910390fd5b6110ce82600083611220565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90611a04565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112099190611b84565b60405180910390a361121b6000611225565b505050565b505050565b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112c457600454611282826104a9565b11156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90611a24565b60405180910390fd5b5b50565b6000813590506112d681611d55565b92915050565b6000813590506112eb81611d6c565b92915050565b60008135905061130081611d83565b92915050565b60006020828403121561131857600080fd5b6000611326848285016112c7565b91505092915050565b6000806040838503121561134257600080fd5b6000611350858286016112c7565b9250506020611361858286016112c7565b9150509250929050565b60008060006060848603121561138057600080fd5b600061138e868287016112c7565b935050602061139f868287016112c7565b92505060406113b0868287016112f1565b9150509250925092565b600080604083850312156113cd57600080fd5b60006113db858286016112c7565b92505060206113ec858286016112dc565b9150509250929050565b6000806040838503121561140957600080fd5b6000611417858286016112c7565b9250506020611428858286016112f1565b9150509250929050565b60006020828403121561144457600080fd5b6000611452848285016112f1565b91505092915050565b61146481611c2c565b82525050565b61147381611c3e565b82525050565b600061148482611bba565b61148e8185611bc5565b935061149e818560208601611c81565b6114a781611d44565b840191505092915050565b60006114bf602383611bc5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611525602283611bc5565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158b602483611bc5565b91507f43616e6e6f7420657863656564206d617820616d6f756e74207065722061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f1602683611bc5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611657602283611bc5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116bd601d83611bc5565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006116fd602683611bc5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611763602083611bc5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117a3602183611bc5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611809602583611bc5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061186f602483611bc5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118d5602083611bc5565b91507f41646472657373206d757374206e6f74206265207a65726f20616464726573736000830152602082019050919050565b6000611915602583611bc5565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61197781611c6a565b82525050565b61198681611c74565b82525050565b60006020820190506119a1600083018461145b565b92915050565b60006020820190506119bc600083018461146a565b92915050565b600060208201905081810360008301526119dc8184611479565b905092915050565b600060208201905081810360008301526119fd816114b2565b9050919050565b60006020820190508181036000830152611a1d81611518565b9050919050565b60006020820190508181036000830152611a3d8161157e565b9050919050565b60006020820190508181036000830152611a5d816115e4565b9050919050565b60006020820190508181036000830152611a7d8161164a565b9050919050565b60006020820190508181036000830152611a9d816116b0565b9050919050565b60006020820190508181036000830152611abd816116f0565b9050919050565b60006020820190508181036000830152611add81611756565b9050919050565b60006020820190508181036000830152611afd81611796565b9050919050565b60006020820190508181036000830152611b1d816117fc565b9050919050565b60006020820190508181036000830152611b3d81611862565b9050919050565b60006020820190508181036000830152611b5d816118c8565b9050919050565b60006020820190508181036000830152611b7d81611908565b9050919050565b6000602082019050611b99600083018461196e565b92915050565b6000602082019050611bb4600083018461197d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611be182611c6a565b9150611bec83611c6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2157611c20611ce6565b5b828201905092915050565b6000611c3782611c4a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9f578082015181840152602081019050611c84565b83811115611cae576000848401525b50505050565b60006002820490506001821680611ccc57607f821691505b60208210811415611ce057611cdf611d15565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d5e81611c2c565b8114611d6957600080fd5b50565b611d7581611c3e565b8114611d8057600080fd5b50565b611d8c81611c6a565b8114611d9757600080fd5b5056fea264697066735822122053e57382d354a8d4c35865239012779886107e5d36abf448251eb4faf807f71564736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a32e7d4611610071578063a32e7d4614610296578063a457c2d7146102b2578063a9059cbb146102e2578063dd62ed3e14610312578063f2fde38b146103425761010b565b8063715018a6146102465780638cb16318146102505780638da5cb5b1461025a57806395d89b41146102785761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861035e565b60405161012591906119c2565b60405180910390f35b610148600480360381019061014391906113f6565b6103f0565b60405161015591906119a7565b60405180910390f35b61016661040e565b6040516101739190611b84565b60405180910390f35b6101966004803603810190610191919061136b565b610418565b6040516101a391906119a7565b60405180910390f35b6101b4610447565b6040516101c19190611b9f565b60405180910390f35b6101e460048036038101906101df91906113f6565b61045e565b6040516101f191906119a7565b60405180910390f35b610214600480360381019061020f9190611432565b610495565b005b610230600480360381019061022b9190611306565b6104a9565b60405161023d9190611b84565b60405180910390f35b61024e6104f2565b005b61025861062c565b005b6102626106b3565b60405161026f919061198c565b60405180910390f35b6102806106dc565b60405161028d91906119c2565b60405180910390f35b6102b060048036038101906102ab91906113ba565b61076e565b005b6102cc60048036038101906102c791906113f6565b6108b5565b6040516102d991906119a7565b60405180910390f35b6102fc60048036038101906102f791906113f6565b61092c565b60405161030991906119a7565b60405180910390f35b61032c6004803603810190610327919061132f565b61094a565b6040516103399190611b84565b60405180910390f35b61035c60048036038101906103579190611306565b6109d1565b005b60606005805461036d90611cb4565b80601f016020809104026020016040519081016040528092919081815260200182805461039990611cb4565b80156103e65780601f106103bb576101008083540402835291602001916103e6565b820191906000526020600020905b8154815290600101906020018083116103c957829003601f168201915b5050505050905090565b60006104046103fd610b7a565b8484610b82565b6001905092915050565b6000600354905090565b600080610423610b7a565b9050610430858285610d4d565b61043b858585610dd9565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b600080610469610b7a565b905061048a81858561047b858961094a565b6104859190611bd6565b610b82565b600191505092915050565b6104a66104a0610b7a565b82611052565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104fa610b7a565b73ffffffffffffffffffffffffffffffffffffffff166105186106b3565b73ffffffffffffffffffffffffffffffffffffffff161461056e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056590611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610634610b7a565b73ffffffffffffffffffffffffffffffffffffffff166106526106b3565b73ffffffffffffffffffffffffffffffffffffffff16146106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90611ac4565b60405180910390fd5b600354600481905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546106eb90611cb4565b80601f016020809104026020016040519081016040528092919081815260200182805461071790611cb4565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b610776610b7a565b73ffffffffffffffffffffffffffffffffffffffff166107946106b3565b73ffffffffffffffffffffffffffffffffffffffff16146107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190611b44565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806108c0610b7a565b905060006108ce828661094a565b905083811015610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90611b64565b60405180910390fd5b6109208286868403610b82565b60019250505092915050565b6000610940610939610b7a565b8484610dd9565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d9610b7a565b73ffffffffffffffffffffffffffffffffffffffff166109f76106b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611ac4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611a44565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990611b24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611a64565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d409190611b84565b60405180910390a3505050565b6000610d59848461094a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd35781811015610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90611a84565b60405180910390fd5b610dd28484848403610b82565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090611b04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906119e4565b60405180910390fd5b610ec4838383611220565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290611aa4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103b9190611b84565b60405180910390a361104c83611225565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990611ae4565b60405180910390fd5b6110ce82600083611220565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c90611a04565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112099190611b84565b60405180910390a361121b6000611225565b505050565b505050565b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112c457600454611282826104a9565b11156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90611a24565b60405180910390fd5b5b50565b6000813590506112d681611d55565b92915050565b6000813590506112eb81611d6c565b92915050565b60008135905061130081611d83565b92915050565b60006020828403121561131857600080fd5b6000611326848285016112c7565b91505092915050565b6000806040838503121561134257600080fd5b6000611350858286016112c7565b9250506020611361858286016112c7565b9150509250929050565b60008060006060848603121561138057600080fd5b600061138e868287016112c7565b935050602061139f868287016112c7565b92505060406113b0868287016112f1565b9150509250925092565b600080604083850312156113cd57600080fd5b60006113db858286016112c7565b92505060206113ec858286016112dc565b9150509250929050565b6000806040838503121561140957600080fd5b6000611417858286016112c7565b9250506020611428858286016112f1565b9150509250929050565b60006020828403121561144457600080fd5b6000611452848285016112f1565b91505092915050565b61146481611c2c565b82525050565b61147381611c3e565b82525050565b600061148482611bba565b61148e8185611bc5565b935061149e818560208601611c81565b6114a781611d44565b840191505092915050565b60006114bf602383611bc5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611525602283611bc5565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158b602483611bc5565b91507f43616e6e6f7420657863656564206d617820616d6f756e74207065722061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f1602683611bc5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611657602283611bc5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116bd601d83611bc5565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006116fd602683611bc5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611763602083611bc5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117a3602183611bc5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611809602583611bc5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061186f602483611bc5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118d5602083611bc5565b91507f41646472657373206d757374206e6f74206265207a65726f20616464726573736000830152602082019050919050565b6000611915602583611bc5565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61197781611c6a565b82525050565b61198681611c74565b82525050565b60006020820190506119a1600083018461145b565b92915050565b60006020820190506119bc600083018461146a565b92915050565b600060208201905081810360008301526119dc8184611479565b905092915050565b600060208201905081810360008301526119fd816114b2565b9050919050565b60006020820190508181036000830152611a1d81611518565b9050919050565b60006020820190508181036000830152611a3d8161157e565b9050919050565b60006020820190508181036000830152611a5d816115e4565b9050919050565b60006020820190508181036000830152611a7d8161164a565b9050919050565b60006020820190508181036000830152611a9d816116b0565b9050919050565b60006020820190508181036000830152611abd816116f0565b9050919050565b60006020820190508181036000830152611add81611756565b9050919050565b60006020820190508181036000830152611afd81611796565b9050919050565b60006020820190508181036000830152611b1d816117fc565b9050919050565b60006020820190508181036000830152611b3d81611862565b9050919050565b60006020820190508181036000830152611b5d816118c8565b9050919050565b60006020820190508181036000830152611b7d81611908565b9050919050565b6000602082019050611b99600083018461196e565b92915050565b6000602082019050611bb4600083018461197d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611be182611c6a565b9150611bec83611c6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2157611c20611ce6565b5b828201905092915050565b6000611c3782611c4a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c9f578082015181840152602081019050611c84565b83811115611cae576000848401525b50505050565b60006002820490506001821680611ccc57607f821691505b60208210811415611ce057611cdf611d15565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d5e81611c2c565b8114611d6957600080fd5b50565b611d7581611c3e565b8114611d8057600080fd5b50565b611d8c81611c6a565b8114611d9757600080fd5b5056fea264697066735822122053e57382d354a8d4c35865239012779886107e5d36abf448251eb4faf807f71564736f6c63430008000033

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.