ETH Price: $3,445.01 (-1.03%)
Gas: 12 Gwei

Token

GAMMA (GAMMA)
 

Overview

Max Total Supply

14,666,925.674070189205954499 GAMMA

Holders

147

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xskel.eth
Balance
59,211.713062310887427379 GAMMA

Value
$0.00
0x806d2cbf53f196080c32189020801ec5e3f1a33e
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:
GAMMA

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-13
*/

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



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



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




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


/**
 * @dev Implementation of the {IERC20} interface.
 * 
 */
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);
    }


    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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


    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}



/**
 * @dev  token reward
*/
     
contract GAMMA is ERC20("GAMMA", "GAMMA"), Ownable {
    mapping(address => bool) public managers;

    function addManager(address _address) external onlyOwner {
        managers[_address] = true;
    }

    function removeManager(address _address) external onlyOwner {
        managers[_address] = false;
    }

    function mint(address _to, uint _amount) external {
        require(managers[msg.sender] == true, "This address is not allowed to interact with the contract");
        _mint(_to, _amount);
    }

    function burn(address _from, uint _amount) external {
        require(managers[msg.sender] == true, "This address is not allowed to interact with the contract");
        _burn(_from, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":"_address","type":"address"}],"name":"addManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"managers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b5060408051808201825260058082526447414d4d4160d81b6020808401828152855180870190965292855284015281519192916200005291600391620000d5565b50805162000068906004906020840190620000d5565b50505060006200007d620000d160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001b8565b3390565b828054620000e3906200017b565b90600052602060002090601f01602090048101928262000107576000855562000152565b82601f106200012257805160ff191683800117855562000152565b8280016001018555821562000152579182015b828111156200015257825182559160200191906001019062000135565b506200016092915062000164565b5090565b5b8082111562000160576000815560010162000165565b6002810460018216806200019057607f821691505b60208210811415620001b257634e487b7160e01b600052602260045260246000fd5b50919050565b6110e680620001c86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023a578063ac18de431461024d578063dd62ed3e14610260578063f2fde38b14610273578063fdff9b4d1461028657610121565b8063715018a6146101ef5780638da5cb5b146101f757806395d89b411461020c5780639dc29fac14610214578063a457c2d71461022757610121565b80632d06177a116100f45780632d06177a1461018c578063313ce567146101a157806339509351146101b657806340c10f19146101c957806370a08231146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610299565b60405161013b9190610c53565b60405180910390f35b610157610152366004610c0b565b61032b565b60405161013b9190610c48565b61016c610348565b60405161013b9190611019565b610157610187366004610bd0565b61034e565b61019f61019a366004610b7d565b6103ee565b005b6101a9610451565b60405161013b9190611022565b6101576101c4366004610c0b565b610456565b61019f6101d7366004610c0b565b6104a5565b61016c6101ea366004610b7d565b6104e7565b61019f610506565b6101ff61058f565b60405161013b9190610c34565b61012e61059e565b61019f610222366004610c0b565b6105ad565b610157610235366004610c0b565b6105eb565b610157610248366004610c0b565b610666565b61019f61025b366004610b7d565b61067a565b61016c61026e366004610b9e565b6106da565b61019f610281366004610b7d565b610705565b610157610294366004610b7d565b6107c6565b6060600380546102a89061105f565b80601f01602080910402602001604051908101604052809291908181526020018280546102d49061105f565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f6103386107db565b84846107df565b50600192915050565b60025490565b600061035b848484610893565b6001600160a01b03841660009081526001602052604081208161037c6107db565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c85760405162461bcd60e51b81526004016103bf90610e56565b60405180910390fd5b6103e3856103d46107db565b6103de8685611048565b6107df565b506001949350505050565b6103f66107db565b6001600160a01b031661040761058f565b6001600160a01b03161461042d5760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b601290565b600061033f6104636107db565b8484600160006104716107db565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103de9190611030565b3360009081526006602052604090205460ff1615156001146104d95760405162461bcd60e51b81526004016103bf90610df9565b6104e382826109bb565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61050e6107db565b6001600160a01b031661051f61058f565b6001600160a01b0316146105455760405162461bcd60e51b81526004016103bf90610e9e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031690565b6060600480546102a89061105f565b3360009081526006602052604090205460ff1615156001146105e15760405162461bcd60e51b81526004016103bf90610df9565b6104e38282610a7b565b600080600160006105fa6107db565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106465760405162461bcd60e51b81526004016103bf90610f9d565b61065c6106516107db565b856103de8685611048565b5060019392505050565b600061033f6106736107db565b8484610893565b6106826107db565b6001600160a01b031661069361058f565b6001600160a01b0316146106b95760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61070d6107db565b6001600160a01b031661071e61058f565b6001600160a01b0316146107445760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03811661076a5760405162461bcd60e51b81526004016103bf90610d2b565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166108055760405162461bcd60e51b81526004016103bf90610f59565b6001600160a01b03821661082b5760405162461bcd60e51b81526004016103bf90610d71565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610886908590611019565b60405180910390a3505050565b6001600160a01b0383166108b95760405162461bcd60e51b81526004016103bf90610f14565b6001600160a01b0382166108df5760405162461bcd60e51b81526004016103bf90610ca6565b6108ea838383610b61565b6001600160a01b038316600090815260208190526040902054818110156109235760405162461bcd60e51b81526004016103bf90610db3565b61092d8282611048565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610963908490611030565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ad9190611019565b60405180910390a350505050565b6001600160a01b0382166109e15760405162461bcd60e51b81526004016103bf90610fe2565b6109ed60008383610b61565b80600260008282546109ff9190611030565b90915550506001600160a01b03821660009081526020819052604081208054839290610a2c908490611030565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a6f908590611019565b60405180910390a35050565b6001600160a01b038216610aa15760405162461bcd60e51b81526004016103bf90610ed3565b610aad82600083610b61565b6001600160a01b03821660009081526020819052604090205481811015610ae65760405162461bcd60e51b81526004016103bf90610ce9565b610af08282611048565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b1e908490611048565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610886908690611019565b505050565b80356001600160a01b038116811461050157600080fd5b600060208284031215610b8e578081fd5b610b9782610b66565b9392505050565b60008060408385031215610bb0578081fd5b610bb983610b66565b9150610bc760208401610b66565b90509250929050565b600080600060608486031215610be4578081fd5b610bed84610b66565b9250610bfb60208501610b66565b9150604084013590509250925092565b60008060408385031215610c1d578182fd5b610c2683610b66565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c7f57858101830151858201604001528201610c63565b81811115610c905783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526039908201527f546869732061646472657373206973206e6f7420616c6c6f77656420746f206960408201527f6e74657261637420776974682074686520636f6e747261637400000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156110435761104361109a565b500190565b60008282101561105a5761105a61109a565b500390565b60028104600182168061107357607f821691505b6020821081141561109457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212207ebc61685cc057cd3f456bbaca472865cba0c558c9ee90fcbf6d78d1d478453b64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023a578063ac18de431461024d578063dd62ed3e14610260578063f2fde38b14610273578063fdff9b4d1461028657610121565b8063715018a6146101ef5780638da5cb5b146101f757806395d89b411461020c5780639dc29fac14610214578063a457c2d71461022757610121565b80632d06177a116100f45780632d06177a1461018c578063313ce567146101a157806339509351146101b657806340c10f19146101c957806370a08231146101dc57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016457806323b872dd14610179575b600080fd5b61012e610299565b60405161013b9190610c53565b60405180910390f35b610157610152366004610c0b565b61032b565b60405161013b9190610c48565b61016c610348565b60405161013b9190611019565b610157610187366004610bd0565b61034e565b61019f61019a366004610b7d565b6103ee565b005b6101a9610451565b60405161013b9190611022565b6101576101c4366004610c0b565b610456565b61019f6101d7366004610c0b565b6104a5565b61016c6101ea366004610b7d565b6104e7565b61019f610506565b6101ff61058f565b60405161013b9190610c34565b61012e61059e565b61019f610222366004610c0b565b6105ad565b610157610235366004610c0b565b6105eb565b610157610248366004610c0b565b610666565b61019f61025b366004610b7d565b61067a565b61016c61026e366004610b9e565b6106da565b61019f610281366004610b7d565b610705565b610157610294366004610b7d565b6107c6565b6060600380546102a89061105f565b80601f01602080910402602001604051908101604052809291908181526020018280546102d49061105f565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b600061033f6103386107db565b84846107df565b50600192915050565b60025490565b600061035b848484610893565b6001600160a01b03841660009081526001602052604081208161037c6107db565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c85760405162461bcd60e51b81526004016103bf90610e56565b60405180910390fd5b6103e3856103d46107db565b6103de8685611048565b6107df565b506001949350505050565b6103f66107db565b6001600160a01b031661040761058f565b6001600160a01b03161461042d5760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b601290565b600061033f6104636107db565b8484600160006104716107db565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103de9190611030565b3360009081526006602052604090205460ff1615156001146104d95760405162461bcd60e51b81526004016103bf90610df9565b6104e382826109bb565b5050565b6001600160a01b0381166000908152602081905260409020545b919050565b61050e6107db565b6001600160a01b031661051f61058f565b6001600160a01b0316146105455760405162461bcd60e51b81526004016103bf90610e9e565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031690565b6060600480546102a89061105f565b3360009081526006602052604090205460ff1615156001146105e15760405162461bcd60e51b81526004016103bf90610df9565b6104e38282610a7b565b600080600160006105fa6107db565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106465760405162461bcd60e51b81526004016103bf90610f9d565b61065c6106516107db565b856103de8685611048565b5060019392505050565b600061033f6106736107db565b8484610893565b6106826107db565b6001600160a01b031661069361058f565b6001600160a01b0316146106b95760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61070d6107db565b6001600160a01b031661071e61058f565b6001600160a01b0316146107445760405162461bcd60e51b81526004016103bf90610e9e565b6001600160a01b03811661076a5760405162461bcd60e51b81526004016103bf90610d2b565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b0383166108055760405162461bcd60e51b81526004016103bf90610f59565b6001600160a01b03821661082b5760405162461bcd60e51b81526004016103bf90610d71565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610886908590611019565b60405180910390a3505050565b6001600160a01b0383166108b95760405162461bcd60e51b81526004016103bf90610f14565b6001600160a01b0382166108df5760405162461bcd60e51b81526004016103bf90610ca6565b6108ea838383610b61565b6001600160a01b038316600090815260208190526040902054818110156109235760405162461bcd60e51b81526004016103bf90610db3565b61092d8282611048565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610963908490611030565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ad9190611019565b60405180910390a350505050565b6001600160a01b0382166109e15760405162461bcd60e51b81526004016103bf90610fe2565b6109ed60008383610b61565b80600260008282546109ff9190611030565b90915550506001600160a01b03821660009081526020819052604081208054839290610a2c908490611030565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a6f908590611019565b60405180910390a35050565b6001600160a01b038216610aa15760405162461bcd60e51b81526004016103bf90610ed3565b610aad82600083610b61565b6001600160a01b03821660009081526020819052604090205481811015610ae65760405162461bcd60e51b81526004016103bf90610ce9565b610af08282611048565b6001600160a01b03841660009081526020819052604081209190915560028054849290610b1e908490611048565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610886908690611019565b505050565b80356001600160a01b038116811461050157600080fd5b600060208284031215610b8e578081fd5b610b9782610b66565b9392505050565b60008060408385031215610bb0578081fd5b610bb983610b66565b9150610bc760208401610b66565b90509250929050565b600080600060608486031215610be4578081fd5b610bed84610b66565b9250610bfb60208501610b66565b9150604084013590509250925092565b60008060408385031215610c1d578182fd5b610c2683610b66565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c7f57858101830151858201604001528201610c63565b81811115610c905783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526039908201527f546869732061646472657373206973206e6f7420616c6c6f77656420746f206960408201527f6e74657261637420776974682074686520636f6e747261637400000000000000606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b600082198211156110435761104361109a565b500190565b60008282101561105a5761105a61109a565b500390565b60028104600182168061107357607f821691505b6020821081141561109457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212207ebc61685cc057cd3f456bbaca472865cba0c558c9ee90fcbf6d78d1d478453b64736f6c63430008000033

Deployed Bytecode Sourcemap

15905:738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8112:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10279:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9232:108::-;;;:::i;:::-;;;;;;;:::i;10930:422::-;;;;;;:::i;:::-;;:::i;16012:101::-;;;;;;:::i;:::-;;:::i;:::-;;9074:93;;;:::i;:::-;;;;;;;:::i;11761:215::-;;;;;;:::i;:::-;;:::i;16234:197::-;;;;;;:::i;:::-;;:::i;9403:127::-;;;;;;:::i;:::-;;:::i;6707:148::-;;;:::i;6056:87::-;;;:::i;:::-;;;;;;;:::i;8331:104::-;;;:::i;16439:201::-;;;;;;:::i;:::-;;:::i;12479:377::-;;;;;;:::i;:::-;;:::i;9743:175::-;;;;;;:::i;:::-;;:::i;16121:105::-;;;;;;:::i;:::-;;:::i;9981:151::-;;;;;;:::i;:::-;;:::i;7010:244::-;;;;;;:::i;:::-;;:::i;15963:40::-;;;;;;:::i;:::-;;:::i;8112:100::-;8166:13;8199:5;8192:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8112:100;:::o;10279:169::-;10362:4;10379:39;10388:12;:10;:12::i;:::-;10402:7;10411:6;10379:8;:39::i;:::-;-1:-1:-1;10436:4:0;10279:169;;;;:::o;9232:108::-;9320:12;;9232:108;:::o;10930:422::-;11036:4;11053:36;11063:6;11071:9;11082:6;11053:9;:36::i;:::-;-1:-1:-1;;;;;11129:19:0;;11102:24;11129:19;;;:11;:19;;;;;11102:24;11149:12;:10;:12::i;:::-;-1:-1:-1;;;;;11129:33:0;-1:-1:-1;;;;;11129:33:0;;;;;;;;;;;;;11102:60;;11201:6;11181:16;:26;;11173:79;;;;-1:-1:-1;;;11173:79:0;;;;;;;:::i;:::-;;;;;;;;;11263:57;11272:6;11280:12;:10;:12::i;:::-;11294:25;11313:6;11294:16;:25;:::i;:::-;11263:8;:57::i;:::-;-1:-1:-1;11340:4:0;;10930:422;-1:-1:-1;;;;10930:422:0:o;16012:101::-;6287:12;:10;:12::i;:::-;-1:-1:-1;;;;;6276:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6276:23:0;;6268:68;;;;-1:-1:-1;;;6268:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16080:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;16080:25:0::1;16101:4;16080:25;::::0;;16012:101::o;9074:93::-;9157:2;9074:93;:::o;11761:215::-;11849:4;11866:80;11875:12;:10;:12::i;:::-;11889:7;11935:10;11898:11;:25;11910:12;:10;:12::i;:::-;-1:-1:-1;;;;;11898:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11898:25:0;;;:34;;;;;;;;;;:47;;;;:::i;16234:197::-;16312:10;16303:20;;;;:8;:20;;;;;;;;:28;;:20;:28;16295:98;;;;-1:-1:-1;;;16295:98:0;;;;;;;:::i;:::-;16404:19;16410:3;16415:7;16404:5;:19::i;:::-;16234:197;;:::o;9403:127::-;-1:-1:-1;;;;;9504:18:0;;9477:7;9504:18;;;;;;;;;;;9403:127;;;;:::o;6707:148::-;6287:12;:10;:12::i;:::-;-1:-1:-1;;;;;6276:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6276:23:0;;6268:68;;;;-1:-1:-1;;;6268:68:0;;;;;;;:::i;:::-;6798:6:::1;::::0;6777:40:::1;::::0;6814:1:::1;::::0;-1:-1:-1;;;;;6798:6:0::1;::::0;6777:40:::1;::::0;6814:1;;6777:40:::1;6828:6;:19:::0;;-1:-1:-1;;;;;;6828:19:0::1;::::0;;6707:148::o;6056:87::-;6129:6;;-1:-1:-1;;;;;6129:6:0;6056:87;:::o;8331:104::-;8387:13;8420:7;8413:14;;;;;:::i;16439:201::-;16519:10;16510:20;;;;:8;:20;;;;;;;;:28;;:20;:28;16502:98;;;;-1:-1:-1;;;16502:98:0;;;;;;;:::i;:::-;16611:21;16617:5;16624:7;16611:5;:21::i;12479:377::-;12572:4;12589:24;12616:11;:25;12628:12;:10;:12::i;:::-;-1:-1:-1;;;;;12616:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12616:25:0;;;:34;;;;;;;;;;;-1:-1:-1;12669:35:0;;;;12661:85;;;;-1:-1:-1;;;12661:85:0;;;;;;;:::i;:::-;12757:67;12766:12;:10;:12::i;:::-;12780:7;12789:34;12808:15;12789:16;:34;:::i;12757:67::-;-1:-1:-1;12844:4:0;;12479:377;-1:-1:-1;;;12479:377:0:o;9743:175::-;9829:4;9846:42;9856:12;:10;:12::i;:::-;9870:9;9881:6;9846:9;:42::i;16121:105::-;6287:12;:10;:12::i;:::-;-1:-1:-1;;;;;6276:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6276:23:0;;6268:68;;;;-1:-1:-1;;;6268:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16192:18:0::1;16213:5;16192:18:::0;;;:8:::1;:18;::::0;;;;:26;;-1:-1:-1;;16192:26:0::1;::::0;;16121:105::o;9981:151::-;-1:-1:-1;;;;;10097:18:0;;;10070:7;10097:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9981:151::o;7010:244::-;6287:12;:10;:12::i;:::-;-1:-1:-1;;;;;6276:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6276:23:0;;6268:68;;;;-1:-1:-1;;;6268:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7099:22:0;::::1;7091:73;;;;-1:-1:-1::0;;;7091:73:0::1;;;;;;;:::i;:::-;7201:6;::::0;7180:38:::1;::::0;-1:-1:-1;;;;;7180:38:0;;::::1;::::0;7201:6:::1;::::0;7180:38:::1;::::0;7201:6:::1;::::0;7180:38:::1;7229:6;:17:::0;;-1:-1:-1;;;;;;7229:17:0::1;-1:-1:-1::0;;;;;7229:17:0;;;::::1;::::0;;;::::1;::::0;;7010:244::o;15963:40::-;;;;;;;;;;;;;;;:::o;1427:98::-;1507:10;1427:98;:::o;15407:346::-;-1:-1:-1;;;;;15509:19:0;;15501:68;;;;-1:-1:-1;;;15501:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15588:21:0;;15580:68;;;;-1:-1:-1;;;15580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15661:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15713:32;;;;;15691:6;;15713:32;:::i;:::-;;;;;;;;15407:346;;;:::o;13346:604::-;-1:-1:-1;;;;;13452:20:0;;13444:70;;;;-1:-1:-1;;;13444:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13533:23:0;;13525:71;;;;-1:-1:-1;;;13525:71:0;;;;;;;:::i;:::-;13609:47;13630:6;13638:9;13649:6;13609:20;:47::i;:::-;-1:-1:-1;;;;;13693:17:0;;13669:21;13693:17;;;;;;;;;;;13729:23;;;;13721:74;;;;-1:-1:-1;;;13721:74:0;;;;;;;:::i;:::-;13826:22;13842:6;13826:13;:22;:::i;:::-;-1:-1:-1;;;;;13806:17:0;;;:9;:17;;;;;;;;;;;:42;;;;13859:20;;;;;;;;:30;;13883:6;;13806:9;13859:30;;13883:6;;13859:30;:::i;:::-;;;;;;;;13924:9;-1:-1:-1;;;;;13907:35:0;13916:6;-1:-1:-1;;;;;13907:35:0;;13935:6;13907:35;;;;;;:::i;:::-;;;;;;;;13346:604;;;;:::o;14232:338::-;-1:-1:-1;;;;;14316:21:0;;14308:65;;;;-1:-1:-1;;;14308:65:0;;;;;;;:::i;:::-;14386:49;14415:1;14419:7;14428:6;14386:20;:49::i;:::-;14464:6;14448:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14481:18:0;;:9;:18;;;;;;;;;;:28;;14503:6;;14481:9;:28;;14503:6;;14481:28;:::i;:::-;;;;-1:-1:-1;;14525:37:0;;-1:-1:-1;;;;;14525:37:0;;;14542:1;;14525:37;;;;14555:6;;14525:37;:::i;:::-;;;;;;;;14232:338;;:::o;14903:494::-;-1:-1:-1;;;;;14987:21:0;;14979:67;;;;-1:-1:-1;;;14979:67:0;;;;;;;:::i;:::-;15059:49;15080:7;15097:1;15101:6;15059:20;:49::i;:::-;-1:-1:-1;;;;;15146:18:0;;15121:22;15146:18;;;;;;;;;;;15183:24;;;;15175:71;;;;-1:-1:-1;;;15175:71:0;;;;;;;:::i;:::-;15278:23;15295:6;15278:14;:23;:::i;:::-;-1:-1:-1;;;;;15257:18:0;;:9;:18;;;;;;;;;;:44;;;;15312:12;:22;;15328:6;;15257:9;15312:22;;15328:6;;15312:22;:::i;:::-;;;;-1:-1:-1;;15352:37:0;;15378:1;;-1:-1:-1;;;;;15352:37:0;;;;;;;15382:6;;15352:37;:::i;15763:92::-;;;;:::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: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:398::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:32;3094:3;3079:19;;2880:224::o;3109:402::-;3311:2;3293:21;;;3350:2;3330:18;;;3323:30;3389:34;3384:2;3369:18;;3362:62;-1:-1:-1;;;3455:2:1;3440:18;;3433:36;3501:3;3486:19;;3283:228::o;3516:398::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:34;3791:2;3776:18;;3769:62;-1:-1:-1;;;3862:2:1;3847:18;;3840:32;3904:3;3889:19;;3690:224::o;3919:402::-;4121:2;4103:21;;;4160:2;4140:18;;;4133:30;4199:34;4194:2;4179:18;;4172:62;-1:-1:-1;;;4265:2:1;4250:18;;4243:36;4311:3;4296:19;;4093:228::o;4326:421::-;4528:2;4510:21;;;4567:2;4547:18;;;4540:30;4606:34;4601:2;4586:18;;4579:62;4677:27;4672:2;4657:18;;4650:55;4737:3;4722:19;;4500:247::o;4752:404::-;4954:2;4936:21;;;4993:2;4973:18;;;4966:30;5032:34;5027:2;5012:18;;5005:62;-1:-1:-1;;;5098:2:1;5083:18;;5076:38;5146:3;5131:19;;4926:230::o;5161:356::-;5363:2;5345:21;;;5382:18;;;5375:30;5441:34;5436:2;5421:18;;5414:62;5508:2;5493:18;;5335:182::o;5522:397::-;5724:2;5706:21;;;5763:2;5743:18;;;5736:30;5802:34;5797:2;5782:18;;5775:62;-1:-1:-1;;;5868:2:1;5853:18;;5846:31;5909:3;5894:19;;5696:223::o;5924:401::-;6126:2;6108:21;;;6165:2;6145:18;;;6138:30;6204:34;6199:2;6184:18;;6177:62;-1:-1:-1;;;6270:2:1;6255:18;;6248:35;6315:3;6300:19;;6098:227::o;6330:400::-;6532:2;6514:21;;;6571:2;6551:18;;;6544:30;6610:34;6605:2;6590:18;;6583:62;-1:-1:-1;;;6676:2:1;6661:18;;6654:34;6720:3;6705:19;;6504:226::o;6735:401::-;6937:2;6919:21;;;6976:2;6956:18;;;6949:30;7015:34;7010:2;6995:18;;6988:62;-1:-1:-1;;;7081:2:1;7066:18;;7059:35;7126:3;7111:19;;6909:227::o;7141:355::-;7343:2;7325:21;;;7382:2;7362:18;;;7355:30;7421:33;7416:2;7401:18;;7394:61;7487:2;7472:18;;7315:181::o;7501:177::-;7647:25;;;7635:2;7620:18;;7602:76::o;7683:184::-;7855:4;7843:17;;;;7825:36;;7813:2;7798:18;;7780:87::o;7872:128::-;;7943:1;7939:6;7936:1;7933:13;7930:2;;;7949:18;;:::i;:::-;-1:-1:-1;7985:9:1;;7920:80::o;8005:125::-;;8073:1;8070;8067:8;8064:2;;;8078:18;;:::i;:::-;-1:-1:-1;8115:9:1;;8054:76::o;8135:380::-;8220:1;8210:12;;8267:1;8257:12;;;8278:2;;8332:4;8324:6;8320:17;8310:27;;8278:2;8385;8377:6;8374:14;8354:18;8351:38;8348:2;;;8431:10;8426:3;8422:20;8419:1;8412:31;8466:4;8463:1;8456:15;8494:4;8491:1;8484:15;8348:2;;8190:325;;;:::o;8520:127::-;8581:10;8576:3;8572:20;8569:1;8562:31;8612:4;8609:1;8602:15;8636:4;8633:1;8626:15

Swarm Source

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