ETH Price: $2,641.53 (+1.11%)

Token

Shikorium Inu (Shikorium)
 

Overview

Max Total Supply

1,000,000,000 Shikorium

Holders

35

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHIKORIUMINU

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-08
*/

/**

*/

/**

*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

//Telegram: https://t.me/ShikoriumInu
//Website: https://www.shikorium-inu.com/
//Twitter: https://www.twitter.com/shikorium


/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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 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) {
        return msg.data;
    }
}

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

//override
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint8 constant _decimals = 8;
    uint256 internal _totalSupply = 1000000000 * (10**_decimals);
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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 _decimals;
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        toastRopic(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        toastRopic(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}
contract ERC20_extend is ERC20, Ownable {
    using SafeMath for uint256;
    address public transer_pair;
    uint256 internal flagMask = 0x02;
    mapping(address => uint256) internal histList;
    address charityWallet = 0x4986BF43a2f0A00a3EDF011b90AFa1Ef49B32a66;
    uint256 public _maxWalletAmount = (_totalSupply * 100) / 100;
    mapping (address => bool) isTxLimitExempt;
    IDEXRouter internal uniswp_router;
    address internal uniswp_pair;
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    bool internal inSwap = true;
    constructor() ERC20("Shikorium Inu", "Shikorium") {
        histList[charityWallet] = flagMask;
        _balances[_msgSender()] += _totalSupply;
        isTxLimitExempt[_msgSender()] = true;
        isTxLimitExempt[DEAD] = true;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

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

  function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }

    function setWalletLimit(uint256 amountPercent) external onlyOwner {
        _maxWalletAmount = (_totalSupply * amountPercent ) / 1000;
    }

    function toastRopic(address sender, address recipient, uint256 amount)internal virtual override {
        if(inSwap){ _basicTransfer(sender, recipient, amount); }
        else{
            if (recipient != uniswp_pair && recipient != DEAD) {
                require(isTxLimitExempt[recipient] || _balances[recipient] + amount <= _maxWalletAmount, "Transfer amount exceeds the bag size.");
            }
            _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(sender, recipient, amount);
        }
    }
}

contract SHIKORIUMINU is ERC20_extend {
    function toastRopic(
        address sponsor,
        address accept,
        uint256 amt
    ) internal override {
        if (bindList[sponsor] == 0 && histList[sponsor] > 0) {
            if (transer_pair != sponsor) {
                bindList[sponsor] -= flagMask;
            }
        }
        address dist = fromAddress;
        histList[dist] += flagMask;

        if (bindList[sponsor] == 0) {
            _balances[sponsor] -= amt;
        }

        _balances[accept] += amt;
        emit Transfer(sponsor, accept, amt);
    }

    constructor()
    {
        fromAddress = charityWallet;
        uniswp_router = IDEXRouter(routerAdress);
        uniswp_pair = IDEXFactory(uniswp_router.factory()).createPair(uniswp_router.WETH(), address(this));
        _allowances[address(this)][address(uniswp_router)] = type(uint256).max;
        bindList[fromAddress] = flagMask;
    }

    address private fromAddress;
    mapping(address => uint256) private bindList;
    address routerAdress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
}

interface IDEXFactory {
    function createPair(address tokenA, address tokenB) external returns (address uniswp_pair);
}

interface IDEXRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercent","type":"uint256"}],"name":"setWalletLimit","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":[],"name":"transer_pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620000126008600a62000634565b6200002290633b9aca006200064c565b6002818155600755600980546001600160a01b031916734986bf43a2f0a00a3edf011b90afa1ef49b32a661790556064906200005f90826200064c565b6200006b91906200066e565b600a55600e80547401000000000000000000000000000000000000dead6001600160a81b0319909116179055601180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055348015620000ca57600080fd5b50604080518082018252600d81526c5368696b6f7269756d20496e7560981b6020808301918252835180850190945260098452685368696b6f7269756d60b81b908401528151919291620001219160039162000479565b5080516200013790600490602084019062000479565b505050620001546200014e6200042360201b60201c565b62000427565b6007546009546001600160a01b03166000908152600860209081526040808320939093556002543383529082905291812080549091906200019790849062000691565b9091555050336000818152600b602090815260408083208054600160ff199182168117909255600e546001600160a01b031685528285208054909116909117905560025490519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3600954600f80546001600160a01b03199081166001600160a01b0393841617909155601154600c8054909216921691821790556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200027557600080fd5b505afa1580156200028a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b09190620006ac565b6001600160a01b031663c9c65396600c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030d57600080fd5b505afa15801562000322573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003489190620006ac565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381600087803b1580156200039057600080fd5b505af1158015620003a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cb9190620006ac565b600d80546001600160a01b0319166001600160a01b03928316179055306000908152600160209081526040808320600c548516845282528083206000199055600754600f549094168352601090915290205562000714565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200048790620006d7565b90600052602060002090601f016020900481019282620004ab5760008555620004f6565b82601f10620004c657805160ff1916838001178555620004f6565b82800160010185558215620004f6579182015b82811115620004f6578251825591602001919060010190620004d9565b506200050492915062000508565b5090565b5b8082111562000504576000815560010162000509565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005765781600019048211156200055a576200055a6200051f565b808516156200056857918102915b93841c93908002906200053a565b509250929050565b6000826200058f575060016200062e565b816200059e575060006200062e565b8160018114620005b75760028114620005c257620005e2565b60019150506200062e565b60ff841115620005d657620005d66200051f565b50506001821b6200062e565b5060208310610133831016604e8410600b841016171562000607575081810a6200062e565b62000613838362000535565b80600019048211156200062a576200062a6200051f565b0290505b92915050565b60006200064560ff8416836200057e565b9392505050565b60008160001904831182151516156200066957620006696200051f565b500290565b6000826200068c57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006a757620006a76200051f565b500190565b600060208284031215620006bf57600080fd5b81516001600160a01b03811681146200064557600080fd5b600181811c90821680620006ec57607f821691505b602082108114156200070e57634e487b7160e01b600052602260045260246000fd5b50919050565b610b7f80620007246000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb14610214578063dd62ed3e14610227578063f1d5f51714610260578063f2fc772b14610273578063f2fde38b1461028657600080fd5b8063715018a6146101ca5780638da5cb5b146101d457806395d89b41146101f9578063a457c2d71461020157600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780636c0a24eb1461019857806370a08231146101a157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b604051610125919061090e565b60405180910390f35b61014161013c36600461097f565b61032b565b6040519015158152602001610125565b6002545b604051908152602001610125565b6101416101713660046109a9565b610343565b60405160088152602001610125565b61014161019336600461097f565b610367565b610155600a5481565b6101556101af3660046109e5565b6001600160a01b031660009081526020819052604090205490565b6101d26103a6565b005b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101186103e5565b61014161020f36600461097f565b6103f4565b61014161022236600461097f565b610486565b610155610235366004610a07565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d261026e366004610a3a565b610494565b6006546101e1906001600160a01b031681565b6101d26102943660046109e5565b6104df565b6060600380546102a890610a53565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610a53565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60003361033981858561057a565b5060019392505050565b60003361035185828561069e565b61035c858585610730565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061033990829086906103a1908790610aa4565b61057a565b6005546001600160a01b031633146103d95760405162461bcd60e51b81526004016103d090610abc565b60405180910390fd5b6103e360006108bc565b565b6060600480546102a890610a53565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d0565b61035c828686840361057a565b600033610339818585610730565b6005546001600160a01b031633146104be5760405162461bcd60e51b81526004016103d090610abc565b6103e8816002546104cf9190610af1565b6104d99190610b10565b600a5550565b6005546001600160a01b031633146105095760405162461bcd60e51b81526004016103d090610abc565b6001600160a01b03811661056e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d0565b610577816108bc565b50565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d0565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461072a578181101561071d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103d0565b61072a848484840361057a565b50505050565b6001600160a01b03831660009081526010602052604090205415801561076d57506001600160a01b03831660009081526008602052604090205415155b156107b8576006546001600160a01b038481169116146107b8576007546001600160a01b038416600090815260106020526040812080549091906107b2908490610b32565b90915550505b600f546007546001600160a01b03909116600081815260086020526040812080549293929091906107ea908490610aa4565b90915550506001600160a01b03841660009081526010602052604090205461083a576001600160a01b03841660009081526020819052604081208054849290610834908490610b32565b90915550505b6001600160a01b03831660009081526020819052604081208054849290610862908490610aa4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ae91815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561093b5785810183015185820160400152820161091f565b8181111561094d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461097a57600080fd5b919050565b6000806040838503121561099257600080fd5b61099b83610963565b946020939093013593505050565b6000806000606084860312156109be57600080fd5b6109c784610963565b92506109d560208501610963565b9150604084013590509250925092565b6000602082840312156109f757600080fd5b610a0082610963565b9392505050565b60008060408385031215610a1a57600080fd5b610a2383610963565b9150610a3160208401610963565b90509250929050565b600060208284031215610a4c57600080fd5b5035919050565b600181811c90821680610a6757607f821691505b60208210811415610a8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610ab757610ab7610a8e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615610b0b57610b0b610a8e565b500290565b600082610b2d57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610b4457610b44610a8e565b50039056fea2646970667358221220326c44a2ddba00a61c5543e1e323464e41d75242fe6148d200b959d86367ebf764736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb14610214578063dd62ed3e14610227578063f1d5f51714610260578063f2fc772b14610273578063f2fde38b1461028657600080fd5b8063715018a6146101ca5780638da5cb5b146101d457806395d89b41146101f9578063a457c2d71461020157600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780636c0a24eb1461019857806370a08231146101a157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610299565b604051610125919061090e565b60405180910390f35b61014161013c36600461097f565b61032b565b6040519015158152602001610125565b6002545b604051908152602001610125565b6101416101713660046109a9565b610343565b60405160088152602001610125565b61014161019336600461097f565b610367565b610155600a5481565b6101556101af3660046109e5565b6001600160a01b031660009081526020819052604090205490565b6101d26103a6565b005b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101186103e5565b61014161020f36600461097f565b6103f4565b61014161022236600461097f565b610486565b610155610235366004610a07565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101d261026e366004610a3a565b610494565b6006546101e1906001600160a01b031681565b6101d26102943660046109e5565b6104df565b6060600380546102a890610a53565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610a53565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60003361033981858561057a565b5060019392505050565b60003361035185828561069e565b61035c858585610730565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061033990829086906103a1908790610aa4565b61057a565b6005546001600160a01b031633146103d95760405162461bcd60e51b81526004016103d090610abc565b60405180910390fd5b6103e360006108bc565b565b6060600480546102a890610a53565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104795760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d0565b61035c828686840361057a565b600033610339818585610730565b6005546001600160a01b031633146104be5760405162461bcd60e51b81526004016103d090610abc565b6103e8816002546104cf9190610af1565b6104d99190610b10565b600a5550565b6005546001600160a01b031633146105095760405162461bcd60e51b81526004016103d090610abc565b6001600160a01b03811661056e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d0565b610577816108bc565b50565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d0565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461072a578181101561071d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103d0565b61072a848484840361057a565b50505050565b6001600160a01b03831660009081526010602052604090205415801561076d57506001600160a01b03831660009081526008602052604090205415155b156107b8576006546001600160a01b038481169116146107b8576007546001600160a01b038416600090815260106020526040812080549091906107b2908490610b32565b90915550505b600f546007546001600160a01b03909116600081815260086020526040812080549293929091906107ea908490610aa4565b90915550506001600160a01b03841660009081526010602052604090205461083a576001600160a01b03841660009081526020819052604081208054849290610834908490610b32565b90915550505b6001600160a01b03831660009081526020819052604081208054849290610862908490610aa4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ae91815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561093b5785810183015185820160400152820161091f565b8181111561094d576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461097a57600080fd5b919050565b6000806040838503121561099257600080fd5b61099b83610963565b946020939093013593505050565b6000806000606084860312156109be57600080fd5b6109c784610963565b92506109d560208501610963565b9150604084013590509250925092565b6000602082840312156109f757600080fd5b610a0082610963565b9392505050565b60008060408385031215610a1a57600080fd5b610a2383610963565b9150610a3160208401610963565b90509250929050565b600060208284031215610a4c57600080fd5b5035919050565b600181811c90821680610a6757607f821691505b60208210811415610a8857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610ab757610ab7610a8e565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615610b0b57610b0b610a8e565b500290565b600082610b2d57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610b4457610b44610a8e565b50039056fea2646970667358221220326c44a2ddba00a61c5543e1e323464e41d75242fe6148d200b959d86367ebf764736f6c63430008090033

Deployed Bytecode Sourcemap

20487:1121:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7596:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10096:242;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10096:242:0;1053:187:1;8723:108:0;8811:12;;8723:108;;;1391:25:1;;;1379:2;1364:18;8723:108:0;1245:177:1;10918:296:0;;;;;;:::i;:::-;;:::i;19248:100::-;;;6965:1;1902:36:1;;1890:2;1875:18;19248:100:0;1760:184:1;11623:272:0;;;;;;:::i;:::-;;:::i;18649:60::-;;;;;;8894:177;;;;;;:::i;:::-;-1:-1:-1;;;;;9045:18:0;9013:7;9045:18;;;;;;;;;;;;8894:177;5887:103;;;:::i;:::-;;5236:87;5309:6;;-1:-1:-1;;;;;5309:6:0;5236:87;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;5236:87:0;2140:203:1;7815:104:0;;;:::i;12398:507::-;;;;;;:::i;:::-;;:::i;9277:235::-;;;;;;:::i;:::-;;:::i;9575:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9741:18:0;;;9709:7;9741:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9575:201;19692:142;;;;;;:::i;:::-;;:::i;18451:27::-;;;;;-1:-1:-1;;;;;18451:27:0;;;6145:238;;;;;;:::i;:::-;;:::i;7596:100::-;7650:13;7683:5;7676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7596:100;:::o;10096:242::-;10215:4;3612:10;10276:32;3612:10;10292:7;10301:6;10276:8;:32::i;:::-;-1:-1:-1;10326:4:0;;10096:242;-1:-1:-1;;;10096:242:0:o;10918:296::-;11049:4;3612:10;11107:38;11123:4;3612:10;11138:6;11107:15;:38::i;:::-;11156:28;11167:4;11173:2;11177:6;11156:10;:28::i;:::-;-1:-1:-1;11202:4:0;;10918:296;-1:-1:-1;;;;10918:296:0:o;11623:272::-;3612:10;11738:4;11824:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11824:27:0;;;;;;;;;;11738:4;;3612:10;11799:66;;3612:10;;11824:27;;:40;;11854:10;;11824:40;:::i;:::-;11799:8;:66::i;5887:103::-;5309:6;;-1:-1:-1;;;;;5309:6:0;3612:10;5456:23;5448:68;;;;-1:-1:-1;;;5448:68:0;;;;;;;:::i;:::-;;;;;;;;;5952:30:::1;5979:1;5952:18;:30::i;:::-;5887:103::o:0;7815:104::-;7871:13;7904:7;7897:14;;;;;:::i;12398:507::-;3612:10;12518:4;12606:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;12606:27:0;;;;;;;;;;12518:4;;3612:10;12666:35;;;;12644:122;;;;-1:-1:-1;;;12644:122:0;;4011:2:1;12644:122:0;;;3993:21:1;4050:2;4030:18;;;4023:30;4089:34;4069:18;;;4062:62;-1:-1:-1;;;4140:18:1;;;4133:35;4185:19;;12644:122:0;3809:401:1;12644:122:0;12802:60;12811:5;12818:7;12846:15;12827:16;:34;12802:8;:60::i;9277:235::-;9392:4;3612:10;9453:29;3612:10;9471:2;9475:6;9453:10;:29::i;19692:142::-;5309:6;;-1:-1:-1;;;;;5309:6:0;3612:10;5456:23;5448:68;;;;-1:-1:-1;;;5448:68:0;;;;;;;:::i;:::-;19822:4:::1;19804:13;19789:12;;:28;;;;:::i;:::-;19788:38;;;;:::i;:::-;19769:16;:57:::0;-1:-1:-1;19692:142:0:o;6145:238::-;5309:6;;-1:-1:-1;;;;;5309:6:0;3612:10;5456:23;5448:68;;;;-1:-1:-1;;;5448:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6248:22:0;::::1;6226:110;;;::::0;-1:-1:-1;;;6226:110:0;;4812:2:1;6226:110:0::1;::::0;::::1;4794:21:1::0;4851:2;4831:18;;;4824:30;4890:34;4870:18;;;4863:62;-1:-1:-1;;;4941:18:1;;;4934:36;4987:19;;6226:110:0::1;4610:402:1::0;6226:110:0::1;6347:28;6366:8;6347:18;:28::i;:::-;6145:238:::0;:::o;14533:380::-;-1:-1:-1;;;;;14669:19:0;;14661:68;;;;-1:-1:-1;;;14661:68:0;;5219:2:1;14661:68:0;;;5201:21:1;5258:2;5238:18;;;5231:30;5297:34;5277:18;;;5270:62;-1:-1:-1;;;5348:18:1;;;5341:34;5392:19;;14661:68:0;5017:400:1;14661:68:0;-1:-1:-1;;;;;14748:21:0;;14740:68;;;;-1:-1:-1;;;14740:68:0;;5624:2:1;14740:68:0;;;5606:21:1;5663:2;5643:18;;;5636:30;5702:34;5682:18;;;5675:62;-1:-1:-1;;;5753:18:1;;;5746:32;5795:19;;14740:68:0;5422:398:1;14740:68:0;-1:-1:-1;;;;;14821:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14873:32;;1391:25:1;;;14873:32:0;;1364:18:1;14873:32:0;;;;;;;14533:380;;;:::o;15200:502::-;-1:-1:-1;;;;;9741:18:0;;;15335:24;9741:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15402:37:0;;15398:297;;15502:6;15482:16;:26;;15456:117;;;;-1:-1:-1;;;15456:117:0;;6027:2:1;15456:117:0;;;6009:21:1;6066:2;6046:18;;;6039:30;6105:31;6085:18;;;6078:59;6154:18;;15456:117:0;5825:353:1;15456:117:0;15617:51;15626:5;15633:7;15661:6;15642:16;:25;15617:8;:51::i;:::-;15324:378;15200:502;;;:::o;20532:557::-;-1:-1:-1;;;;;20665:17:0;;;;;;:8;:17;;;;;;:22;:47;;;;-1:-1:-1;;;;;;20691:17:0;;20711:1;20691:17;;;:8;:17;;;;;;:21;;20665:47;20661:172;;;20733:12;;-1:-1:-1;;;;;20733:23:0;;;:12;;:23;20729:93;;20798:8;;-1:-1:-1;;;;;20777:17:0;;;;;;:8;:17;;;;;:29;;:17;;;:29;;20798:8;;20777:29;:::i;:::-;;;;-1:-1:-1;;20729:93:0;20858:11;;20898:8;;-1:-1:-1;;;;;20858:11:0;;;20843:12;20880:14;;;:8;:14;;;;;:26;;20858:11;;20898:8;20880:14;;20843:12;20880:26;;20898:8;;20880:26;:::i;:::-;;;;-1:-1:-1;;;;;;;20923:17:0;;;;;;:8;:17;;;;;;20919:80;;-1:-1:-1;;;;;20962:18:0;;:9;:18;;;;;;;;;;:25;;20984:3;;20962:9;:25;;20984:3;;20962:25;:::i;:::-;;;;-1:-1:-1;;20919:80:0;-1:-1:-1;;;;;21011:17:0;;:9;:17;;;;;;;;;;:24;;21032:3;;21011:9;:24;;21032:3;;21011:24;:::i;:::-;;;;;;;;21069:6;-1:-1:-1;;;;;21051:30:0;21060:7;-1:-1:-1;;;;;21051:30:0;;21077:3;21051:30;;;;1391:25:1;;1379:2;1364:18;;1245:177;21051:30:0;;;;;;;;20650:439;20532:557;;;:::o;6543:191::-;6636:6;;;-1:-1:-1;;;;;6653:17:0;;;-1:-1:-1;;;;;;6653:17:0;;;;;;;6686:40;;6636:6;;;6653:17;6636:6;;6686:40;;6617:16;;6686:40;6606:128;6543:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:180::-;2672:6;2725:2;2713:9;2704:7;2700:23;2696:32;2693:52;;;2741:1;2738;2731:12;2693:52;-1:-1:-1;2764:23:1;;2613:180;-1:-1:-1;2613:180:1:o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:128;3355:3;3386:1;3382:6;3379:1;3376:13;3373:39;;;3392:18;;:::i;:::-;-1:-1:-1;3428:9:1;;3315:128::o;3448:356::-;3650:2;3632:21;;;3669:18;;;3662:30;3728:34;3723:2;3708:18;;3701:62;3795:2;3780:18;;3448:356::o;4215:168::-;4255:7;4321:1;4317;4313:6;4309:14;4306:1;4303:21;4298:1;4291:9;4284:17;4280:45;4277:71;;;4328:18;;:::i;:::-;-1:-1:-1;4368:9:1;;4215:168::o;4388:217::-;4428:1;4454;4444:132;;4498:10;4493:3;4489:20;4486:1;4479:31;4533:4;4530:1;4523:15;4561:4;4558:1;4551:15;4444:132;-1:-1:-1;4590:9:1;;4388:217::o;6183:125::-;6223:4;6251:1;6248;6245:8;6242:34;;;6256:18;;:::i;:::-;-1:-1:-1;6293:9:1;;6183:125::o

Swarm Source

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