ETH Price: $2,415.93 (+2.55%)

Token

NEURALINK (NEURAL)
 

Overview

Max Total Supply

1,000,000,000,000 NEURAL

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.459901772576204956 NEURAL

Value
$0.00
0x0bb6b0524027efca4561c868b882278863f95d40
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:
StandardToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-07
*/

/* *******************************************************************************************************************************************************************************
*
* Powered By t.me/BlazeXDeployerBot - This Contract is safe has no hidden malfunctions - Create your own Contract via telegram with blazex.org 
*
* Disclaimer: The @BlazeXDeployerBot tool assists users in contract deployment. Tokens or contracts initiated through this bot are solely under the user's responsibility and are * not linked to, endorsed by, or associated with the BlazeX Team. Users are urged to approach with caution and comprehend the outcomes of their deployments. The contract has been * reviewed and audited.
* TG BOT: t.me/BlazeXdeployerBot
*********************************************************************************************************************************************************************************
*/

// SPDX-License-Identifier: MIT

 /*
   * 
    *
    *——————————————————
    *
    * Description: Inspired by Elon Musk
    * Website: https://neuralink.cash/
    * Twitter: https://twitter.com/EthNeuralink
    * Telegram: https://t.me/NeuralLinkERC20
    *
    *—————
    */

// Website: https://blazex.org
// Telegram: https://t.me/BlazeXCoin

pragma solidity 0.8.17;
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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 Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}




pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender] - amount;
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

    function balanceOf(address owner) external view returns (uint);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);

    function transfer(address to, uint value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract StandardToken is ERC20, Ownable {
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 private constant MAX = type(uint256).max;

    bool public tradingEnabled = true;

    address public referralWallet;
    uint256 public serviceFee;
    uint256 public referralCommission;

    address public lpPair;

    constructor() ERC20("NEURALINK", "NEURAL") payable {
        uint totalSupply_ = 1000000000000;
        address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
      require(msg.value >= 0.05 ether, "Insufficient value for fee receiver");
      serviceFee = 0.05 ether;
      payable(0x72460072CCC5DB06559dd6e970dFD2Cb06ee7876).transfer(serviceFee);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;
        _approve(msg.sender, address(uniswapV2Router), MAX);
        _approve(msg.sender, address(this), MAX);

        _mint(msg.sender, totalSupply_ * 10 ** 18);
    }

    function createLPPairIfRequired() private {
        IUniswapV2Factory factory = IUniswapV2Factory(uniswapV2Router.factory());
        address pair = factory.getPair(address(this), uniswapV2Router.WETH());
		if(pair == address(0)) {
			uniswapV2Pair = factory.createPair(address(this), uniswapV2Router.WETH());
			lpPair = uniswapV2Pair;
		}
        else {
            if(uniswapV2Pair != pair){
                uniswapV2Pair = pair;
                lpPair = uniswapV2Pair;
            }
        }
	}

    function addLiquidityETH(uint256 _tokenAmount) public payable returns(bool) {
		createLPPairIfRequired();
        _transfer(msg.sender, address(this), _tokenAmount);
        _approve(address(this), address(uniswapV2Router), MAX);
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this), _tokenAmount, 0, 0, address(msg.sender), block.timestamp + 50);
        return true;
	}

    function setPair(address pair) public onlyOwner {
        uniswapV2Pair = pair;
        lpPair = uniswapV2Pair;
    }

    function contractTypeBlazex() external pure returns(uint){
        return 1;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addLiquidityETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractTypeBlazex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCommission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"serviceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6007805460ff60a01b1916600160a01b17905560096080908152684e455552414c494e4b60b81b60a052610100604052600660c09081526513915554905360d21b60e0526003620000518382620004bb565b506004620000608282620004bb565b50506005805460ff191660121790555060006200007a3390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35064e8d4a51000737a250d5630b4cf539739df2c5dacb4c659f2488d66b1a2bc2ec50000341015620001545760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742076616c756520666f72206665652072656365696044820152623b32b960e91b60648201526084015b60405180910390fd5b66b1a2bc2ec5000060098190556040517372460072ccc5db06559dd6e970dfd2cb06ee78769160009182818181858883f193505050501580156200019c573d6000803e3d6000fd5b50600680546001600160a01b0319166001600160a01b0383169081179091558190620001cd90339060001962000204565b620001dc333060001962000204565b620001fb33620001f585670de0b6b3a76400006200059d565b6200032c565b505050620005d3565b6001600160a01b038316620002685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200014b565b6001600160a01b038216620002cb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200014b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620003845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200014b565b80600254620003949190620005bd565b6002556001600160a01b038216600090815260208190526040902054620003bd908290620005bd565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044257607f821691505b6020821081036200046357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041257600081815260208120601f850160051c81016020861015620004925750805b601f850160051c820191505b81811015620004b3578281556001016200049e565b505050505050565b81516001600160401b03811115620004d757620004d762000417565b620004ef81620004e884546200042d565b8462000469565b602080601f8311600181146200052757600084156200050e5750858301515b600019600386901b1c1916600185901b178555620004b3565b600085815260208120601f198616915b82811015620005585788860151825594840194600190910190840162000537565b5085821015620005775787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005b757620005b762000587565b92915050565b80820180821115620005b757620005b762000587565b61163780620005e36000396000f3fe60806040526004361061018b5760003560e01c80638187f516116100d6578063cbef3ce91161007f578063dd62ed3e11610059578063dd62ed3e1461049c578063e1f14874146104ef578063f2fde38b1461051c57600080fd5b8063cbef3ce91461045f578063ce3fdca914610473578063d06d04cc1461048957600080fd5b806395d89b41116100b057806395d89b411461040a578063a457c2d71461041f578063a9059cbb1461043f57600080fd5b80638187f516146103a45780638abdf5aa146103c45780638da5cb5b146103da57600080fd5b806339509351116101385780634ada218b116101125780634ada218b1461031857806370a082311461034a578063715018a61461038d57600080fd5b8063395093511461029e578063452ed4f1146102be57806349bd5a5e146102eb57600080fd5b806318160ddd1161016957806318160ddd1461023d57806323b872dd1461025c578063313ce5671461027c57600080fd5b806306fdde0314610190578063095ea7b3146101bb5780631694505e146101eb575b600080fd5b34801561019c57600080fd5b506101a561053c565b6040516101b2919061139a565b60405180910390f35b3480156101c757600080fd5b506101db6101d636600461142b565b6105ce565b60405190151581526020016101b2565b3480156101f757600080fd5b506006546102189073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b2565b34801561024957600080fd5b506002545b6040519081526020016101b2565b34801561026857600080fd5b506101db610277366004611457565b6105e5565b34801561028857600080fd5b5060055460405160ff90911681526020016101b2565b3480156102aa57600080fd5b506101db6102b936600461142b565b610644565b3480156102ca57600080fd5b50600b546102189073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102f757600080fd5b506007546102189073ffffffffffffffffffffffffffffffffffffffff1681565b34801561032457600080fd5b506007546101db9074010000000000000000000000000000000000000000900460ff1681565b34801561035657600080fd5b5061024e610365366004611498565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561039957600080fd5b506103a2610688565b005b3480156103b057600080fd5b506103a26103bf366004611498565b610788565b3480156103d057600080fd5b5061024e60095481565b3480156103e657600080fd5b50600554610100900473ffffffffffffffffffffffffffffffffffffffff16610218565b34801561041657600080fd5b506101a5610860565b34801561042b57600080fd5b506101db61043a36600461142b565b61086f565b34801561044b57600080fd5b506101db61045a36600461142b565b6108b3565b34801561046b57600080fd5b50600161024e565b34801561047f57600080fd5b5061024e600a5481565b6101db6104973660046114bc565b6108c0565b3480156104a857600080fd5b5061024e6104b73660046114d5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156104fb57600080fd5b506008546102189073ffffffffffffffffffffffffffffffffffffffff1681565b34801561052857600080fd5b506103a2610537366004611498565b610a0c565b60606003805461054b9061150e565b80601f01602080910402602001604051908101604052809291908181526020018280546105779061150e565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105db338484610bce565b5060015b92915050565b60006105f2848484610d82565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461063a918691610635908690611590565b610bce565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105db9185906106359086906115a3565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055473ffffffffffffffffffffffffffffffffffffffff61010090910416331461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b6007805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155600b8054909216179055565b60606004805461054b9061150e565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105db918590610635908690611590565b60006105db338484610d82565b60006108ca610f94565b6108d5333084610d82565b60065461091a90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610bce565b60065473ffffffffffffffffffffffffffffffffffffffff1663f305d7193430856000803361094a4260326115a3565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156109dc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a0191906115b6565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610a93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b73ffffffffffffffffffffffffffffffffffffffff8116610b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070b565b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8216610d13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8216610ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610ef9908290611590565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610f369082906115a3565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d75565b600654604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015611004573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102891906115e4565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110da91906115e4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa15801561114a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116e91906115e4565b905073ffffffffffffffffffffffffffffffffffffffff8116611323578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611215573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123991906115e4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af11580156112ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cf91906115e4565b6007805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155600b80549092161790555050565b60075473ffffffffffffffffffffffffffffffffffffffff828116911614611396576007805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255600b805490911690911790555b5050565b600060208083528351808285015260005b818110156113c7578581018301518582016040015282016113ab565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461142857600080fd5b50565b6000806040838503121561143e57600080fd5b823561144981611406565b946020939093013593505050565b60008060006060848603121561146c57600080fd5b833561147781611406565b9250602084013561148781611406565b929592945050506040919091013590565b6000602082840312156114aa57600080fd5b81356114b581611406565b9392505050565b6000602082840312156114ce57600080fd5b5035919050565b600080604083850312156114e857600080fd5b82356114f381611406565b9150602083013561150381611406565b809150509250929050565b600181811c9082168061152257607f821691505b60208210810361155b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156105df576105df611561565b808201808211156105df576105df611561565b6000806000606084860312156115cb57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115f657600080fd5b81516114b58161140656fea2646970667358221220a5500d677739fe360d42ea1f4a14dfa21e8ea201f0e6bb46c1d58c7bc650120e64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061018b5760003560e01c80638187f516116100d6578063cbef3ce91161007f578063dd62ed3e11610059578063dd62ed3e1461049c578063e1f14874146104ef578063f2fde38b1461051c57600080fd5b8063cbef3ce91461045f578063ce3fdca914610473578063d06d04cc1461048957600080fd5b806395d89b41116100b057806395d89b411461040a578063a457c2d71461041f578063a9059cbb1461043f57600080fd5b80638187f516146103a45780638abdf5aa146103c45780638da5cb5b146103da57600080fd5b806339509351116101385780634ada218b116101125780634ada218b1461031857806370a082311461034a578063715018a61461038d57600080fd5b8063395093511461029e578063452ed4f1146102be57806349bd5a5e146102eb57600080fd5b806318160ddd1161016957806318160ddd1461023d57806323b872dd1461025c578063313ce5671461027c57600080fd5b806306fdde0314610190578063095ea7b3146101bb5780631694505e146101eb575b600080fd5b34801561019c57600080fd5b506101a561053c565b6040516101b2919061139a565b60405180910390f35b3480156101c757600080fd5b506101db6101d636600461142b565b6105ce565b60405190151581526020016101b2565b3480156101f757600080fd5b506006546102189073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b2565b34801561024957600080fd5b506002545b6040519081526020016101b2565b34801561026857600080fd5b506101db610277366004611457565b6105e5565b34801561028857600080fd5b5060055460405160ff90911681526020016101b2565b3480156102aa57600080fd5b506101db6102b936600461142b565b610644565b3480156102ca57600080fd5b50600b546102189073ffffffffffffffffffffffffffffffffffffffff1681565b3480156102f757600080fd5b506007546102189073ffffffffffffffffffffffffffffffffffffffff1681565b34801561032457600080fd5b506007546101db9074010000000000000000000000000000000000000000900460ff1681565b34801561035657600080fd5b5061024e610365366004611498565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561039957600080fd5b506103a2610688565b005b3480156103b057600080fd5b506103a26103bf366004611498565b610788565b3480156103d057600080fd5b5061024e60095481565b3480156103e657600080fd5b50600554610100900473ffffffffffffffffffffffffffffffffffffffff16610218565b34801561041657600080fd5b506101a5610860565b34801561042b57600080fd5b506101db61043a36600461142b565b61086f565b34801561044b57600080fd5b506101db61045a36600461142b565b6108b3565b34801561046b57600080fd5b50600161024e565b34801561047f57600080fd5b5061024e600a5481565b6101db6104973660046114bc565b6108c0565b3480156104a857600080fd5b5061024e6104b73660046114d5565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156104fb57600080fd5b506008546102189073ffffffffffffffffffffffffffffffffffffffff1681565b34801561052857600080fd5b506103a2610537366004611498565b610a0c565b60606003805461054b9061150e565b80601f01602080910402602001604051908101604052809291908181526020018280546105779061150e565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105db338484610bce565b5060015b92915050565b60006105f2848484610d82565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203380855292529091205461063a918691610635908690611590565b610bce565b5060019392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105db9185906106359086906115a3565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b60055473ffffffffffffffffffffffffffffffffffffffff61010090910416331461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b6007805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155600b8054909216179055565b60606004805461054b9061150e565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916105db918590610635908690611590565b60006105db338484610d82565b60006108ca610f94565b6108d5333084610d82565b60065461091a90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610bce565b60065473ffffffffffffffffffffffffffffffffffffffff1663f305d7193430856000803361094a4260326115a3565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156109dc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a0191906115b6565b506001949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610a93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b73ffffffffffffffffffffffffffffffffffffffff8116610b36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070b565b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8216610d13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610e25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8216610ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161070b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054610ef9908290611590565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610f369082906115a3565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610d75565b600654604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015611004573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102891906115e4565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110da91906115e4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa15801561114a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116e91906115e4565b905073ffffffffffffffffffffffffffffffffffffffff8116611323578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611215573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123991906115e4565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af11580156112ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cf91906115e4565b6007805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155600b80549092161790555050565b60075473ffffffffffffffffffffffffffffffffffffffff828116911614611396576007805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255600b805490911690911790555b5050565b600060208083528351808285015260005b818110156113c7578581018301518582016040015282016113ab565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461142857600080fd5b50565b6000806040838503121561143e57600080fd5b823561144981611406565b946020939093013593505050565b60008060006060848603121561146c57600080fd5b833561147781611406565b9250602084013561148781611406565b929592945050506040919091013590565b6000602082840312156114aa57600080fd5b81356114b581611406565b9392505050565b6000602082840312156114ce57600080fd5b5035919050565b600080604083850312156114e857600080fd5b82356114f381611406565b9150602083013561150381611406565b809150509250929050565b600181811c9082168061152257607f821691505b60208210810361155b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156105df576105df611561565b808201808211156105df576105df611561565b6000806000606084860312156115cb57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115f657600080fd5b81516114b58161140656fea2646970667358221220a5500d677739fe360d42ea1f4a14dfa21e8ea201f0e6bb46c1d58c7bc650120e64736f6c63430008110033

Deployed Bytecode Sourcemap

34421:2175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17179:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19285:169;;;;;;;;;;-1:-1:-1;19285:169:0;;;;;:::i;:::-;;:::i;:::-;;;1270:14:1;;1263:22;1245:41;;1233:2;1218:18;19285:169:0;1105:187:1;34469:41:0;;;;;;;;;;-1:-1:-1;34469:41:0;;;;;;;;;;;1500:42:1;1488:55;;;1470:74;;1458:2;1443:18;34469:41:0;1297:253:1;18254:100:0;;;;;;;;;;-1:-1:-1;18334:12:0;;18254:100;;;1701:25:1;;;1689:2;1674:18;18254:100:0;1555:177:1;19936:274:0;;;;;;;;;;-1:-1:-1;19936:274:0;;;;;:::i;:::-;;:::i;18106:83::-;;;;;;;;;;-1:-1:-1;18172:9:0;;18106:83;;18172:9;;;;2340:36:1;;2328:2;2313:18;18106:83:0;2198:184:1;20619:215:0;;;;;;;;;;-1:-1:-1;20619:215:0;;;;;:::i;:::-;;:::i;34761:21::-;;;;;;;;;;-1:-1:-1;34761:21:0;;;;;;;;34517:28;;;;;;;;;;-1:-1:-1;34517:28:0;;;;;;;;34609:33;;;;;;;;;;-1:-1:-1;34609:33:0;;;;;;;;;;;18417:119;;;;;;;;;;-1:-1:-1;18417:119:0;;;;;:::i;:::-;18510:18;;18483:7;18510:18;;;;;;;;;;;;18417:119;3908:148;;;;;;;;;;;;;:::i;:::-;;36379:120;;;;;;;;;;-1:-1:-1;36379:120:0;;;;;:::i;:::-;;:::i;34687:25::-;;;;;;;;;;;;;;;;3266:79;;;;;;;;;;-1:-1:-1;3331:6:0;;;;;;;3266:79;;17381:87;;;;;;;;;;;;;:::i;21337:225::-;;;;;;;;;;-1:-1:-1;21337:225:0;;;;;:::i;:::-;;:::i;18749:175::-;;;;;;;;;;-1:-1:-1;18749:175:0;;;;;:::i;:::-;;:::i;36507:84::-;;;;;;;;;;-1:-1:-1;36582:1:0;36507:84;;34719:33;;;;;;;;;;;;;;;;35975:396;;;;;;:::i;:::-;;:::i;18987:151::-;;;;;;;;;;-1:-1:-1;18987:151:0;;;;;:::i;:::-;19103:18;;;;19076:7;19103:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18987:151;34651:29;;;;;;;;;;-1:-1:-1;34651:29:0;;;;;;;;4211:244;;;;;;;;;;-1:-1:-1;4211:244:0;;;;;:::i;:::-;;:::i;17179:83::-;17216:13;17249:5;17242:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17179:83;:::o;19285:169::-;19368:4;19385:39;1990:10;19408:7;19417:6;19385:8;:39::i;:::-;-1:-1:-1;19442:4:0;19285:169;;;;;:::o;19936:274::-;20042:4;20059:36;20069:6;20077:9;20088:6;20059:9;:36::i;:::-;20137:19;;;;;;;:11;:19;;;;;;;;1990:10;20137:33;;;;;;;;;20106:74;;20115:6;;20137:42;;20173:6;;20137:42;:::i;:::-;20106:8;:74::i;:::-;-1:-1:-1;20198:4:0;19936:274;;;;;:::o;20619:215::-;1990:10;20707:4;20756:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;20707:4;;20724:80;;20747:7;;20756:47;;20793:10;;20756:47;:::i;3908:148::-;3478:6;;:22;:6;;;;;1990:10;3478:22;3470:67;;;;;;;4544:2:1;3470:67:0;;;4526:21:1;;;4563:18;;;4556:30;4622:34;4602:18;;;4595:62;4674:18;;3470:67:0;;;;;;;;;3999:6:::1;::::0;3978:40:::1;::::0;4015:1:::1;::::0;3999:6:::1;::::0;::::1;3978:40;3999:6;::::0;3978:40:::1;::::0;4015:1;;3978:40:::1;4029:6;:19:::0;;;::::1;::::0;;3908:148::o;36379:120::-;3478:6;;:22;:6;;;;;1990:10;3478:22;3470:67;;;;;;;4544:2:1;3470:67:0;;;4526:21:1;;;4563:18;;;4556:30;4622:34;4602:18;;;4595:62;4674:18;;3470:67:0;4342:356:1;3470:67:0;36438:13:::1;:20:::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;36469:6:::1;:22:::0;;;;::::1;;::::0;;36379:120::o;17381:87::-;17420:13;17453:7;17446:14;;;;;:::i;21337:225::-;1990:10;21430:4;21479:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;21430:4;;21447:85;;21470:7;;21479:52;;21516:15;;21479:52;:::i;18749:175::-;18835:4;18852:42;1990:10;18876:9;18887:6;18852:9;:42::i;35975:396::-;36045:4;36056:24;:22;:24::i;:::-;36091:50;36101:10;36121:4;36128:12;36091:9;:50::i;:::-;36184:15;;36152:54;;36169:4;;36184:15;;34583:17;36152:8;:54::i;:::-;36217:15;;;;:31;36256:9;36275:4;36282:12;36217:15;;36310:10;36323:20;:15;36341:2;36323:20;:::i;:::-;36217:127;;;;;;;;;;5016:42:1;5085:15;;;36217:127:0;;;5067:34:1;5117:18;;;5110:34;;;;5160:18;;;5153:34;;;;5203:18;;;5196:34;;;;5267:15;;;5246:19;;;5239:44;5299:19;;;5292:35;;;;4978:19;;36217:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;36362:4:0;;35975:396;-1:-1:-1;;;;35975:396:0:o;4211:244::-;3478:6;;:22;:6;;;;;1990:10;3478:22;3470:67;;;;;;;4544:2:1;3470:67:0;;;4526:21:1;;;4563:18;;;4556:30;4622:34;4602:18;;;4595:62;4674:18;;3470:67:0;4342:356:1;3470:67:0;4300:22:::1;::::0;::::1;4292:73;;;::::0;::::1;::::0;;5851:2:1;4292:73:0::1;::::0;::::1;5833:21:1::0;5890:2;5870:18;;;5863:30;5929:34;5909:18;;;5902:62;6000:8;5980:18;;;5973:36;6026:19;;4292:73:0::1;5649:402:1::0;4292:73:0::1;4402:6;::::0;4381:38:::1;::::0;::::1;::::0;;::::1;::::0;4402:6:::1;::::0;::::1;;::::0;4381:38:::1;::::0;;;::::1;4430:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;4211:244::o;24342:346::-;24444:19;;;24436:68;;;;;;;6258:2:1;24436:68:0;;;6240:21:1;6297:2;6277:18;;;6270:30;6336:34;6316:18;;;6309:62;6407:6;6387:18;;;6380:34;6431:19;;24436:68:0;6056:400:1;24436:68:0;24523:21;;;24515:68;;;;;;;6663:2:1;24515:68:0;;;6645:21:1;6702:2;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6812:4;6792:18;;;6785:32;6834:19;;24515:68:0;6461:398:1;24515:68:0;24596:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24648:32;;1701:25:1;;;24648:32:0;;1674:18:1;24648:32:0;;;;;;;;24342:346;;;:::o;22052:491::-;22158:20;;;22150:70;;;;;;;7066:2:1;22150:70:0;;;7048:21:1;7105:2;7085:18;;;7078:30;7144:34;7124:18;;;7117:62;7215:7;7195:18;;;7188:35;7240:19;;22150:70:0;6864:401:1;22150:70:0;22239:23;;;22231:71;;;;;;;7472:2:1;22231:71:0;;;7454:21:1;7511:2;7491:18;;;7484:30;7550:34;7530:18;;;7523:62;7621:5;7601:18;;;7594:33;7644:19;;22231:71:0;7270:399:1;22231:71:0;22395:17;;;:9;:17;;;;;;;;;;;:26;;22415:6;;22395:26;:::i;:::-;22375:17;;;;:9;:17;;;;;;;;;;;:46;;;;22455:20;;;;;;;:29;;22478:6;;22455:29;:::i;:::-;22432:20;;;;:9;:20;;;;;;;;;;;;:52;;;;22500:35;1701:25:1;;;22432:20:0;;22500:35;;;;;;1674:18:1;22500:35:0;1555:177:1;35455:512:0;35554:15;;:25;;;;;;;;35508;;35554:15;;;:23;;:25;;;;;;;;;;;;;;:15;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35508:72;;35591:12;35606:7;:15;;;35630:4;35637:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35606:54;;;;;;;;;;8114:42:1;8183:15;;;35606:54:0;;;8165:34:1;8235:15;;8215:18;;;8208:43;8077:18;;35606:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35591:69;-1:-1:-1;35668:18:0;;;35665:298;;35710:7;:18;;;35737:4;35744:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35710:57;;;;;;;;;;8114:42:1;8183:15;;;35710:57:0;;;8165:34:1;8235:15;;8215:18;;;8208:43;8077:18;;35710:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35694:13;:73;;;;;;;;;;;;;;;;35773:6;:22;;;;;;;;35497:470;;35455:512::o;35665:298::-;35834:13;;:21;;;;:13;;:21;35831:121;;35875:13;:20;;;;;;;;;;;;;;35914:6;:22;;;;;;;;;;35831:121;35497:470;;35455:512::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;712:42;705:5;701:54;694:5;691:65;681:93;;770:1;767;760:12;681:93;626:154;:::o;785:315::-;853:6;861;914:2;902:9;893:7;889:23;885:32;882:52;;;930:1;927;920:12;882:52;969:9;956:23;988:31;1013:5;988:31;:::i;:::-;1038:5;1090:2;1075:18;;;;1062:32;;-1:-1:-1;;;785:315:1:o;1737:456::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:52;;;1899:1;1896;1889:12;1851:52;1938:9;1925:23;1957:31;1982:5;1957:31;:::i;:::-;2007:5;-1:-1:-1;2064:2:1;2049:18;;2036:32;2077:33;2036:32;2077:33;:::i;:::-;1737:456;;2129:7;;-1:-1:-1;;;2183:2:1;2168:18;;;;2155:32;;1737:456::o;2618:247::-;2677:6;2730:2;2718:9;2709:7;2705:23;2701:32;2698:52;;;2746:1;2743;2736:12;2698:52;2785:9;2772:23;2804:31;2829:5;2804:31;:::i;:::-;2854:5;2618:247;-1:-1:-1;;;2618:247:1:o;2870:180::-;2929:6;2982:2;2970:9;2961:7;2957:23;2953:32;2950:52;;;2998:1;2995;2988:12;2950:52;-1:-1:-1;3021:23:1;;2870:180;-1:-1:-1;2870:180:1:o;3055:388::-;3123:6;3131;3184:2;3172:9;3163:7;3159:23;3155:32;3152:52;;;3200:1;3197;3190:12;3152:52;3239:9;3226:23;3258:31;3283:5;3258:31;:::i;:::-;3308:5;-1:-1:-1;3365:2:1;3350:18;;3337:32;3378:33;3337:32;3378:33;:::i;:::-;3430:7;3420:17;;;3055:388;;;;;:::o;3448:437::-;3527:1;3523:12;;;;3570;;;3591:61;;3645:4;3637:6;3633:17;3623:27;;3591:61;3698:2;3690:6;3687:14;3667:18;3664:38;3661:218;;3735:77;3732:1;3725:88;3836:4;3833:1;3826:15;3864:4;3861:1;3854:15;3661:218;;3448:437;;;:::o;3890:184::-;3942:77;3939:1;3932:88;4039:4;4036:1;4029:15;4063:4;4060:1;4053:15;4079:128;4146:9;;;4167:11;;;4164:37;;;4181:18;;:::i;4212:125::-;4277:9;;;4298:10;;;4295:36;;;4311:18;;:::i;5338:306::-;5426:6;5434;5442;5495:2;5483:9;5474:7;5470:23;5466:32;5463:52;;;5511:1;5508;5501:12;5463:52;5540:9;5534:16;5524:26;;5590:2;5579:9;5575:18;5569:25;5559:35;;5634:2;5623:9;5619:18;5613:25;5603:35;;5338:306;;;;;:::o;7674:251::-;7744:6;7797:2;7785:9;7776:7;7772:23;7768:32;7765:52;;;7813:1;7810;7803:12;7765:52;7845:9;7839:16;7864:31;7889:5;7864:31;:::i

Swarm Source

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