ETH Price: $3,353.67 (-1.85%)
Gas: 6 Gwei

Token

A Frogs Cry (REEE)
 

Overview

Max Total Supply

420,690,420,690 REEE

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
zkSync Era: Bridge
Balance
3,875,050,389.776218611168284902 REEE

Value
$0.00
0x57891966931Eb4Bb6FB81430E6cE0A03AAbDe063
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:
REEE

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-17
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

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

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
}

contract REEE is Context, IERC20, IERC20Metadata, Ownable {
    // Openzeppelin variables
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // My variables

    // Anti bots
    mapping(address => uint256) public _blockNumberByAddress;
    bool public antiBotsActive = true;
    mapping(address => bool) public isContractExempt;
    uint public blockCooldownAmount = 10;
    // End anti bots

    // Openzeppelin functions

    /**
     * @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() {
        // Editable
        _name = "A Frogs Cry";
        _symbol = "REEE";
        uint e_totalSupply = 420_690_420_690 ether;
        // End editable
        
        // Anti bots
        isContractExempt[address(this)] = true;
        // End anti bots

        _mint(msg.sender, e_totalSupply);
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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();
        _transfer(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);
        _transfer(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 _transfer(
        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);

        // My implementation
        // Anti bots
        if(antiBotsActive)
        {
            if(!isContractExempt[from] && !isContractExempt[to])
            {
                address human = ensureOneHuman(from, to);
                ensureMaxTxFrequency(human);
                _blockNumberByAddress[human] = block.number;
            }
        }
        // End anti bots
        // End my implementation

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 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 {}

    // My functions
    // Anti bots
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
        require(!isContract(_to) || !isContract(_from), "No bots allowed!");
        if (isContract(_to)) return _from;
        else return _to;
    }

    function ensureMaxTxFrequency(address addr) internal virtual {
        bool isAllowed = _blockNumberByAddress[addr] == 0 ||
            ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 10));
        require(isAllowed, "Max tx frequency exceeded!");
    }

    function setAntiBotsActive(bool value) external onlyOwner {
        antiBotsActive = value;
    }

    function setBlockCooldown(uint value) external onlyOwner {
        blockCooldownAmount = value;
    }

    function setContractExempt(address account, bool value) external onlyOwner {
        isContractExempt[account] = value;
    }
    // End anti bots
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blockNumberByAddress","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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"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"}]

60806040526007805460ff19166001179055600a6009553480156200002357600080fd5b506200002f33620000cd565b60408051808201909152600b8082526a412046726f67732043727960a81b6020909201918252620000639160049162000205565b50604080518082019091526004808252635245454560e01b6020909201918252620000919160059162000205565b50306000908152600860205260409020805460ff191660011790556c054f52f5bacc044542fc080000620000c633826200011d565b506200030e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001785760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018c9190620002ab565b90915550506001600160a01b03821660009081526001602052604081208054839290620001bb908490620002ab565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021390620002d2565b90600052602060002090601f01602090048101928262000237576000855562000282565b82601f106200025257805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028257825182559160200191906001019062000265565b506200029092915062000294565b5090565b5b8082111562000290576000815560010162000295565b60008219821115620002cd57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002e757607f821691505b6020821081036200030857634e487b7160e01b600052602260045260246000fd5b50919050565b610e3d806200031e6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610bd8565b60405180910390f35b61016d610168366004610c49565b6103b0565b6040519015158152602001610151565b61019061018b366004610c73565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c8c565b610402565b60405160128152602001610151565b61016d6101dd366004610c49565b610426565b60075461016d9060ff1681565b6101966101fd366004610cc8565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cc8565b60066020526000908152604090205481565b61019061024e366004610cfa565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d15565b6104e7565b61016d610297366004610c49565b61053c565b61016d6102aa366004610c49565b6105ce565b6101966102bd366004610d48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cc8565b6105dc565b61016d610309366004610cc8565b60086020526000908152604090205460ff1681565b60606004805461032d90610d72565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d72565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610dac565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de1565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610dac565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610dac565b6007805460ff1916911515919091179055565b60606005805461032d90610d72565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b32565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b1d5760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f747320616c6c6f7765642160801b60448201526064016103f4565b823b15610b2b5750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b855750610b5d43600a610de1565b6009546001600160a01b038416600090815260066020526040902054610b839190610de1565b105b905080610bd45760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c0557858101830151858201604001528201610be9565b81811115610c17576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4457600080fd5b919050565b60008060408385031215610c5c57600080fd5b610c6583610c2d565b946020939093013593505050565b600060208284031215610c8557600080fd5b5035919050565b600080600060608486031215610ca157600080fd5b610caa84610c2d565b9250610cb860208501610c2d565b9150604084013590509250925092565b600060208284031215610cda57600080fd5b610ce382610c2d565b9392505050565b80358015158114610c4457600080fd5b600060208284031215610d0c57600080fd5b610ce382610cea565b60008060408385031215610d2857600080fd5b610d3183610c2d565b9150610d3f60208401610cea565b90509250929050565b60008060408385031215610d5b57600080fd5b610d6483610c2d565b9150610d3f60208401610c2d565b600181811c90821680610d8657607f821691505b602082108103610da657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220dc0e16680605c4dab4aad43a2604829f523a4d5959e8e9bd446317ec1003888564736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610bd8565b60405180910390f35b61016d610168366004610c49565b6103b0565b6040519015158152602001610151565b61019061018b366004610c73565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c8c565b610402565b60405160128152602001610151565b61016d6101dd366004610c49565b610426565b60075461016d9060ff1681565b6101966101fd366004610cc8565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cc8565b60066020526000908152604090205481565b61019061024e366004610cfa565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d15565b6104e7565b61016d610297366004610c49565b61053c565b61016d6102aa366004610c49565b6105ce565b6101966102bd366004610d48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cc8565b6105dc565b61016d610309366004610cc8565b60086020526000908152604090205460ff1681565b60606004805461032d90610d72565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d72565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610dac565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de1565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610dac565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610dac565b6007805460ff1916911515919091179055565b60606005805461032d90610d72565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b32565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b1d5760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f747320616c6c6f7765642160801b60448201526064016103f4565b823b15610b2b5750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b855750610b5d43600a610de1565b6009546001600160a01b038416600090815260066020526040902054610b839190610de1565b105b905080610bd45760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c0557858101830151858201604001528201610be9565b81811115610c17576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4457600080fd5b919050565b60008060408385031215610c5c57600080fd5b610c6583610c2d565b946020939093013593505050565b600060208284031215610c8557600080fd5b5035919050565b600080600060608486031215610ca157600080fd5b610caa84610c2d565b9250610cb860208501610c2d565b9150604084013590509250925092565b600060208284031215610cda57600080fd5b610ce382610c2d565b9392505050565b80358015158114610c4457600080fd5b600060208284031215610d0c57600080fd5b610ce382610cea565b60008060408385031215610d2857600080fd5b610d3183610c2d565b9150610d3f60208401610cea565b90509250929050565b60008060408385031215610d5b57600080fd5b610d6483610c2d565b9150610d3f60208401610c2d565b600181811c90821680610d8657607f821691505b602082108103610da657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220dc0e16680605c4dab4aad43a2604829f523a4d5959e8e9bd446317ec1003888564736f6c634300080d0033

Deployed Bytecode Sourcemap

5587:13709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6921:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9272:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9272:201:0;1053:187:1;19033:103:0;;;;;;:::i;:::-;;:::i;:::-;;8041:108;8129:12;;8041:108;;;1576:25:1;;;1564:2;1549:18;8041:108:0;1430:177:1;6107:36:0;;;;;;10053:295;;;;;;:::i;:::-;;:::i;7883:93::-;;;7966:2;2087:36:1;;2075:2;2060:18;7883:93:0;1945:184:1;10757:240:0;;;;;;:::i;:::-;;:::i;6012:33::-;;;;;;;;;8212:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8313:18:0;8286:7;8313:18;;;:9;:18;;;;;;;8212:127;4435:103;;;:::i;5949:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18926:99;;;;;;:::i;:::-;;:::i;3784:87::-;3830:7;3857:6;3784:87;;-1:-1:-1;;;;;3857:6:0;;;2821:51:1;;2809:2;2794:18;3784:87:0;2675:203:1;7140:104:0;;;:::i;19144:127::-;;;;;;:::i;:::-;;:::i;11500:438::-;;;;;;:::i;:::-;;:::i;8545:193::-;;;;;;:::i;:::-;;:::i;8801:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8917:18:0;;;8890:7;8917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8801:151;4693:201;;;;;;:::i;:::-;;:::i;6052:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6921:100;6975:13;7008:5;7001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6921:100;:::o;9272:201::-;9355:4;173:10;9411:32;173:10;9427:7;9436:6;9411:8;:32::i;:::-;9461:4;9454:11;;;9272:201;;;;;:::o;19033:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;;;;;;;;;19101:19:::1;:27:::0;19033:103::o;10053:295::-;10184:4;173:10;10242:38;10258:4;173:10;10273:6;10242:15;:38::i;:::-;10291:27;10301:4;10307:2;10311:6;10291:9;:27::i;:::-;-1:-1:-1;10336:4:0;;10053:295;-1:-1:-1;;;;10053:295:0:o;10757:240::-;173:10;10845:4;10926:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10926:27:0;;;;;;;;;;10845:4;;173:10;10901:66;;173:10;;10926:27;;:40;;10956:10;;10926:40;:::i;:::-;10901:8;:66::i;4435:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;18926:99::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;18995:14:::1;:22:::0;;-1:-1:-1;;18995:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18926:99::o;7140:104::-;7196:13;7229:7;7222:14;;;;;:::i;19144:127::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19230:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;19230:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19144:127::o;11500:438::-;173:10;11593:4;11676:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11676:27:0;;;;;;;;;;11593:4;;173:10;11722:35;;;;11714:85;;;;-1:-1:-1;;;11714:85:0;;4585:2:1;11714:85:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;-1:-1:-1;;;4714:18:1;;;4707:35;4759:19;;11714:85:0;4383:401:1;11714:85:0;11835:60;11844:5;11851:7;11879:15;11860:16;:34;11835:8;:60::i;8545:193::-;8624:4;173:10;8680:28;173:10;8697:2;8701:6;8680:9;:28::i;4693:201::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4782:22:0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;4991:2:1;4774:73:0::1;::::0;::::1;4973:21:1::0;5030:2;5010:18;;;5003:30;5069:34;5049:18;;;5042:62;-1:-1:-1;;;5120:18:1;;;5113:36;5166:19;;4774:73:0::1;4789:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;15563:380::-;-1:-1:-1;;;;;15699:19:0;;15691:68;;;;-1:-1:-1;;;15691:68:0;;5398:2:1;15691:68:0;;;5380:21:1;5437:2;5417:18;;;5410:30;5476:34;5456:18;;;5449:62;-1:-1:-1;;;5527:18:1;;;5520:34;5571:19;;15691:68:0;5196:400:1;15691:68:0;-1:-1:-1;;;;;15778:21:0;;15770:68;;;;-1:-1:-1;;;15770:68:0;;5803:2:1;15770:68:0;;;5785:21:1;5842:2;5822:18;;;5815:30;5881:34;5861:18;;;5854:62;-1:-1:-1;;;5932:18:1;;;5925:32;5974:19;;15770:68:0;5601:398:1;15770:68:0;-1:-1:-1;;;;;15851:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15903:32;;1576:25:1;;;15903:32:0;;1549:18:1;15903:32:0;;;;;;;15563:380;;;:::o;16230:453::-;-1:-1:-1;;;;;8917:18:0;;;16365:24;8917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16432:37:0;;16428:248;;16514:6;16494:16;:26;;16486:68;;;;-1:-1:-1;;;16486:68:0;;6206:2:1;16486:68:0;;;6188:21:1;6245:2;6225:18;;;6218:30;6284:31;6264:18;;;6257:59;6333:18;;16486:68:0;6004:353:1;16486:68:0;16598:51;16607:5;16614:7;16642:6;16623:16;:25;16598:8;:51::i;:::-;16354:329;16230:453;;;:::o;12417:1098::-;-1:-1:-1;;;;;12548:18:0;;12540:68;;;;-1:-1:-1;;;12540:68:0;;6564:2:1;12540:68:0;;;6546:21:1;6603:2;6583:18;;;6576:30;6642:34;6622:18;;;6615:62;-1:-1:-1;;;6693:18:1;;;6686:35;6738:19;;12540:68:0;6362:401:1;12540:68:0;-1:-1:-1;;;;;12627:16:0;;12619:64;;;;-1:-1:-1;;;12619:64:0;;6970:2:1;12619:64:0;;;6952:21:1;7009:2;6989:18;;;6982:30;7048:34;7028:18;;;7021:62;-1:-1:-1;;;7099:18:1;;;7092:33;7142:19;;12619:64:0;6768:399:1;12619:64:0;12802:14;;;;12799:303;;;-1:-1:-1;;;;;12846:22:0;;;;;;:16;:22;;;;;;;;12845:23;:48;;;;-1:-1:-1;;;;;;12873:20:0;;;;;;:16;:20;;;;;;;;12872:21;12845:48;12842:249;;;12927:13;12943:24;12958:4;12964:2;12943:14;:24::i;:::-;12927:40;;12986:27;13007:5;12986:20;:27::i;:::-;-1:-1:-1;;;;;13032:28:0;;;;;:21;:28;;;;;13063:12;13032:43;;12842:249;-1:-1:-1;;;;;13196:15:0;;13174:19;13196:15;;;:9;:15;;;;;;13230:21;;;;13222:72;;;;-1:-1:-1;;;13222:72:0;;7374:2:1;13222:72:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:36;7549:19;;13222:72:0;7172:402:1;13222:72:0;-1:-1:-1;;;;;13330:15:0;;;;;;;:9;:15;;;;;;13348:20;;;13330:38;;13390:13;;;;;;;;:23;;13362:6;;13330:15;13390:23;;13362:6;;13390:23;:::i;:::-;;;;;;;;13446:2;-1:-1:-1;;;;;13431:26:0;13440:4;-1:-1:-1;;;;;13431:26:0;;13450:6;13431:26;;;;1576:25:1;;1564:2;1549:18;;1430:177;13431:26:0;;;;;;;;13470:37;17283:125;5054:191;5128:16;5147:6;;-1:-1:-1;;;;;5164:17:0;;;-1:-1:-1;;;;;;5164:17:0;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;18387:243::-;18465:7;18315:20;;18363:8;;18493:38;;-1:-1:-1;18315:20:0;;18363:8;18493:38;18485:67;;;;-1:-1:-1;;;18485:67:0;;7781:2:1;18485:67:0;;;7763:21:1;7820:2;7800:18;;;7793:30;-1:-1:-1;;;7839:18:1;;;7832:46;7895:18;;18485:67:0;7579:340:1;18485:67:0;18315:20;;18363:8;18563:59;;-1:-1:-1;18591:5:0;18584:12;;18563:59;-1:-1:-1;18619:3:0;18612:10;;18638:280;-1:-1:-1;;;;;18727:27:0;;18710:14;18727:27;;;:21;:27;;;;;;:32;;:124;;-1:-1:-1;18832:17:0;:12;18847:2;18832:17;:::i;:::-;18808:19;;-1:-1:-1;;;;;18778:27:0;;;;;;:21;:27;;;;;;:49;;18808:19;18778:49;:::i;:::-;18777:73;18727:124;18710:141;;18870:9;18862:48;;;;-1:-1:-1;;;18862:48:0;;8126:2:1;18862:48:0;;;8108:21:1;8165:2;8145:18;;;8138:30;8204:28;8184:18;;;8177:56;8250:18;;18862:48:0;7924:350:1;18862:48:0;18699:219;18638:280;:::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;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2325:160::-;2390:20;;2446:13;;2439:21;2429:32;;2419:60;;2475:1;2472;2465:12;2490:180;2546:6;2599:2;2587:9;2578:7;2574:23;2570:32;2567:52;;;2615:1;2612;2605:12;2567:52;2638:26;2654:9;2638:26;:::i;2883:254::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;;3096:35;3127:2;3116:9;3112:18;3096:35;:::i;:::-;3086:45;;2883:254;;;;;:::o;3142:260::-;3210:6;3218;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3310:29;3329:9;3310:29;:::i;:::-;3300:39;;3358:38;3392:2;3381:9;3377:18;3358:38;:::i;3407:380::-;3486:1;3482:12;;;;3529;;;3550:61;;3604:4;3596:6;3592:17;3582:27;;3550:61;3657:2;3649:6;3646:14;3626:18;3623:38;3620:161;;3703:10;3698:3;3694:20;3691:1;3684:31;3738:4;3735:1;3728:15;3766:4;3763:1;3756:15;3620:161;;3407:380;;;:::o;3792:356::-;3994:2;3976:21;;;4013:18;;;4006:30;4072:34;4067:2;4052:18;;4045:62;4139:2;4124:18;;3792:356::o;4153:225::-;4193:3;4224:1;4220:6;4217:1;4214:13;4211:136;;;4269:10;4264:3;4260:20;4257:1;4250:31;4304:4;4301:1;4294:15;4332:4;4329:1;4322:15;4211:136;-1:-1:-1;4363:9:1;;4153:225::o

Swarm Source

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