ETH Price: $2,308.63 (-0.08%)

Token

German Shepherd Dog (GSD)
 

Overview

Max Total Supply

1,000,000,000,000,000,000 GSD

Holders

27

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
GermanShepherdDog

Compiler Version
v0.8.1+commit.df193b15

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

// File: @openzeppelin/[email protected]/access/Ownable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// File: @openzeppelin/[email protected]/utils/Context.sol
/*
 * @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;
    }
}

/**
 * @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/[email protected]/security/Pausable.sol


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol
/**
 * @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/[email protected]/token/ERC20/extensions/IERC20Metadata.sol
/**
 * @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/[email protected]/token/ERC20/ERC20.sol
/**
 * @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: contract-11d8e46302.sol
contract GermanShepherdDog is ERC20, Pausable, Ownable {
    constructor() ERC20("German Shepherd Dog", "GSD") {
        _mint(msg.sender, 1000000000000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f4765726d616e20536865706865726420446f67000000000000000000000000008152506040518060400160405280600381526020016211d4d160ea1b81525081600390805190602001906200007c9291906200026a565b508051620000929060049060208401906200026a565b50506005805460ff19169055506000620000ab6200013d565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000137336200011062000141565b6200011d90600a620003e2565b6200013190670de0b6b3a7640000620004da565b62000146565b6200054f565b3390565b601290565b6001600160a01b038216620001785760405162461bcd60e51b81526004016200016f906200033a565b60405180910390fd5b62000186600083836200021a565b80600260008282546200019a91906200037a565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c99084906200037a565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200020e90859062000371565b60405180910390a35050565b6200022462000261565b15620002445760405162461bcd60e51b81526004016200016f9062000310565b6200025c8383836200025c60201b620006d51760201c565b505050565b60055460ff1690565b8280546200027890620004fc565b90600052602060002090601f0160209004810192826200029c5760008555620002e7565b82601f10620002b757805160ff1916838001178555620002e7565b82800160010185558215620002e7579182015b82811115620002e7578251825591602001919060010190620002ca565b50620002f5929150620002f9565b5090565b5b80821115620002f55760008155600101620002fa565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b6000821982111562000390576200039062000539565b500190565b80825b6001808611620003a95750620003d9565b818704821115620003be57620003be62000539565b80861615620003cc57918102915b9490941c93800262000398565b94509492505050565b6000620003f660001960ff851684620003fd565b9392505050565b6000826200040e57506001620003f6565b816200041d57506000620003f6565b8160018114620004365760028114620004415762000475565b6001915050620003f6565b60ff84111562000455576200045562000539565b6001841b9150848211156200046e576200046e62000539565b50620003f6565b5060208310610133831016604e8410600b8410161715620004ad575081810a83811115620004a757620004a762000539565b620003f6565b620004bc848484600162000395565b808604821115620004d157620004d162000539565b02949350505050565b6000816000190483118215151615620004f757620004f762000539565b500290565b6002810460018216806200051157607f821691505b602082108114156200053357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e74806200055f6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146101e8578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b146102295761010b565b806370a08231146101b0578063715018a6146101c35780638456cb59146101cb5780638da5cb5b146101d35761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b5780633f4ba83a1461019e5780635c975abb146101a85761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861023c565b6040516101259190610aa0565b60405180910390f35b61014161013c366004610a58565b6102ce565b6040516101259190610a95565b6101566102eb565b6040516101259190610da7565b610141610171366004610a1d565b6102f1565b61017e610391565b6040516101259190610db0565b610141610199366004610a58565b610396565b6101a66103e5565b005b61014161042e565b6101566101be3660046109ca565b610437565b6101a6610456565b6101a66104e5565b6101db61052c565b6040516101259190610a81565b610118610540565b6101416101fe366004610a58565b61054f565b610141610211366004610a58565b6105ca565b6101566102243660046109eb565b6105de565b6101a66102373660046109ca565b610609565b60606003805461024b90610ded565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610ded565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102e26102db6106da565b84846106de565b50600192915050565b60025490565b60006102fe848484610792565b6001600160a01b03841660009081526001602052604081208161031f6106da565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561036b5760405162461bcd60e51b815260040161036290610c5c565b60405180910390fd5b610386856103776106da565b6103818685610dd6565b6106de565b506001949350505050565b601290565b60006102e26103a36106da565b8484600160006103b16106da565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103819190610dbe565b6103ed6106da565b6001600160a01b03166103fe61052c565b6001600160a01b0316146104245760405162461bcd60e51b815260040161036290610ca4565b61042c6108ba565b565b60055460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b61045e6106da565b6001600160a01b031661046f61052c565b6001600160a01b0316146104955760405162461bcd60e51b815260040161036290610ca4565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6104ed6106da565b6001600160a01b03166104fe61052c565b6001600160a01b0316146105245760405162461bcd60e51b815260040161036290610ca4565b61042c610928565b60055461010090046001600160a01b031690565b60606004805461024b90610ded565b6000806001600061055e6106da565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105aa5760405162461bcd60e51b815260040161036290610d62565b6105c06105b56106da565b856103818685610dd6565b5060019392505050565b60006102e26105d76106da565b8484610792565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106116106da565b6001600160a01b031661062261052c565b6001600160a01b0316146106485760405162461bcd60e51b815260040161036290610ca4565b6001600160a01b03811661066e5760405162461bcd60e51b815260040161036290610b64565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b505050565b3390565b6001600160a01b0383166107045760405162461bcd60e51b815260040161036290610d1e565b6001600160a01b03821661072a5760405162461bcd60e51b815260040161036290610baa565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610785908590610da7565b60405180910390a3505050565b6001600160a01b0383166107b85760405162461bcd60e51b815260040161036290610cd9565b6001600160a01b0382166107de5760405162461bcd60e51b815260040161036290610af3565b6107e9838383610983565b6001600160a01b038316600090815260208190526040902054818110156108225760405162461bcd60e51b815260040161036290610bec565b61082c8282610dd6565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610862908490610dbe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ac9190610da7565b60405180910390a350505050565b6108c261042e565b6108de5760405162461bcd60e51b815260040161036290610b36565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109116106da565b60405161091e9190610a81565b60405180910390a1565b61093061042e565b1561094d5760405162461bcd60e51b815260040161036290610c32565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109116106da565b61098b61042e565b156109a85760405162461bcd60e51b815260040161036290610c32565b6106d58383836106d5565b80356001600160a01b038116811461045157600080fd5b6000602082840312156109db578081fd5b6109e4826109b3565b9392505050565b600080604083850312156109fd578081fd5b610a06836109b3565b9150610a14602084016109b3565b90509250929050565b600080600060608486031215610a31578081fd5b610a3a846109b3565b9250610a48602085016109b3565b9150604084013590509250925092565b60008060408385031215610a6a578182fd5b610a73836109b3565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610acc57858101830151858201604001528201610ab0565b81811115610add5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dd157610dd1610e28565b500190565b600082821015610de857610de8610e28565b500390565b600281046001821680610e0157607f821691505b60208210811415610e2257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208c9771cd6229c0ef77a8d7cdcf1039c986e837a1c31ee08772b4cd796eca4e5364736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146101e8578063a457c2d7146101f0578063a9059cbb14610203578063dd62ed3e14610216578063f2fde38b146102295761010b565b806370a08231146101b0578063715018a6146101c35780638456cb59146101cb5780638da5cb5b146101d35761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b5780633f4ba83a1461019e5780635c975abb146101a85761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861023c565b6040516101259190610aa0565b60405180910390f35b61014161013c366004610a58565b6102ce565b6040516101259190610a95565b6101566102eb565b6040516101259190610da7565b610141610171366004610a1d565b6102f1565b61017e610391565b6040516101259190610db0565b610141610199366004610a58565b610396565b6101a66103e5565b005b61014161042e565b6101566101be3660046109ca565b610437565b6101a6610456565b6101a66104e5565b6101db61052c565b6040516101259190610a81565b610118610540565b6101416101fe366004610a58565b61054f565b610141610211366004610a58565b6105ca565b6101566102243660046109eb565b6105de565b6101a66102373660046109ca565b610609565b60606003805461024b90610ded565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610ded565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102e26102db6106da565b84846106de565b50600192915050565b60025490565b60006102fe848484610792565b6001600160a01b03841660009081526001602052604081208161031f6106da565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561036b5760405162461bcd60e51b815260040161036290610c5c565b60405180910390fd5b610386856103776106da565b6103818685610dd6565b6106de565b506001949350505050565b601290565b60006102e26103a36106da565b8484600160006103b16106da565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103819190610dbe565b6103ed6106da565b6001600160a01b03166103fe61052c565b6001600160a01b0316146104245760405162461bcd60e51b815260040161036290610ca4565b61042c6108ba565b565b60055460ff1690565b6001600160a01b0381166000908152602081905260409020545b919050565b61045e6106da565b6001600160a01b031661046f61052c565b6001600160a01b0316146104955760405162461bcd60e51b815260040161036290610ca4565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6104ed6106da565b6001600160a01b03166104fe61052c565b6001600160a01b0316146105245760405162461bcd60e51b815260040161036290610ca4565b61042c610928565b60055461010090046001600160a01b031690565b60606004805461024b90610ded565b6000806001600061055e6106da565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105aa5760405162461bcd60e51b815260040161036290610d62565b6105c06105b56106da565b856103818685610dd6565b5060019392505050565b60006102e26105d76106da565b8484610792565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106116106da565b6001600160a01b031661062261052c565b6001600160a01b0316146106485760405162461bcd60e51b815260040161036290610ca4565b6001600160a01b03811661066e5760405162461bcd60e51b815260040161036290610b64565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b505050565b3390565b6001600160a01b0383166107045760405162461bcd60e51b815260040161036290610d1e565b6001600160a01b03821661072a5760405162461bcd60e51b815260040161036290610baa565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610785908590610da7565b60405180910390a3505050565b6001600160a01b0383166107b85760405162461bcd60e51b815260040161036290610cd9565b6001600160a01b0382166107de5760405162461bcd60e51b815260040161036290610af3565b6107e9838383610983565b6001600160a01b038316600090815260208190526040902054818110156108225760405162461bcd60e51b815260040161036290610bec565b61082c8282610dd6565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610862908490610dbe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ac9190610da7565b60405180910390a350505050565b6108c261042e565b6108de5760405162461bcd60e51b815260040161036290610b36565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6109116106da565b60405161091e9190610a81565b60405180910390a1565b61093061042e565b1561094d5760405162461bcd60e51b815260040161036290610c32565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109116106da565b61098b61042e565b156109a85760405162461bcd60e51b815260040161036290610c32565b6106d58383836106d5565b80356001600160a01b038116811461045157600080fd5b6000602082840312156109db578081fd5b6109e4826109b3565b9392505050565b600080604083850312156109fd578081fd5b610a06836109b3565b9150610a14602084016109b3565b90509250929050565b600080600060608486031215610a31578081fd5b610a3a846109b3565b9250610a48602085016109b3565b9150604084013590509250925092565b60008060408385031215610a6a578182fd5b610a73836109b3565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610acc57858101830151858201604001528201610ab0565b81811115610add5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dd157610dd1610e28565b500190565b600082821015610de857610de8610e28565b500390565b600281046001821680610e0157607f821691505b60208210811415610e2257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212208c9771cd6229c0ef77a8d7cdcf1039c986e837a1c31ee08772b4cd796eca4e5364736f6c63430008010033

Deployed Bytecode Sourcemap

19754:540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10949:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13116:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12069:108::-;;;:::i;:::-;;;;;;;:::i;13767:422::-;;;;;;:::i;:::-;;:::i;11911:93::-;;;:::i;:::-;;;;;;;:::i;14598:215::-;;;;;;:::i;:::-;;:::i;20019:65::-;;;:::i;:::-;;4327:86;;;:::i;12240:127::-;;;;;;:::i;:::-;;:::i;2723:148::-;;;:::i;19950:61::-;;;:::i;2072:87::-;;;:::i;:::-;;;;;;;:::i;11168:104::-;;;:::i;15316:377::-;;;;;;:::i;:::-;;:::i;12580:175::-;;;;;;:::i;:::-;;:::i;12818:151::-;;;;;;:::i;:::-;;:::i;3026:244::-;;;;;;:::i;:::-;;:::i;10949:100::-;11003:13;11036:5;11029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10949:100;:::o;13116:169::-;13199:4;13216:39;13225:12;:10;:12::i;:::-;13239:7;13248:6;13216:8;:39::i;:::-;-1:-1:-1;13273:4:0;13116:169;;;;:::o;12069:108::-;12157:12;;12069:108;:::o;13767:422::-;13873:4;13890:36;13900:6;13908:9;13919:6;13890:9;:36::i;:::-;-1:-1:-1;;;;;13966:19:0;;13939:24;13966:19;;;:11;:19;;;;;13939:24;13986:12;:10;:12::i;:::-;-1:-1:-1;;;;;13966:33:0;-1:-1:-1;;;;;13966:33:0;;;;;;;;;;;;;13939:60;;14038:6;14018:16;:26;;14010:79;;;;-1:-1:-1;;;14010:79:0;;;;;;;:::i;:::-;;;;;;;;;14100:57;14109:6;14117:12;:10;:12::i;:::-;14131:25;14150:6;14131:16;:25;:::i;:::-;14100:8;:57::i;:::-;-1:-1:-1;14177:4:0;;13767:422;-1:-1:-1;;;;13767:422:0:o;11911:93::-;11994:2;11911:93;:::o;14598:215::-;14686:4;14703:80;14712:12;:10;:12::i;:::-;14726:7;14772:10;14735:11;:25;14747:12;:10;:12::i;:::-;-1:-1:-1;;;;;14735:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14735:25:0;;;:34;;;;;;;;;;:47;;;;:::i;20019:65::-;2303:12;:10;:12::i;:::-;-1:-1:-1;;;;;2292:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2292:23:0;;2284:68;;;;-1:-1:-1;;;2284:68:0;;;;;;;:::i;:::-;20066:10:::1;:8;:10::i;:::-;20019:65::o:0;4327:86::-;4398:7;;;;4327:86;:::o;12240:127::-;-1:-1:-1;;;;;12341:18:0;;12314:7;12341:18;;;;;;;;;;;12240:127;;;;:::o;2723:148::-;2303:12;:10;:12::i;:::-;-1:-1:-1;;;;;2292:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2292:23:0;;2284:68;;;;-1:-1:-1;;;2284:68:0;;;;;;;:::i;:::-;2814:6:::1;::::0;2793:40:::1;::::0;2830:1:::1;::::0;2814:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2814:6:0::1;::::0;2793:40:::1;::::0;2830:1;;2793:40:::1;2844:6;:19:::0;;-1:-1:-1;;;;;;2844:19:0::1;::::0;;2723:148::o;19950:61::-;2303:12;:10;:12::i;:::-;-1:-1:-1;;;;;2292:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2292:23:0;;2284:68;;;;-1:-1:-1;;;2284:68:0;;;;;;;:::i;:::-;19995:8:::1;:6;:8::i;2072:87::-:0;2145:6;;;;;-1:-1:-1;;;;;2145:6:0;;2072:87::o;11168:104::-;11224:13;11257:7;11250:14;;;;;:::i;15316:377::-;15409:4;15426:24;15453:11;:25;15465:12;:10;:12::i;:::-;-1:-1:-1;;;;;15453:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15453:25:0;;;:34;;;;;;;;;;;-1:-1:-1;15506:35:0;;;;15498:85;;;;-1:-1:-1;;;15498:85:0;;;;;;;:::i;:::-;15594:67;15603:12;:10;:12::i;:::-;15617:7;15626:34;15645:15;15626:16;:34;:::i;15594:67::-;-1:-1:-1;15681:4:0;;15316:377;-1:-1:-1;;;15316:377:0:o;12580:175::-;12666:4;12683:42;12693:12;:10;:12::i;:::-;12707:9;12718:6;12683:9;:42::i;12818:151::-;-1:-1:-1;;;;;12934:18:0;;;12907:7;12934:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12818:151::o;3026:244::-;2303:12;:10;:12::i;:::-;-1:-1:-1;;;;;2292:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2292:23:0;;2284:68;;;;-1:-1:-1;;;2284:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3115:22:0;::::1;3107:73;;;;-1:-1:-1::0;;;3107:73:0::1;;;;;;;:::i;:::-;3217:6;::::0;3196:38:::1;::::0;-1:-1:-1;;;;;3196:38:0;;::::1;::::0;3217:6:::1;::::0;::::1;;::::0;3196:38:::1;::::0;;;::::1;3245:6;:17:::0;;-1:-1:-1;;;;;3245:17:0;;::::1;;;-1:-1:-1::0;;;;;;3245:17:0;;::::1;::::0;;;::::1;::::0;;3026:244::o;19621:92::-;;;;:::o;716:98::-;796:10;716:98;:::o;18672:346::-;-1:-1:-1;;;;;18774:19:0;;18766:68;;;;-1:-1:-1;;;18766:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18853:21:0;;18845:68;;;;-1:-1:-1;;;18845:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18926:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18978:32;;;;;18956:6;;18978:32;:::i;:::-;;;;;;;;18672:346;;;:::o;16183:604::-;-1:-1:-1;;;;;16289:20:0;;16281:70;;;;-1:-1:-1;;;16281:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16370:23:0;;16362:71;;;;-1:-1:-1;;;16362:71:0;;;;;;;:::i;:::-;16446:47;16467:6;16475:9;16486:6;16446:20;:47::i;:::-;-1:-1:-1;;;;;16530:17:0;;16506:21;16530:17;;;;;;;;;;;16566:23;;;;16558:74;;;;-1:-1:-1;;;16558:74:0;;;;;;;:::i;:::-;16663:22;16679:6;16663:13;:22;:::i;:::-;-1:-1:-1;;;;;16643:17:0;;;:9;:17;;;;;;;;;;;:42;;;;16696:20;;;;;;;;:30;;16720:6;;16643:9;16696:30;;16720:6;;16696:30;:::i;:::-;;;;;;;;16761:9;-1:-1:-1;;;;;16744:35:0;16753:6;-1:-1:-1;;;;;16744:35:0;;16772:6;16744:35;;;;;;:::i;:::-;;;;;;;;16183:604;;;;:::o;5386:120::-;4930:8;:6;:8::i;:::-;4922:41;;;;-1:-1:-1;;;4922:41:0;;;;;;;:::i;:::-;5445:7:::1;:15:::0;;-1:-1:-1;;5445:15:0::1;::::0;;5476:22:::1;5485:12;:10;:12::i;:::-;5476:22;;;;;;:::i;:::-;;;;;;;;5386:120::o:0;5127:118::-;4653:8;:6;:8::i;:::-;4652:9;4644:38;;;;-1:-1:-1;;;4644:38:0;;;;;;;:::i;:::-;5187:7:::1;:14:::0;;-1:-1:-1;;5187:14:0::1;5197:4;5187:14;::::0;;5217:20:::1;5224:12;:10;:12::i;20092:199::-:0;4653:8;:6;:8::i;:::-;4652:9;4644:38;;;;-1:-1:-1;;;4644:38:0;;;;;;;:::i;:::-;20239:44:::1;20266:4;20272:2;20276:6;20239:26;:44::i;14:175:1:-:0;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:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:344::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;-1:-1:-1;;;2981:2:1;2966:18;;2959:50;3041:2;3026:18;;2880:170::o;3055:402::-;3257:2;3239:21;;;3296:2;3276:18;;;3269:30;3335:34;3330:2;3315:18;;3308:62;-1:-1:-1;;;3401:2:1;3386:18;;3379:36;3447:3;3432:19;;3229:228::o;3462:398::-;3664:2;3646:21;;;3703:2;3683:18;;;3676:30;3742:34;3737:2;3722:18;;3715:62;-1:-1:-1;;;3808:2:1;3793:18;;3786:32;3850:3;3835:19;;3636:224::o;3865:402::-;4067:2;4049:21;;;4106:2;4086:18;;;4079:30;4145:34;4140:2;4125:18;;4118:62;-1:-1:-1;;;4211:2:1;4196:18;;4189:36;4257:3;4242:19;;4039:228::o;4272:340::-;4474:2;4456:21;;;4513:2;4493:18;;;4486:30;-1:-1:-1;;;4547:2:1;4532:18;;4525:46;4603:2;4588:18;;4446:166::o;4617:404::-;4819:2;4801:21;;;4858:2;4838:18;;;4831:30;4897:34;4892:2;4877:18;;4870:62;-1:-1:-1;;;4963:2:1;4948:18;;4941:38;5011:3;4996:19;;4791:230::o;5026:356::-;5228:2;5210:21;;;5247:18;;;5240:30;5306:34;5301:2;5286:18;;5279:62;5373:2;5358:18;;5200:182::o;5387:401::-;5589:2;5571:21;;;5628:2;5608:18;;;5601:30;5667:34;5662:2;5647:18;;5640:62;-1:-1:-1;;;5733:2:1;5718:18;;5711:35;5778:3;5763:19;;5561:227::o;5793:400::-;5995:2;5977:21;;;6034:2;6014:18;;;6007:30;6073:34;6068:2;6053:18;;6046:62;-1:-1:-1;;;6139:2:1;6124:18;;6117:34;6183:3;6168:19;;5967:226::o;6198:401::-;6400:2;6382:21;;;6439:2;6419:18;;;6412:30;6478:34;6473:2;6458:18;;6451:62;-1:-1:-1;;;6544:2:1;6529:18;;6522:35;6589:3;6574:19;;6372:227::o;6604:177::-;6750:25;;;6738:2;6723:18;;6705:76::o;6786:184::-;6958:4;6946:17;;;;6928:36;;6916:2;6901:18;;6883:87::o;6975:128::-;;7046:1;7042:6;7039:1;7036:13;7033:2;;;7052:18;;:::i;:::-;-1:-1:-1;7088:9:1;;7023:80::o;7108:125::-;;7176:1;7173;7170:8;7167:2;;;7181:18;;:::i;:::-;-1:-1:-1;7218:9:1;;7157:76::o;7238:380::-;7323:1;7313:12;;7370:1;7360:12;;;7381:2;;7435:4;7427:6;7423:17;7413:27;;7381:2;7488;7480:6;7477:14;7457:18;7454:38;7451:2;;;7534:10;7529:3;7525:20;7522:1;7515:31;7569:4;7566:1;7559:15;7597:4;7594:1;7587:15;7451:2;;7293:325;;;:::o;7623:127::-;7684:10;7679:3;7675:20;7672:1;7665:31;7715:4;7712:1;7705:15;7739:4;7736:1;7729:15

Swarm Source

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