ETH Price: $2,956.42 (-5.26%)
Gas: 8 Gwei

Token

JayPeggers (JAY)
 

Overview

Max Total Supply

106,542.934098732023880291 JAY

Holders

1,242 ( -0.081%)

Market

Price

$6.88 @ 0.002327 ETH (-4.39%)

Onchain Market Cap

$733,015.39

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lateniteninja.eth
Balance
1.85784275779210533 JAY

Value
$12.78 ( ~0.00432278866478379 Eth) [0.0017%]
0xf116569b3f888d639372a5485685a6d8ee28a593
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jaypeggers provides instant liquidity for NFT tax-loss harvesting.

Market

Volume (24H):$20,000.00
Market Capitalization:$0.00
Circulating Supply:0.00 JAY
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JAY

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 2 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 4 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 7 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 8 : JayERC20.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract JAY is ERC20Burnable, Ownable, ReentrancyGuard {
    address payable private FEE_ADDRESS;

    uint256 public constant MIN = 1000;
    uint256 public MAX = 1 * 10 ** 28;

    uint16 public SELL_FEE = 900;
    uint16 public BUY_FEE = 900;
    uint16 public constant FEE_BASE_1000 = 1000;

    uint8 public constant FEES = 33;

    bool public start = false;

    uint128 public constant ETHinWEI = 1 * 10 ** 18;

    event Price(uint256 time, uint256 recieved, uint256 sent);
    event MaxUpdated(uint256 max);
    event SellFeeUpdated(uint256 sellFee);
    event buyFeeUpdated(uint256 buyFee);

    constructor() payable ERC20("JayPeggers", "JAY") {
        _mint(msg.sender, msg.value * MIN);
        transfer(0x000000000000000000000000000000000000dEaD, 10000);
    }
    
    function setStart() public onlyOwner {
        start = true;
    }

    //Will be set to 100m eth value after 1 hr
    function setMax(uint256 _max) public onlyOwner {
        MAX = _max;
        emit MaxUpdated(_max);
    }

    // Sell Jay
    function sell(uint256 jay) external nonReentrant {
        require(jay > MIN, "must trade over min");

        // Total Eth to be sent
        uint256 eth = JAYtoETH(jay);

        // Burn of JAY
        _burn(msg.sender, jay);

        // Payment to sender
        sendEth(msg.sender, (eth * SELL_FEE) / FEE_BASE_1000);

        // Team fee
        sendEth(FEE_ADDRESS, eth / FEES);

        emit Price(block.timestamp, jay, eth);
    }

    // Buy Jay
    function buy(address reciever) external payable nonReentrant {
        require(start);
        require(msg.value > MIN && msg.value < MAX, "must trade over min");

        // Mint Jay to sender
        uint256 jay = ETHtoJAY(msg.value);
        _mint(reciever, (jay * BUY_FEE) / FEE_BASE_1000);

        // Team fee
        sendEth(FEE_ADDRESS, msg.value / FEES);

        emit Price(block.timestamp, jay, msg.value);
    }

    function JAYtoETH(uint256 value) public view returns (uint256) {
        return (value * address(this).balance) / totalSupply();
    }

    function ETHtoJAY(uint256 value) public view returns (uint256) {
        return (value * totalSupply()) / (address(this).balance - value);
    }

    function sendEth(address _address, uint256 _value) internal {
        (bool success, ) = _address.call{value: _value}("");
        require(success, "ETH Transfer failed.");
    }

    function setFeeAddress(address _address) external onlyOwner {
        require(_address != address(0x0));
        FEE_ADDRESS = payable(_address);
    }

    function setSellFee(uint16 amount) external onlyOwner {
        require(amount <= 969);
        require(amount > SELL_FEE);
        SELL_FEE = amount;
        emit SellFeeUpdated(amount);
    }

    function setBuyFee(uint16 amount) external onlyOwner {
        require(amount <= 969 && amount >= 10);
        BUY_FEE = amount;
        emit buyFeeUpdated(amount);
    }

    //utils
    function getBuyJay(uint256 amount) external view returns (uint256) {
        return
            (amount * (totalSupply()) * (BUY_FEE)) /
            (address(this).balance) /
            (FEE_BASE_1000);
    }

    function getSellJay(uint256 amount) external view returns (uint256) {
        return
            ((amount * address(this).balance) * (SELL_FEE)) /
            (totalSupply()) /
            (FEE_BASE_1000);
    }

    function deposit() public payable {}

    receive() external payable {}

    fallback() external payable {}
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":false,"internalType":"uint256","name":"max","type":"uint256"}],"name":"MaxUpdated","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":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recieved","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sent","type":"uint256"}],"name":"Price","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"SellFeeUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"}],"name":"buyFeeUpdated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BUY_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETHinWEI","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"ETHtoJAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_BASE_1000","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"JAYtoETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"}],"name":"buy","outputs":[],"stateMutability":"payable","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":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getBuyJay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getSellJay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"jay","type":"uint256"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526b204fce5e3e25026110000000600855610384600960006101000a81548161ffff021916908361ffff160217905550610384600960026101000a81548161ffff021916908361ffff1602179055506000600960046101000a81548160ff0219169083151502179055506040518060400160405280600a81526020017f4a617950656767657273000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a415900000000000000000000000000000000000000000000000000000000008152508160039081620000ea9190620008e8565b508060049081620000fc9190620008e8565b5050506200011f620001136200016560201b60201c565b6200016d60201b60201c565b600160068190555062000148336103e8346200013c9190620009fe565b6200023360201b60201c565b6200015e61dead612710620003a060201b60201c565b5062000d13565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029c9062000ac0565b60405180910390fd5b620002b960008383620003d360201b60201c565b8060026000828254620002cd919062000ae2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000b2e565b60405180910390a36200039c60008383620003d860201b60201c565b5050565b600080620003b36200016560201b60201c565b9050620003c8818585620003dd60201b60201c565b600191505092915050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200044f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004469062000bc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b89062000c59565b60405180910390fd5b620004d4838383620003d360201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005549062000cf1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200064d919062000b2e565b60405180910390a362000668848484620003d860201b60201c565b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006f057607f821691505b602082108103620007065762000705620006a8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000731565b6200077c868362000731565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007c9620007c3620007bd8462000794565b6200079e565b62000794565b9050919050565b6000819050919050565b620007e583620007a8565b620007fd620007f482620007d0565b8484546200073e565b825550505050565b600090565b6200081462000805565b62000821818484620007da565b505050565b5b8181101562000849576200083d6000826200080a565b60018101905062000827565b5050565b601f821115620008985762000862816200070c565b6200086d8462000721565b810160208510156200087d578190505b620008956200088c8562000721565b83018262000826565b50505b505050565b600082821c905092915050565b6000620008bd600019846008026200089d565b1980831691505092915050565b6000620008d88383620008aa565b9150826002028217905092915050565b620008f3826200066e565b67ffffffffffffffff8111156200090f576200090e62000679565b5b6200091b8254620006d7565b620009288282856200084d565b600060209050601f8311600181146200096057600084156200094b578287015190505b620009578582620008ca565b865550620009c7565b601f19841662000970866200070c565b60005b828110156200099a5784890151825560018201915060208501945060208101905062000973565b86831015620009ba5784890151620009b6601f891682620008aa565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a0b8262000794565b915062000a188362000794565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a545762000a53620009cf565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000aa8601f8362000a5f565b915062000ab58262000a70565b602082019050919050565b6000602082019050818103600083015262000adb8162000a99565b9050919050565b600062000aef8262000794565b915062000afc8362000794565b925082820190508082111562000b175762000b16620009cf565b5b92915050565b62000b288162000794565b82525050565b600060208201905062000b45600083018462000b1d565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000ba960258362000a5f565b915062000bb68262000b4b565b604082019050919050565b6000602082019050818103600083015262000bdc8162000b9a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000c4160238362000a5f565b915062000c4e8262000be3565b604082019050919050565b6000602082019050818103600083015262000c748162000c32565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062000cd960268362000a5f565b915062000ce68262000c7b565b604082019050919050565b6000602082019050818103600083015262000d0c8162000cca565b9050919050565b612b338062000d236000396000f3fe6080604052600436106102135760003560e01c806379cc679011610118578063d0e30db0116100a0578063e4849b321161006f578063e4849b321461079e578063f088d547146107c7578063f2fde38b146107e3578063f57557471461080c578063fea449f7146108495761021a565b8063d0e30db014610703578063d49d51811461070d578063dd62ed3e14610738578063e064648a146107755761021a565b806395d89b41116100e757806395d89b4114610608578063a391da8814610633578063a457c2d71461065e578063a9059cbb1461069b578063be9a6555146106d85761021a565b806379cc6790146105605780638705fcd4146105895780638b7b23ee146105b25780638da5cb5b146105dd5761021a565b806337a7f2b71161019b578063509bb1d71161016a578063509bb1d71461047b57806370a08231146104a657806370c47671146104e3578063715018a61461050c5780637478b325146105235761021a565b806337a7f2b7146103bf57806339509351146103ea57806342966c68146104275780634773a6a9146104505761021a565b80631fe9eabc116101e25780631fe9eabc146102ec57806323b872dd1461031557806327b9bb9c14610352578063313ce5671461037d57806335975a37146103a85761021a565b806306fdde031461021c578063095ea7b3146102475780630f0266f51461028457806318160ddd146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610231610886565b60405161023e9190611d4f565b60405180910390f35b34801561025357600080fd5b5061026e60048036038101906102699190611e0a565b610918565b60405161027b9190611e65565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190611e80565b61093b565b6040516102b89190611ebc565b60405180910390f35b3480156102cd57600080fd5b506102d6610992565b6040516102e39190611ebc565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190611e80565b61099c565b005b34801561032157600080fd5b5061033c60048036038101906103379190611ed7565b6109e5565b6040516103499190611e65565b60405180910390f35b34801561035e57600080fd5b50610367610a14565b6040516103749190611f47565b60405180910390f35b34801561038957600080fd5b50610392610a28565b60405161039f9190611f7e565b60405180910390f35b3480156103b457600080fd5b506103bd610a31565b005b3480156103cb57600080fd5b506103d4610a56565b6040516103e19190611ebc565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190611e0a565b610a5c565b60405161041e9190611e65565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190611e80565b610a93565b005b34801561045c57600080fd5b50610465610aa7565b6040516104729190611f47565b60405180910390f35b34801561048757600080fd5b50610490610abb565b60405161049d9190611f47565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190611f99565b610ac1565b6040516104da9190611ebc565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190611ff2565b610b09565b005b34801561051857600080fd5b50610521610b8c565b005b34801561052f57600080fd5b5061054a60048036038101906105459190611e80565b610ba0565b6040516105579190611ebc565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190611e0a565b610bf7565b005b34801561059557600080fd5b506105b060048036038101906105ab9190611f99565b610c17565b005b3480156105be57600080fd5b506105c7610c9c565b6040516105d49190611f7e565b60405180910390f35b3480156105e957600080fd5b506105f2610ca1565b6040516105ff919061202e565b60405180910390f35b34801561061457600080fd5b5061061d610ccb565b60405161062a9190611d4f565b60405180910390f35b34801561063f57600080fd5b50610648610d5d565b6040516106559190612074565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190611e0a565b610d69565b6040516106929190611e65565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190611e0a565b610de0565b6040516106cf9190611e65565b60405180910390f35b3480156106e457600080fd5b506106ed610e03565b6040516106fa9190611e65565b60405180910390f35b61070b610e16565b005b34801561071957600080fd5b50610722610e18565b60405161072f9190611ebc565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a919061208f565b610e1e565b60405161076c9190611ebc565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190611ff2565b610ea5565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190611e80565b610f3b565b005b6107e160048036038101906107dc9190611f99565b61105a565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190611f99565b611195565b005b34801561081857600080fd5b50610833600480360381019061082e9190611e80565b611218565b6040516108409190611ebc565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190611e80565b61124a565b60405161087d9190611ebc565b60405180910390f35b606060038054610895906120fe565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906120fe565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b600080610923611271565b9050610930818585611279565b600191505092915050565b60006103e861ffff1647600960029054906101000a900461ffff1661ffff16610962610992565b8561096d919061215e565b610977919061215e565b61098191906121e7565b61098b91906121e7565b9050919050565b6000600254905090565b6109a4611442565b806008819055507f772ff6e3371c3a674ced69185fcffe1c41e3e910595f1f186268b6bf79cfb7f7816040516109da9190611ebc565b60405180910390a150565b6000806109f0611271565b90506109fd8582856114c0565b610a0885858561154c565b60019150509392505050565b600960029054906101000a900461ffff1681565b60006012905090565b610a39611442565b6001600960046101000a81548160ff021916908315150217905550565b6103e881565b600080610a67611271565b9050610a88818585610a798589610e1e565b610a839190612218565b611279565b600191505092915050565b610aa4610a9e611271565b826117c2565b50565b600960009054906101000a900461ffff1681565b6103e881565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b11611442565b6103c98161ffff1611158015610b2c5750600a8161ffff1610155b610b3557600080fd5b80600960026101000a81548161ffff021916908361ffff1602179055507f11953a0453d6e2e337ab856b9de1f4818ffa2a51f3a9c12f924e2a043ae37f6d81604051610b819190612287565b60405180910390a150565b610b94611442565b610b9e600061198f565b565b60006103e861ffff16610bb1610992565b600960009054906101000a900461ffff1661ffff164785610bd2919061215e565b610bdc919061215e565b610be691906121e7565b610bf091906121e7565b9050919050565b610c0982610c03611271565b836114c0565b610c1382826117c2565b5050565b610c1f611442565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5857600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602181565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cda906120fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610d06906120fe565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b5050505050905090565b670de0b6b3a764000081565b600080610d74611271565b90506000610d828286610e1e565b905083811015610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90612314565b60405180910390fd5b610dd48286868403611279565b60019250505092915050565b600080610deb611271565b9050610df881858561154c565b600191505092915050565b600960049054906101000a900460ff1681565b565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ead611442565b6103c98161ffff161115610ec057600080fd5b600960009054906101000a900461ffff1661ffff168161ffff1611610ee457600080fd5b80600960006101000a81548161ffff021916908361ffff1602179055507f495ee53ee22006979ebc689a00ed737d7c13b6419142f82dcaea4ed95ac1e78081604051610f309190612287565b60405180910390a150565b610f43611a55565b6103e88111610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612380565b60405180910390fd5b6000610f928261124a565b9050610f9e33836117c2565b610fd8336103e861ffff16600960009054906101000a900461ffff1661ffff1684610fc9919061215e565b610fd391906121e7565b611aa4565b611013600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602160ff168361100e91906121e7565b611aa4565b7f4afcb4a87cdbd9974efdb92ee48bc8d7cd0ae4bf217004db3d080cbaee652ca7428383604051611046939291906123a0565b60405180910390a150611057611b55565b50565b611062611a55565b600960049054906101000a900460ff1661107b57600080fd5b6103e83411801561108d575060085434105b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612380565b60405180910390fd5b60006110d734611218565b9050611113826103e861ffff16600960029054906101000a900461ffff1661ffff1684611104919061215e565b61110e91906121e7565b611b5f565b61114e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602160ff163461114991906121e7565b611aa4565b7f4afcb4a87cdbd9974efdb92ee48bc8d7cd0ae4bf217004db3d080cbaee652ca7428234604051611181939291906123a0565b60405180910390a150611192611b55565b50565b61119d611442565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612449565b60405180910390fd5b6112158161198f565b50565b600081476112269190612469565b61122e610992565b83611239919061215e565b61124391906121e7565b9050919050565b6000611254610992565b4783611260919061215e565b61126a91906121e7565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061250f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906125a1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114359190611ebc565b60405180910390a3505050565b61144a611271565b73ffffffffffffffffffffffffffffffffffffffff16611468610ca1565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061260d565b60405180910390fd5b565b60006114cc8484610e1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115465781811015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90612679565b60405180910390fd5b6115458484848403611279565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b29061270b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061279d565b60405180910390fd5b611635838383611cb5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061282f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a99190611ebc565b60405180910390a36117bc848484611cba565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906128c1565b60405180910390fd5b61183d82600083611cb5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90612953565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119769190611ebc565b60405180910390a361198a83600084611cba565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906129bf565b60405180910390fd5b6002600681905550565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611aca90612a10565b60006040518083038185875af1925050503d8060008114611b07576040519150601f19603f3d011682016040523d82523d6000602084013e611b0c565b606091505b5050905080611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790612a71565b60405180910390fd5b505050565b6001600681905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590612add565b60405180910390fd5b611bda60008383611cb5565b8060026000828254611bec9190612218565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9d9190611ebc565b60405180910390a3611cb160008383611cba565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cf9578082015181840152602081019050611cde565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d2182611cbf565b611d2b8185611cca565b9350611d3b818560208601611cdb565b611d4481611d05565b840191505092915050565b60006020820190508181036000830152611d698184611d16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611da182611d76565b9050919050565b611db181611d96565b8114611dbc57600080fd5b50565b600081359050611dce81611da8565b92915050565b6000819050919050565b611de781611dd4565b8114611df257600080fd5b50565b600081359050611e0481611dde565b92915050565b60008060408385031215611e2157611e20611d71565b5b6000611e2f85828601611dbf565b9250506020611e4085828601611df5565b9150509250929050565b60008115159050919050565b611e5f81611e4a565b82525050565b6000602082019050611e7a6000830184611e56565b92915050565b600060208284031215611e9657611e95611d71565b5b6000611ea484828501611df5565b91505092915050565b611eb681611dd4565b82525050565b6000602082019050611ed16000830184611ead565b92915050565b600080600060608486031215611ef057611eef611d71565b5b6000611efe86828701611dbf565b9350506020611f0f86828701611dbf565b9250506040611f2086828701611df5565b9150509250925092565b600061ffff82169050919050565b611f4181611f2a565b82525050565b6000602082019050611f5c6000830184611f38565b92915050565b600060ff82169050919050565b611f7881611f62565b82525050565b6000602082019050611f936000830184611f6f565b92915050565b600060208284031215611faf57611fae611d71565b5b6000611fbd84828501611dbf565b91505092915050565b611fcf81611f2a565b8114611fda57600080fd5b50565b600081359050611fec81611fc6565b92915050565b60006020828403121561200857612007611d71565b5b600061201684828501611fdd565b91505092915050565b61202881611d96565b82525050565b6000602082019050612043600083018461201f565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b61206e81612049565b82525050565b60006020820190506120896000830184612065565b92915050565b600080604083850312156120a6576120a5611d71565b5b60006120b485828601611dbf565b92505060206120c585828601611dbf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061211657607f821691505b602082108103612129576121286120cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061216982611dd4565b915061217483611dd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121ad576121ac61212f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121f282611dd4565b91506121fd83611dd4565b92508261220d5761220c6121b8565b5b828204905092915050565b600061222382611dd4565b915061222e83611dd4565b92508282019050808211156122465761224561212f565b5b92915050565b6000819050919050565b600061227161226c61226784611f2a565b61224c565b611dd4565b9050919050565b61228181612256565b82525050565b600060208201905061229c6000830184612278565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122fe602583611cca565b9150612309826122a2565b604082019050919050565b6000602082019050818103600083015261232d816122f1565b9050919050565b7f6d757374207472616465206f766572206d696e00000000000000000000000000600082015250565b600061236a601383611cca565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b60006060820190506123b56000830186611ead565b6123c26020830185611ead565b6123cf6040830184611ead565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612433602683611cca565b915061243e826123d7565b604082019050919050565b6000602082019050818103600083015261246281612426565b9050919050565b600061247482611dd4565b915061247f83611dd4565b92508282039050818111156124975761249661212f565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124f9602483611cca565b91506125048261249d565b604082019050919050565b60006020820190508181036000830152612528816124ec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061258b602283611cca565b91506125968261252f565b604082019050919050565b600060208201905081810360008301526125ba8161257e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125f7602083611cca565b9150612602826125c1565b602082019050919050565b60006020820190508181036000830152612626816125ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612663601d83611cca565b915061266e8261262d565b602082019050919050565b6000602082019050818103600083015261269281612656565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126f5602583611cca565b915061270082612699565b604082019050919050565b60006020820190508181036000830152612724816126e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612787602383611cca565b91506127928261272b565b604082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612819602683611cca565b9150612824826127bd565b604082019050919050565b600060208201905081810360008301526128488161280c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ab602183611cca565b91506128b68261284f565b604082019050919050565b600060208201905081810360008301526128da8161289e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061293d602283611cca565b9150612948826128e1565b604082019050919050565b6000602082019050818103600083015261296c81612930565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006129a9601f83611cca565b91506129b482612973565b602082019050919050565b600060208201905081810360008301526129d88161299c565b9050919050565b600081905092915050565b50565b60006129fa6000836129df565b9150612a05826129ea565b600082019050919050565b6000612a1b826129ed565b9150819050919050565b7f455448205472616e73666572206661696c65642e000000000000000000000000600082015250565b6000612a5b601483611cca565b9150612a6682612a25565b602082019050919050565b60006020820190508181036000830152612a8a81612a4e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612ac7601f83611cca565b9150612ad282612a91565b602082019050919050565b60006020820190508181036000830152612af681612aba565b905091905056fea26469706673582212207ae637d44d9d917a349bdade8fbac13d45ff1fa205371c9f295efb86f52f211a64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806379cc679011610118578063d0e30db0116100a0578063e4849b321161006f578063e4849b321461079e578063f088d547146107c7578063f2fde38b146107e3578063f57557471461080c578063fea449f7146108495761021a565b8063d0e30db014610703578063d49d51811461070d578063dd62ed3e14610738578063e064648a146107755761021a565b806395d89b41116100e757806395d89b4114610608578063a391da8814610633578063a457c2d71461065e578063a9059cbb1461069b578063be9a6555146106d85761021a565b806379cc6790146105605780638705fcd4146105895780638b7b23ee146105b25780638da5cb5b146105dd5761021a565b806337a7f2b71161019b578063509bb1d71161016a578063509bb1d71461047b57806370a08231146104a657806370c47671146104e3578063715018a61461050c5780637478b325146105235761021a565b806337a7f2b7146103bf57806339509351146103ea57806342966c68146104275780634773a6a9146104505761021a565b80631fe9eabc116101e25780631fe9eabc146102ec57806323b872dd1461031557806327b9bb9c14610352578063313ce5671461037d57806335975a37146103a85761021a565b806306fdde031461021c578063095ea7b3146102475780630f0266f51461028457806318160ddd146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610231610886565b60405161023e9190611d4f565b60405180910390f35b34801561025357600080fd5b5061026e60048036038101906102699190611e0a565b610918565b60405161027b9190611e65565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190611e80565b61093b565b6040516102b89190611ebc565b60405180910390f35b3480156102cd57600080fd5b506102d6610992565b6040516102e39190611ebc565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190611e80565b61099c565b005b34801561032157600080fd5b5061033c60048036038101906103379190611ed7565b6109e5565b6040516103499190611e65565b60405180910390f35b34801561035e57600080fd5b50610367610a14565b6040516103749190611f47565b60405180910390f35b34801561038957600080fd5b50610392610a28565b60405161039f9190611f7e565b60405180910390f35b3480156103b457600080fd5b506103bd610a31565b005b3480156103cb57600080fd5b506103d4610a56565b6040516103e19190611ebc565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190611e0a565b610a5c565b60405161041e9190611e65565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190611e80565b610a93565b005b34801561045c57600080fd5b50610465610aa7565b6040516104729190611f47565b60405180910390f35b34801561048757600080fd5b50610490610abb565b60405161049d9190611f47565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190611f99565b610ac1565b6040516104da9190611ebc565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190611ff2565b610b09565b005b34801561051857600080fd5b50610521610b8c565b005b34801561052f57600080fd5b5061054a60048036038101906105459190611e80565b610ba0565b6040516105579190611ebc565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190611e0a565b610bf7565b005b34801561059557600080fd5b506105b060048036038101906105ab9190611f99565b610c17565b005b3480156105be57600080fd5b506105c7610c9c565b6040516105d49190611f7e565b60405180910390f35b3480156105e957600080fd5b506105f2610ca1565b6040516105ff919061202e565b60405180910390f35b34801561061457600080fd5b5061061d610ccb565b60405161062a9190611d4f565b60405180910390f35b34801561063f57600080fd5b50610648610d5d565b6040516106559190612074565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190611e0a565b610d69565b6040516106929190611e65565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190611e0a565b610de0565b6040516106cf9190611e65565b60405180910390f35b3480156106e457600080fd5b506106ed610e03565b6040516106fa9190611e65565b60405180910390f35b61070b610e16565b005b34801561071957600080fd5b50610722610e18565b60405161072f9190611ebc565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a919061208f565b610e1e565b60405161076c9190611ebc565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190611ff2565b610ea5565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190611e80565b610f3b565b005b6107e160048036038101906107dc9190611f99565b61105a565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190611f99565b611195565b005b34801561081857600080fd5b50610833600480360381019061082e9190611e80565b611218565b6040516108409190611ebc565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190611e80565b61124a565b60405161087d9190611ebc565b60405180910390f35b606060038054610895906120fe565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906120fe565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b600080610923611271565b9050610930818585611279565b600191505092915050565b60006103e861ffff1647600960029054906101000a900461ffff1661ffff16610962610992565b8561096d919061215e565b610977919061215e565b61098191906121e7565b61098b91906121e7565b9050919050565b6000600254905090565b6109a4611442565b806008819055507f772ff6e3371c3a674ced69185fcffe1c41e3e910595f1f186268b6bf79cfb7f7816040516109da9190611ebc565b60405180910390a150565b6000806109f0611271565b90506109fd8582856114c0565b610a0885858561154c565b60019150509392505050565b600960029054906101000a900461ffff1681565b60006012905090565b610a39611442565b6001600960046101000a81548160ff021916908315150217905550565b6103e881565b600080610a67611271565b9050610a88818585610a798589610e1e565b610a839190612218565b611279565b600191505092915050565b610aa4610a9e611271565b826117c2565b50565b600960009054906101000a900461ffff1681565b6103e881565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b11611442565b6103c98161ffff1611158015610b2c5750600a8161ffff1610155b610b3557600080fd5b80600960026101000a81548161ffff021916908361ffff1602179055507f11953a0453d6e2e337ab856b9de1f4818ffa2a51f3a9c12f924e2a043ae37f6d81604051610b819190612287565b60405180910390a150565b610b94611442565b610b9e600061198f565b565b60006103e861ffff16610bb1610992565b600960009054906101000a900461ffff1661ffff164785610bd2919061215e565b610bdc919061215e565b610be691906121e7565b610bf091906121e7565b9050919050565b610c0982610c03611271565b836114c0565b610c1382826117c2565b5050565b610c1f611442565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5857600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602181565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cda906120fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610d06906120fe565b8015610d535780601f10610d2857610100808354040283529160200191610d53565b820191906000526020600020905b815481529060010190602001808311610d3657829003601f168201915b5050505050905090565b670de0b6b3a764000081565b600080610d74611271565b90506000610d828286610e1e565b905083811015610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe90612314565b60405180910390fd5b610dd48286868403611279565b60019250505092915050565b600080610deb611271565b9050610df881858561154c565b600191505092915050565b600960049054906101000a900460ff1681565b565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ead611442565b6103c98161ffff161115610ec057600080fd5b600960009054906101000a900461ffff1661ffff168161ffff1611610ee457600080fd5b80600960006101000a81548161ffff021916908361ffff1602179055507f495ee53ee22006979ebc689a00ed737d7c13b6419142f82dcaea4ed95ac1e78081604051610f309190612287565b60405180910390a150565b610f43611a55565b6103e88111610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612380565b60405180910390fd5b6000610f928261124a565b9050610f9e33836117c2565b610fd8336103e861ffff16600960009054906101000a900461ffff1661ffff1684610fc9919061215e565b610fd391906121e7565b611aa4565b611013600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602160ff168361100e91906121e7565b611aa4565b7f4afcb4a87cdbd9974efdb92ee48bc8d7cd0ae4bf217004db3d080cbaee652ca7428383604051611046939291906123a0565b60405180910390a150611057611b55565b50565b611062611a55565b600960049054906101000a900460ff1661107b57600080fd5b6103e83411801561108d575060085434105b6110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612380565b60405180910390fd5b60006110d734611218565b9050611113826103e861ffff16600960029054906101000a900461ffff1661ffff1684611104919061215e565b61110e91906121e7565b611b5f565b61114e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16602160ff163461114991906121e7565b611aa4565b7f4afcb4a87cdbd9974efdb92ee48bc8d7cd0ae4bf217004db3d080cbaee652ca7428234604051611181939291906123a0565b60405180910390a150611192611b55565b50565b61119d611442565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390612449565b60405180910390fd5b6112158161198f565b50565b600081476112269190612469565b61122e610992565b83611239919061215e565b61124391906121e7565b9050919050565b6000611254610992565b4783611260919061215e565b61126a91906121e7565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df9061250f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906125a1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114359190611ebc565b60405180910390a3505050565b61144a611271565b73ffffffffffffffffffffffffffffffffffffffff16611468610ca1565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b59061260d565b60405180910390fd5b565b60006114cc8484610e1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115465781811015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90612679565b60405180910390fd5b6115458484848403611279565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b29061270b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061279d565b60405180910390fd5b611635838383611cb5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b29061282f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a99190611ebc565b60405180910390a36117bc848484611cba565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906128c1565b60405180910390fd5b61183d82600083611cb5565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90612953565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119769190611ebc565b60405180910390a361198a83600084611cba565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906129bf565b60405180910390fd5b6002600681905550565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611aca90612a10565b60006040518083038185875af1925050503d8060008114611b07576040519150601f19603f3d011682016040523d82523d6000602084013e611b0c565b606091505b5050905080611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790612a71565b60405180910390fd5b505050565b6001600681905550565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590612add565b60405180910390fd5b611bda60008383611cb5565b8060026000828254611bec9190612218565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c9d9190611ebc565b60405180910390a3611cb160008383611cba565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cf9578082015181840152602081019050611cde565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d2182611cbf565b611d2b8185611cca565b9350611d3b818560208601611cdb565b611d4481611d05565b840191505092915050565b60006020820190508181036000830152611d698184611d16565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611da182611d76565b9050919050565b611db181611d96565b8114611dbc57600080fd5b50565b600081359050611dce81611da8565b92915050565b6000819050919050565b611de781611dd4565b8114611df257600080fd5b50565b600081359050611e0481611dde565b92915050565b60008060408385031215611e2157611e20611d71565b5b6000611e2f85828601611dbf565b9250506020611e4085828601611df5565b9150509250929050565b60008115159050919050565b611e5f81611e4a565b82525050565b6000602082019050611e7a6000830184611e56565b92915050565b600060208284031215611e9657611e95611d71565b5b6000611ea484828501611df5565b91505092915050565b611eb681611dd4565b82525050565b6000602082019050611ed16000830184611ead565b92915050565b600080600060608486031215611ef057611eef611d71565b5b6000611efe86828701611dbf565b9350506020611f0f86828701611dbf565b9250506040611f2086828701611df5565b9150509250925092565b600061ffff82169050919050565b611f4181611f2a565b82525050565b6000602082019050611f5c6000830184611f38565b92915050565b600060ff82169050919050565b611f7881611f62565b82525050565b6000602082019050611f936000830184611f6f565b92915050565b600060208284031215611faf57611fae611d71565b5b6000611fbd84828501611dbf565b91505092915050565b611fcf81611f2a565b8114611fda57600080fd5b50565b600081359050611fec81611fc6565b92915050565b60006020828403121561200857612007611d71565b5b600061201684828501611fdd565b91505092915050565b61202881611d96565b82525050565b6000602082019050612043600083018461201f565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b61206e81612049565b82525050565b60006020820190506120896000830184612065565b92915050565b600080604083850312156120a6576120a5611d71565b5b60006120b485828601611dbf565b92505060206120c585828601611dbf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061211657607f821691505b602082108103612129576121286120cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061216982611dd4565b915061217483611dd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121ad576121ac61212f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006121f282611dd4565b91506121fd83611dd4565b92508261220d5761220c6121b8565b5b828204905092915050565b600061222382611dd4565b915061222e83611dd4565b92508282019050808211156122465761224561212f565b5b92915050565b6000819050919050565b600061227161226c61226784611f2a565b61224c565b611dd4565b9050919050565b61228181612256565b82525050565b600060208201905061229c6000830184612278565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122fe602583611cca565b9150612309826122a2565b604082019050919050565b6000602082019050818103600083015261232d816122f1565b9050919050565b7f6d757374207472616465206f766572206d696e00000000000000000000000000600082015250565b600061236a601383611cca565b915061237582612334565b602082019050919050565b600060208201905081810360008301526123998161235d565b9050919050565b60006060820190506123b56000830186611ead565b6123c26020830185611ead565b6123cf6040830184611ead565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612433602683611cca565b915061243e826123d7565b604082019050919050565b6000602082019050818103600083015261246281612426565b9050919050565b600061247482611dd4565b915061247f83611dd4565b92508282039050818111156124975761249661212f565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124f9602483611cca565b91506125048261249d565b604082019050919050565b60006020820190508181036000830152612528816124ec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061258b602283611cca565b91506125968261252f565b604082019050919050565b600060208201905081810360008301526125ba8161257e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125f7602083611cca565b9150612602826125c1565b602082019050919050565b60006020820190508181036000830152612626816125ea565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612663601d83611cca565b915061266e8261262d565b602082019050919050565b6000602082019050818103600083015261269281612656565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126f5602583611cca565b915061270082612699565b604082019050919050565b60006020820190508181036000830152612724816126e8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612787602383611cca565b91506127928261272b565b604082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612819602683611cca565b9150612824826127bd565b604082019050919050565b600060208201905081810360008301526128488161280c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ab602183611cca565b91506128b68261284f565b604082019050919050565b600060208201905081810360008301526128da8161289e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061293d602283611cca565b9150612948826128e1565b604082019050919050565b6000602082019050818103600083015261296c81612930565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006129a9601f83611cca565b91506129b482612973565b602082019050919050565b600060208201905081810360008301526129d88161299c565b9050919050565b600081905092915050565b50565b60006129fa6000836129df565b9150612a05826129ea565b600082019050919050565b6000612a1b826129ed565b9150819050919050565b7f455448205472616e73666572206661696c65642e000000000000000000000000600082015250565b6000612a5b601483611cca565b9150612a6682612a25565b602082019050919050565b60006020820190508181036000830152612a8a81612a4e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612ac7601f83611cca565b9150612ad282612a91565b602082019050919050565b60006020820190508181036000830152612af681612aba565b905091905056fea26469706673582212207ae637d44d9d917a349bdade8fbac13d45ff1fa205371c9f295efb86f52f211a64736f6c63430008100033

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.