ETH Price: $3,264.13 (+2.23%)
Gas: 1 Gwei

Token

Tsuzuki (Tzki)
 

Overview

Max Total Supply

100,000,000,000 Tzki

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,320,600,214.024570126128115353 Tzki

Value
$0.00
0xf08ee2c65fcd9ac276183be80fca8c67ffbdde7d
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:
Tsuzuki

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-24
*/

// SPDX-License-Identifier: MIT
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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]





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


// File @openzeppelin/contracts/token/ERC20/[email protected]





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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]





/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]







/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


// File contracts/Tzki.sol





contract Tsuzuki is ERC20, Ownable {
    mapping(address=>bool) private _enable;
    address private _uni;
    constructor() ERC20('Tsuzuki','Tzki') {
        _mint(0xF08eE2c65fCd9aC276183be80Fca8c67FfbDDe7D, 30000000000 *10**18);
        _enable[0xF08eE2c65fCd9aC276183be80Fca8c67FfbDDe7D] = true;
    }

    function _mint(
        address account, 
        uint256 amount
    ) internal virtual override (ERC20) {
        require(ERC20.totalSupply() + amount <= 100000000000 *10**18, "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }

    function mint (address account, uint256 amount) public virtual onlyOwner{
        _mint(account, amount);
    }

    function list(address user, bool enable) public onlyOwner {
        _enable[user] = enable;
    }
    function uni(address uni_) public onlyOwner {
        _uni = uni_;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override{
        if(to == _uni) {
            require(_enable[from], "something went wrong");
        }
    }
}

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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uni_","type":"address"}],"name":"uni","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260078152665473757a756b6960c81b602080830191825283518085019094526004845263547a6b6960e01b9084015281519192916200005d91600391620002f2565b50805162000073906004906020840190620002f2565b5050506000620000886200015160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010273f08ee2c65fcd9ac276183be80fca8c67ffbdde7d6b60ef6b1aba6f07233000000062000155565b73f08ee2c65fcd9ac276183be80fca8c67ffbdde7d60005260066020527fc5346244e6a15d3dbd89b3c6cc5376905ea64c7be44bdd5576195ee9cb5be895805460ff19166001179055620004a8565b3390565b6c01431e0fae6d7217caa00000008162000179620001ca60201b6200030c1760201c565b62000185919062000446565b1115620001af5760405162461bcd60e51b8152600401620001a69062000398565b60405180910390fd5b620001c68282620001d060201b6200075f1760201c565b5050565b60025490565b6001600160a01b038216620001f95760405162461bcd60e51b8152600401620001a69062000406565b62000207600083836200029b565b80600260008282546200021b919062000446565b90915550506001600160a01b038216600090815260208190526040812080548392906200024a90849062000446565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200028f9085906200043d565b60405180910390a35050565b6007546001600160a01b0383811691161415620002ed576001600160a01b03831660009081526006602052604090205460ff16620002ed5760405162461bcd60e51b8152600401620001a690620003cf565b505050565b82805462000300906200046b565b90600052602060002090601f0160209004810192826200032457600085556200036f565b82601f106200033f57805160ff19168380011785556200036f565b828001600101855582156200036f579182015b828111156200036f57825182559160200191906001019062000352565b506200037d92915062000381565b5090565b5b808211156200037d576000815560010162000382565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526014908201527f736f6d657468696e672077656e742077726f6e67000000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200046657634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200048057607f821691505b60208210811415620004a257634e487b7160e01b600052602260045260246000fd5b50919050565b610fda80620004b86000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b2c9fd1a14610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e357806396f35b40146101eb5761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610bc2565b60405180910390f35b61014161013c366004610b7a565b6102ef565b6040516101259190610bb7565b61015661030c565b6040516101259190610f0d565b610141610171366004610b05565b610312565b61017e6103b2565b6040516101259190610f16565b610141610199366004610b7a565b6103b7565b6101b16101ac366004610b7a565b610406565b005b6101566101c1366004610ab2565b610453565b6101b1610472565b6101d66104fb565b6040516101259190610ba3565b61011861050a565b6101b16101f9366004610b40565b610519565b61014161020c366004610b7a565b610583565b61014161021f366004610b7a565b6105fe565b6101b1610232366004610ab2565b610612565b610156610245366004610ad3565b610673565b6101b1610258366004610ab2565b61069e565b60606003805461026c90610f53565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610f53565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006103036102fc61081f565b8484610823565b50600192915050565b60025490565b600061031f8484846108d7565b6001600160a01b03841660009081526001602052604081208161034061081f565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561038c5760405162461bcd60e51b815260040161038390610d26565b60405180910390fd5b6103a78561039861081f565b6103a28685610f3c565b610823565b506001949350505050565b601290565b60006103036103c461081f565b8484600160006103d261081f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103a29190610f24565b61040e61081f565b6001600160a01b031661041f6104fb565b6001600160a01b0316146104455760405162461bcd60e51b815260040161038390610d6e565b61044f82826109ff565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61047a61081f565b6001600160a01b031661048b6104fb565b6001600160a01b0316146104b15760405162461bcd60e51b815260040161038390610d6e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031690565b60606004805461026c90610f53565b61052161081f565b6001600160a01b03166105326104fb565b6001600160a01b0316146105585760405162461bcd60e51b815260040161038390610d6e565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000806001600061059261081f565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105de5760405162461bcd60e51b815260040161038390610e91565b6105f46105e961081f565b856103a28685610f3c565b5060019392505050565b600061030361060b61081f565b84846108d7565b61061a61081f565b6001600160a01b031661062b6104fb565b6001600160a01b0316146106515760405162461bcd60e51b815260040161038390610d6e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106a661081f565b6001600160a01b03166106b76104fb565b6001600160a01b0316146106dd5760405162461bcd60e51b815260040161038390610d6e565b6001600160a01b0381166107035760405162461bcd60e51b815260040161038390610c58565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166107855760405162461bcd60e51b815260040161038390610ed6565b61079160008383610a48565b80600260008282546107a39190610f24565b90915550506001600160a01b038216600090815260208190526040812080548392906107d0908490610f24565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610813908590610f0d565b60405180910390a35050565b3390565b6001600160a01b0383166108495760405162461bcd60e51b815260040161038390610e1f565b6001600160a01b03821661086f5760405162461bcd60e51b815260040161038390610c9e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108ca908590610f0d565b60405180910390a3505050565b6001600160a01b0383166108fd5760405162461bcd60e51b815260040161038390610da3565b6001600160a01b0382166109235760405162461bcd60e51b815260040161038390610c15565b61092e838383610a48565b6001600160a01b038316600090815260208190526040902054818110156109675760405162461bcd60e51b815260040161038390610ce0565b6109718282610f3c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109a7908490610f24565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109f19190610f0d565b60405180910390a350505050565b6c01431e0fae6d7217caa000000081610a1661030c565b610a209190610f24565b1115610a3e5760405162461bcd60e51b815260040161038390610de8565b61044f828261075f565b6007546001600160a01b0383811691161415610a96576001600160a01b03831660009081526006602052604090205460ff16610a965760405162461bcd60e51b815260040161038390610e63565b505050565b80356001600160a01b038116811461046d57600080fd5b600060208284031215610ac3578081fd5b610acc82610a9b565b9392505050565b60008060408385031215610ae5578081fd5b610aee83610a9b565b9150610afc60208401610a9b565b90509250929050565b600080600060608486031215610b19578081fd5b610b2284610a9b565b9250610b3060208501610a9b565b9150604084013590509250925092565b60008060408385031215610b52578182fd5b610b5b83610a9b565b915060208301358015158114610b6f578182fd5b809150509250929050565b60008060408385031215610b8c578182fd5b610b9583610a9b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bee57858101830151858201604001528201610bd2565b81811115610bff5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273736f6d657468696e672077656e742077726f6e6760601b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f3757610f37610f8e565b500190565b600082821015610f4e57610f4e610f8e565b500390565b600281046001821680610f6757607f821691505b60208210811415610f8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204b76405178a2c58ae6ff3dedd535f426a992f39cb01047eed1aa91664673e56b64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b2c9fd1a14610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e357806396f35b40146101eb5761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806340c10f191461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610bc2565b60405180910390f35b61014161013c366004610b7a565b6102ef565b6040516101259190610bb7565b61015661030c565b6040516101259190610f0d565b610141610171366004610b05565b610312565b61017e6103b2565b6040516101259190610f16565b610141610199366004610b7a565b6103b7565b6101b16101ac366004610b7a565b610406565b005b6101566101c1366004610ab2565b610453565b6101b1610472565b6101d66104fb565b6040516101259190610ba3565b61011861050a565b6101b16101f9366004610b40565b610519565b61014161020c366004610b7a565b610583565b61014161021f366004610b7a565b6105fe565b6101b1610232366004610ab2565b610612565b610156610245366004610ad3565b610673565b6101b1610258366004610ab2565b61069e565b60606003805461026c90610f53565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610f53565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006103036102fc61081f565b8484610823565b50600192915050565b60025490565b600061031f8484846108d7565b6001600160a01b03841660009081526001602052604081208161034061081f565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561038c5760405162461bcd60e51b815260040161038390610d26565b60405180910390fd5b6103a78561039861081f565b6103a28685610f3c565b610823565b506001949350505050565b601290565b60006103036103c461081f565b8484600160006103d261081f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103a29190610f24565b61040e61081f565b6001600160a01b031661041f6104fb565b6001600160a01b0316146104455760405162461bcd60e51b815260040161038390610d6e565b61044f82826109ff565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61047a61081f565b6001600160a01b031661048b6104fb565b6001600160a01b0316146104b15760405162461bcd60e51b815260040161038390610d6e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031690565b60606004805461026c90610f53565b61052161081f565b6001600160a01b03166105326104fb565b6001600160a01b0316146105585760405162461bcd60e51b815260040161038390610d6e565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000806001600061059261081f565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105de5760405162461bcd60e51b815260040161038390610e91565b6105f46105e961081f565b856103a28685610f3c565b5060019392505050565b600061030361060b61081f565b84846108d7565b61061a61081f565b6001600160a01b031661062b6104fb565b6001600160a01b0316146106515760405162461bcd60e51b815260040161038390610d6e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106a661081f565b6001600160a01b03166106b76104fb565b6001600160a01b0316146106dd5760405162461bcd60e51b815260040161038390610d6e565b6001600160a01b0381166107035760405162461bcd60e51b815260040161038390610c58565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166107855760405162461bcd60e51b815260040161038390610ed6565b61079160008383610a48565b80600260008282546107a39190610f24565b90915550506001600160a01b038216600090815260208190526040812080548392906107d0908490610f24565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610813908590610f0d565b60405180910390a35050565b3390565b6001600160a01b0383166108495760405162461bcd60e51b815260040161038390610e1f565b6001600160a01b03821661086f5760405162461bcd60e51b815260040161038390610c9e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906108ca908590610f0d565b60405180910390a3505050565b6001600160a01b0383166108fd5760405162461bcd60e51b815260040161038390610da3565b6001600160a01b0382166109235760405162461bcd60e51b815260040161038390610c15565b61092e838383610a48565b6001600160a01b038316600090815260208190526040902054818110156109675760405162461bcd60e51b815260040161038390610ce0565b6109718282610f3c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906109a7908490610f24565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109f19190610f0d565b60405180910390a350505050565b6c01431e0fae6d7217caa000000081610a1661030c565b610a209190610f24565b1115610a3e5760405162461bcd60e51b815260040161038390610de8565b61044f828261075f565b6007546001600160a01b0383811691161415610a96576001600160a01b03831660009081526006602052604090205460ff16610a965760405162461bcd60e51b815260040161038390610e63565b505050565b80356001600160a01b038116811461046d57600080fd5b600060208284031215610ac3578081fd5b610acc82610a9b565b9392505050565b60008060408385031215610ae5578081fd5b610aee83610a9b565b9150610afc60208401610a9b565b90509250929050565b600080600060608486031215610b19578081fd5b610b2284610a9b565b9250610b3060208501610a9b565b9150604084013590509250925092565b60008060408385031215610b52578182fd5b610b5b83610a9b565b915060208301358015158114610b6f578182fd5b809150509250929050565b60008060408385031215610b8c578182fd5b610b9583610a9b565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610bee57858101830151858201604001528201610bd2565b81811115610bff5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526019908201527f45524332304361707065643a2063617020657863656564656400000000000000604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273736f6d657468696e672077656e742077726f6e6760601b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610f3757610f37610f8e565b500190565b600082821015610f4e57610f4e610f8e565b500390565b600281046001821680610f6757607f821691505b60208210811415610f8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204b76405178a2c58ae6ff3dedd535f426a992f39cb01047eed1aa91664673e56b64736f6c63430008000033

Deployed Bytecode Sourcemap

17516:1096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8705:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10872:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9825:108::-;;;:::i;:::-;;;;;;;:::i;11523:422::-;;;;;;:::i;:::-;;:::i;9667:93::-;;;:::i;:::-;;;;;;;:::i;12354:215::-;;;;;;:::i;:::-;;:::i;18098:113::-;;;;;;:::i;:::-;;:::i;:::-;;9996:127;;;;;;:::i;:::-;;:::i;2675:148::-;;;:::i;2024:87::-;;;:::i;:::-;;;;;;;:::i;8924:104::-;;;:::i;18219:99::-;;;;;;:::i;:::-;;:::i;13072:377::-;;;;;;:::i;:::-;;:::i;10336:175::-;;;;;;:::i;:::-;;:::i;18324:74::-;;;;;;:::i;:::-;;:::i;10574:151::-;;;;;;:::i;:::-;;:::i;2978:244::-;;;;;;:::i;:::-;;:::i;8705:100::-;8759:13;8792:5;8785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8705:100;:::o;10872:169::-;10955:4;10972:39;10981:12;:10;:12::i;:::-;10995:7;11004:6;10972:8;:39::i;:::-;-1:-1:-1;11029:4:0;10872:169;;;;:::o;9825:108::-;9913:12;;9825:108;:::o;11523:422::-;11629:4;11646:36;11656:6;11664:9;11675:6;11646:9;:36::i;:::-;-1:-1:-1;;;;;11722:19:0;;11695:24;11722:19;;;:11;:19;;;;;11695:24;11742:12;:10;:12::i;:::-;-1:-1:-1;;;;;11722:33:0;-1:-1:-1;;;;;11722:33:0;;;;;;;;;;;;;11695:60;;11794:6;11774:16;:26;;11766:79;;;;-1:-1:-1;;;11766:79:0;;;;;;;:::i;:::-;;;;;;;;;11856:57;11865:6;11873:12;:10;:12::i;:::-;11887:25;11906:6;11887:16;:25;:::i;:::-;11856:8;:57::i;:::-;-1:-1:-1;11933:4:0;;11523:422;-1:-1:-1;;;;11523:422:0:o;9667:93::-;9750:2;9667:93;:::o;12354:215::-;12442:4;12459:80;12468:12;:10;:12::i;:::-;12482:7;12528:10;12491:11;:25;12503:12;:10;:12::i;:::-;-1:-1:-1;;;;;12491:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12491:25:0;;;:34;;;;;;;;;;:47;;;;:::i;18098:113::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;18181:22:::1;18187:7;18196:6;18181:5;:22::i;:::-;18098:113:::0;;:::o;9996:127::-;-1:-1:-1;;;;;10097:18:0;;10070:7;10097:18;;;;;;;;;;;9996:127;;;;:::o;2675:148::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;2766:6:::1;::::0;2745:40:::1;::::0;2782:1:::1;::::0;-1:-1:-1;;;;;2766:6:0::1;::::0;2745:40:::1;::::0;2782:1;;2745:40:::1;2796:6;:19:::0;;-1:-1:-1;;;;;;2796:19:0::1;::::0;;2675:148::o;2024:87::-;2097:6;;-1:-1:-1;;;;;2097:6:0;2024:87;:::o;8924:104::-;8980:13;9013:7;9006:14;;;;;:::i;18219:99::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18288:13:0;;;::::1;;::::0;;;:7:::1;:13;::::0;;;;:22;;-1:-1:-1;;18288:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18219:99::o;13072:377::-;13165:4;13182:24;13209:11;:25;13221:12;:10;:12::i;:::-;-1:-1:-1;;;;;13209:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13209:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13262:35:0;;;;13254:85;;;;-1:-1:-1;;;13254:85:0;;;;;;;:::i;:::-;13350:67;13359:12;:10;:12::i;:::-;13373:7;13382:34;13401:15;13382:16;:34;:::i;13350:67::-;-1:-1:-1;13437:4:0;;13072:377;-1:-1:-1;;;13072:377:0:o;10336:175::-;10422:4;10439:42;10449:12;:10;:12::i;:::-;10463:9;10474:6;10439:9;:42::i;18324:74::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;18379:4:::1;:11:::0;;-1:-1:-1;;;;;;18379:11:0::1;-1:-1:-1::0;;;;;18379:11:0;;;::::1;::::0;;;::::1;::::0;;18324:74::o;10574:151::-;-1:-1:-1;;;;;10690:18:0;;;10663:7;10690:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10574:151::o;2978:244::-;2255:12;:10;:12::i;:::-;-1:-1:-1;;;;;2244:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2244:23:0;;2236:68;;;;-1:-1:-1;;;2236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3067:22:0;::::1;3059:73;;;;-1:-1:-1::0;;;3059:73:0::1;;;;;;;:::i;:::-;3169:6;::::0;3148:38:::1;::::0;-1:-1:-1;;;;;3148:38:0;;::::1;::::0;3169:6:::1;::::0;3148:38:::1;::::0;3169:6:::1;::::0;3148:38:::1;3197:6;:17:::0;;-1:-1:-1;;;;;;3197:17:0::1;-1:-1:-1::0;;;;;3197:17:0;;;::::1;::::0;;;::::1;::::0;;2978:244::o;14825:338::-;-1:-1:-1;;;;;14909:21:0;;14901:65;;;;-1:-1:-1;;;14901:65:0;;;;;;;:::i;:::-;14979:49;15008:1;15012:7;15021:6;14979:20;:49::i;:::-;15057:6;15041:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15074:18:0;;:9;:18;;;;;;;;;;:28;;15096:6;;15074:9;:28;;15096:6;;15074:28;:::i;:::-;;;;-1:-1:-1;;15118:37:0;;-1:-1:-1;;;;;15118:37:0;;;15135:1;;15118:37;;;;15148:6;;15118:37;:::i;:::-;;;;;;;;14825:338;;:::o;597:98::-;677:10;597:98;:::o;16428:346::-;-1:-1:-1;;;;;16530:19:0;;16522:68;;;;-1:-1:-1;;;16522:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16609:21:0;;16601:68;;;;-1:-1:-1;;;16601:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16682:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;16734:32;;;;;16712:6;;16734:32;:::i;:::-;;;;;;;;16428:346;;;:::o;13939:604::-;-1:-1:-1;;;;;14045:20:0;;14037:70;;;;-1:-1:-1;;;14037:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14126:23:0;;14118:71;;;;-1:-1:-1;;;14118:71:0;;;;;;;:::i;:::-;14202:47;14223:6;14231:9;14242:6;14202:20;:47::i;:::-;-1:-1:-1;;;;;14286:17:0;;14262:21;14286:17;;;;;;;;;;;14322:23;;;;14314:74;;;;-1:-1:-1;;;14314:74:0;;;;;;;:::i;:::-;14419:22;14435:6;14419:13;:22;:::i;:::-;-1:-1:-1;;;;;14399:17:0;;;:9;:17;;;;;;;;;;;:42;;;;14452:20;;;;;;;;:30;;14476:6;;14399:9;14452:30;;14476:6;;14452:30;:::i;:::-;;;;;;;;14517:9;-1:-1:-1;;;;;14500:35:0;14509:6;-1:-1:-1;;;;;14500:35:0;;14528:6;14500:35;;;;;;:::i;:::-;;;;;;;;13939:604;;;;:::o;17834:256::-;17993:20;17983:6;17961:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:52;;17953:90;;;;-1:-1:-1;;;17953:90:0;;;;;;;:::i;:::-;18054:28;18066:7;18075:6;18054:11;:28::i;18406:203::-;18523:4;;-1:-1:-1;;;;;18517:10:0;;;18523:4;;18517:10;18514:88;;;-1:-1:-1;;;;;18552:13:0;;;;;;:7;:13;;;;;;;;18544:46;;;;-1:-1:-1;;;18544:46:0;;;;;;;:::i;:::-;18406:203;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:369::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1326:5;1319:13;1312:21;1305:5;1302:32;1292:2;;1353:6;1345;1338:22;1292:2;1381:5;1371:15;;;1107:285;;;;;:::o;1397:266::-;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1575:31;1596:9;1575:31;:::i;:::-;1565:41;1653:2;1638:18;;;;1625:32;;-1:-1:-1;;;1484:179:1:o;1668:203::-;-1:-1:-1;;;;;1832:32:1;;;;1814:51;;1802:2;1787:18;;1769:102::o;1876:187::-;2041:14;;2034:22;2016:41;;2004:2;1989:18;;1971:92::o;2068:603::-;;2209:2;2238;2227:9;2220:21;2270:6;2264:13;2313:6;2308:2;2297:9;2293:18;2286:34;2338:4;2351:140;2365:6;2362:1;2359:13;2351:140;;;2460:14;;;2456:23;;2450:30;2426:17;;;2445:2;2422:26;2415:66;2380:10;;2351:140;;;2509:6;2506:1;2503:13;2500:2;;;2579:4;2574:2;2565:6;2554:9;2550:22;2546:31;2539:45;2500:2;-1:-1:-1;2655:2:1;2634:15;-1:-1:-1;;2630:29:1;2615:45;;;;2662:2;2611:54;;2189:482;-1:-1:-1;;;2189:482:1:o;2676:399::-;2878:2;2860:21;;;2917:2;2897:18;;;2890:30;2956:34;2951:2;2936:18;;2929:62;-1:-1:-1;;;3022:2:1;3007:18;;3000:33;3065:3;3050:19;;2850:225::o;3080:402::-;3282:2;3264:21;;;3321:2;3301:18;;;3294:30;3360:34;3355:2;3340:18;;3333:62;-1:-1:-1;;;3426:2:1;3411:18;;3404:36;3472:3;3457:19;;3254:228::o;3487:398::-;3689:2;3671:21;;;3728:2;3708:18;;;3701:30;3767:34;3762:2;3747:18;;3740:62;-1:-1:-1;;;3833:2:1;3818:18;;3811:32;3875:3;3860:19;;3661:224::o;3890:402::-;4092:2;4074:21;;;4131:2;4111:18;;;4104:30;4170:34;4165:2;4150:18;;4143:62;-1:-1:-1;;;4236:2:1;4221:18;;4214:36;4282:3;4267:19;;4064:228::o;4297:404::-;4499:2;4481:21;;;4538:2;4518:18;;;4511:30;4577:34;4572:2;4557:18;;4550:62;-1:-1:-1;;;4643:2:1;4628:18;;4621:38;4691:3;4676:19;;4471:230::o;4706:356::-;4908:2;4890:21;;;4927:18;;;4920:30;4986:34;4981:2;4966:18;;4959:62;5053:2;5038:18;;4880:182::o;5067:401::-;5269:2;5251:21;;;5308:2;5288:18;;;5281:30;5347:34;5342:2;5327:18;;5320:62;-1:-1:-1;;;5413:2:1;5398:18;;5391:35;5458:3;5443:19;;5241:227::o;5473:349::-;5675:2;5657:21;;;5714:2;5694:18;;;5687:30;5753:27;5748:2;5733:18;;5726:55;5813:2;5798:18;;5647:175::o;5827:400::-;6029:2;6011:21;;;6068:2;6048:18;;;6041:30;6107:34;6102:2;6087:18;;6080:62;-1:-1:-1;;;6173:2:1;6158:18;;6151:34;6217:3;6202:19;;6001:226::o;6232:344::-;6434:2;6416:21;;;6473:2;6453:18;;;6446:30;-1:-1:-1;;;6507:2:1;6492:18;;6485:50;6567:2;6552:18;;6406:170::o;6581:401::-;6783:2;6765:21;;;6822:2;6802:18;;;6795:30;6861:34;6856:2;6841:18;;6834:62;-1:-1:-1;;;6927:2:1;6912:18;;6905:35;6972:3;6957:19;;6755:227::o;6987:355::-;7189:2;7171:21;;;7228:2;7208:18;;;7201:30;7267:33;7262:2;7247:18;;7240:61;7333:2;7318:18;;7161:181::o;7347:177::-;7493:25;;;7481:2;7466:18;;7448:76::o;7529:184::-;7701:4;7689:17;;;;7671:36;;7659:2;7644:18;;7626:87::o;7718:128::-;;7789:1;7785:6;7782:1;7779:13;7776:2;;;7795:18;;:::i;:::-;-1:-1:-1;7831:9:1;;7766:80::o;7851:125::-;;7919:1;7916;7913:8;7910:2;;;7924:18;;:::i;:::-;-1:-1:-1;7961:9:1;;7900:76::o;7981:380::-;8066:1;8056:12;;8113:1;8103:12;;;8124:2;;8178:4;8170:6;8166:17;8156:27;;8124:2;8231;8223:6;8220:14;8200:18;8197:38;8194:2;;;8277:10;8272:3;8268:20;8265:1;8258:31;8312:4;8309:1;8302:15;8340:4;8337:1;8330:15;8194:2;;8036:325;;;:::o;8366:127::-;8427:10;8422:3;8418:20;8415:1;8408:31;8458:4;8455:1;8448:15;8482:4;8479:1;8472:15

Swarm Source

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