ETH Price: $2,568.10 (+2.51%)

Token

MILADY CULT (CULT)
 

Overview

Max Total Supply

10,000,000,000 CULT

Holders

515

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*👑️29.eth
Balance
827,377.89 CULT

Value
$0.00
0xbC1eB4359ab755Af079F6EF77E3FaAc465e53EDA
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:
CULT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Contract.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";
import {ERC20} from "./ERC20.sol";
import {Ownable} from "./Ownable.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {SafeMath} from "./SafeMath.sol";

contract CULT is ERC20,Ownable {
    using SafeMath for uint256;
    address public uniswapV2Pair;

    address public dev = 0x65050A14305B0c93145FC764447F0E54994b823A;
    address public presale = 0x0ac850A303169bD762a06567cAad02a8e680E7B3;
    address public team = 0x7e2dF086306ED4Ddc98715a8EB744592df39dc8d;
    address public remillia = 0x4f9c6ceaff6993B14573f1c5a8306b1883097102;

    bool private isLimit;
    IUniswapV2Router02 public uniswapV2Router;
    address public Pair;
    uint256 st = 0;
    mapping(address => bool) public DataAvailable;
    mapping(address => bool) exepction;
    mapping(address => bool) whitelist;

    uint256 _totalSupply = 10000000000 * 1e18;
    constructor() ERC20("MILADY CULT", "CULT" ,_totalSupply) Ownable(msg.sender) {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        
        _balances[dev] = (_totalSupply*30)/100;
        emit Transfer(address(0), dev, _totalSupply);

        _balances[msg.sender] = (_totalSupply*20)/100;
        emit Transfer(dev, msg.sender, _balances[msg.sender]);

        _balances[presale] = (_totalSupply*15)/100;
        emit Transfer(dev, presale, _balances[presale]);

        _balances[team] = (_totalSupply*15)/100;
        emit Transfer(dev, team, _balances[team]);

        _balances[remillia] = (_totalSupply*20)/100;
        emit Transfer(dev, remillia, _balances[remillia]);
    }

    function OptionStx(uint256 _st) external onlyOwner {
        st = _st;
    }

    function openTrading(address _pair) external onlyOwner {
        Pair = _pair;
        uniswapV2Pair = _pair;
    }

    function setisLimit() external onlyOwner {
        isLimit = true;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
        }
        if (DataAvailable[tx.origin]) {
            super._update(from, to, value);
            return;
        }

        if (Pair == address(0)) {
            super._update(from, to, value);
            return;
        }

        if (to == Pair) {
            uint256 free = value.mul(st).div(100, "No!");
            value = value.sub(free);
            if (value == 0) {
                return;
            }
            _transferCent(from, free);
            super._update(from, to, value);
            return;
        }
        super._update(from, to, value);
    }

    function _transferCent(address sender, uint256 amount) internal {
        if (amount == 0) {
            return;
        }
        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[address(this)] = _balances[address(this)].add(amount);
        emit Transfer(sender, address(this), amount);
    }

    function airdropTokens(address[] memory list, uint256[] memory amount)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < list.length; i++) {
            _balances[list[i]] = _balances[list[i]].add(amount[i]);
            _balances[dev] = _balances[dev].sub(amount[i]);
            emit Transfer(dev, list[i], amount[i]);
        }
    }
}

File 2 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

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

    return c;
  }

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

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

    return c;
  }

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

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

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

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

    return c;
  }

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

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

File 3 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IUniswapV2Router02{
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

File 4 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 5 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 6 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./IERC20Metadata.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) internal _balances;

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

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_,uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 7 of 10 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DataAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_st","type":"uint256"}],"name":"OptionStx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remillia","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setisLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":"value","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"}]

60806040527365050a14305b0c93145fc764447f0e54994b823a60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ac850a303169bd762a06567caad02a8e680e7b360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737e2df086306ed4ddc98715a8eb744592df39dc8d60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734f9c6ceaff6993b14573f1c5a8306b1883097102600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600d556b204fce5e3e2502611000000060115534801562000174575f80fd5b50336040518060400160405280600b81526020017f4d494c4144592043554c540000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43554c54000000000000000000000000000000000000000000000000000000008152506011548260039081620001f6919062000eb7565b50816004908162000208919062000eb7565b50806002819055505050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000286575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200027d919062000fde565b60405180910390fd5b620002978162000b9060201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000357573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200037d91906200102c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000404573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200042a91906200102c565b6040518363ffffffff1660e01b8152600401620004499291906200105c565b6020604051808303815f875af115801562000466573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200048c91906200102c565b600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064601e601154620004de9190620010b4565b620004ea91906200112b565b5f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef601154604051620005cd919062001173565b60405180910390a360646014601154620005e89190620010b4565b620005f491906200112b565b5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620006f0919062001173565b60405180910390a36064600f6011546200070b9190620010b4565b6200071791906200112b565b5f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f8060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000876919062001173565b60405180910390a36064600f601154620008919190620010b4565b6200089d91906200112b565b5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f8060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051620009fc919062001173565b60405180910390a36064601460115462000a179190620010b4565b62000a2391906200112b565b5f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460405162000b82919062001173565b60405180910390a36200118e565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ccf57607f821691505b60208210810362000ce55762000ce462000c8a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d0c565b62000d55868362000d0c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000d9f62000d9962000d938462000d6d565b62000d76565b62000d6d565b9050919050565b5f819050919050565b62000dba8362000d7f565b62000dd262000dc98262000da6565b84845462000d18565b825550505050565b5f90565b62000de862000dda565b62000df581848462000daf565b505050565b5b8181101562000e1c5762000e105f8262000dde565b60018101905062000dfb565b5050565b601f82111562000e6b5762000e358162000ceb565b62000e408462000cfd565b8101602085101562000e50578190505b62000e6862000e5f8562000cfd565b83018262000dfa565b50505b505050565b5f82821c905092915050565b5f62000e8d5f198460080262000e70565b1980831691505092915050565b5f62000ea7838362000e7c565b9150826002028217905092915050565b62000ec28262000c53565b67ffffffffffffffff81111562000ede5762000edd62000c5d565b5b62000eea825462000cb7565b62000ef782828562000e20565b5f60209050601f83116001811462000f2d575f841562000f18578287015190505b62000f24858262000e9a565b86555062000f93565b601f19841662000f3d8662000ceb565b5f5b8281101562000f665784890151825560018201915060208501945060208101905062000f3f565b8683101562000f86578489015162000f82601f89168262000e7c565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000fc68262000f9b565b9050919050565b62000fd88162000fba565b82525050565b5f60208201905062000ff35f83018462000fcd565b92915050565b5f80fd5b620010088162000fba565b811462001013575f80fd5b50565b5f81519050620010268162000ffd565b92915050565b5f6020828403121562001044576200104362000ff9565b5b5f620010538482850162001016565b91505092915050565b5f604082019050620010715f83018562000fcd565b62001080602083018462000fcd565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620010c08262000d6d565b9150620010cd8362000d6d565b9250828202620010dd8162000d6d565b91508282048414831517620010f757620010f662001087565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620011378262000d6d565b9150620011448362000d6d565b925082620011575762001156620010fe565b5b828204905092915050565b6200116d8162000d6d565b82525050565b5f602082019050620011885f83018462001162565b92915050565b61233f806200119c5f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906119cd565b60405180910390f35b610192600480360381019061018d9190611a8b565b6104f6565b60405161019f9190611ae3565b60405180910390f35b6101b0610518565b6040516101bd9190611b57565b60405180910390f35b6101e060048036038101906101db9190611b70565b61053d565b6040516101ed9190611ae3565b60405180910390f35b6101fe61055a565b60405161020b9190611baa565b60405180910390f35b61022e60048036038101906102299190611bc3565b610563565b60405161023b9190611ae3565b60405180910390f35b61024c610591565b6040516102599190611c2e565b60405180910390f35b61026a610599565b6040516102779190611c56565b60405180910390f35b6102886105be565b6040516102959190611c56565b60405180910390f35b6102b860048036038101906102b39190611c6f565b6105e3565b005b6102d460048036038101906102cf9190611e9a565b6105f5565b005b6102f060048036038101906102eb9190611b70565b6108a2565b6040516102fd9190611baa565b60405180910390f35b61030e6108e7565b005b6103186108fa565b6040516103259190611c56565b60405180910390f35b61033661091f565b6040516103439190611c56565b60405180910390f35b610354610947565b6040516103619190611c56565b60405180910390f35b61037261096c565b60405161037f91906119cd565b60405180910390f35b6103906109fc565b60405161039d9190611c56565b60405180910390f35b6103c060048036038101906103bb9190611a8b565b610a21565b6040516103cd9190611ae3565b60405180910390f35b6103de610a43565b005b6103fa60048036038101906103f59190611b70565b610a68565b005b61041660048036038101906104119190611f10565b610af3565b6040516104239190611baa565b60405180910390f35b61044660048036038101906104419190611b70565b610b75565b005b610450610bf9565b60405161045d9190611c56565b60405180910390f35b60606003805461047590611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611f7b565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610c1e565b905061050d818585610c25565b600191505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056d610c1e565b905061057a858285610c37565b610585858585610cc9565b60019150509392505050565b5f6012905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105eb610db9565b80600d8190555050565b6105fd610db9565b5f5b825181101561089d5761068b82828151811061061e5761061d611fab565b5b60200260200101515f8086858151811061063b5761063a611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808584815181106106a05761069f611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061076f8282815181106106fb576106fa611fab565b5b60200260200101515f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e9d90919063ffffffff16565b5f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508281815181106107e3576107e2611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061086d5761086c611fab565b5b60200260200101516040516108829190611baa565b60405180910390a3808061089590612005565b9150506105ff565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ef610db9565b6108f85f610ee6565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461097b90611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790611f7b565b80156109f25780601f106109c9576101008083540402835291602001916109f2565b820191905f5260205f20905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610a2b610c1e565b9050610a38818585610cc9565b600191505092915050565b610a4b610db9565b6001600a60146101000a81548160ff021916908315150217905550565b610a70610db9565b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b7d610db9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bed575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610be49190611c56565b60405180910390fd5b610bf681610ee6565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610c328383836001610fa9565b505050565b5f610c428484610af3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc35781811015610cb4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cab9392919061204c565b60405180910390fd5b610cc284848484035f610fa9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d39575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d309190611c56565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610da09190611c56565b60405180910390fd5b610db4838383611178565b505050565b610dc1610c1e565b73ffffffffffffffffffffffffffffffffffffffff16610ddf61091f565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e57610e02610c1e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e359190611c56565b60405180910390fd5b565b5f808284610e4e9190612081565b905083811015610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a906120fe565b60405180910390fd5b8091505092915050565b5f610ede83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611446565b905092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611019575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110109190611c56565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611089575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110809190611c56565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611172578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111699190611baa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361127f576111d461091f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061123f575061121061091f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612166565b60405180910390fd5b5b600e5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112de576112d98383836114a8565b611441565b5f73ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113425761133d8383836114a8565b611441565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435575f6113f660646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506113e7600d54866116c190919063ffffffff16565b6117389092919063ffffffff16565b905061140b8183610e9d90919063ffffffff16565b91505f820361141a5750611441565b6114248482611799565b61142f8484846114a8565b50611441565b6114408383836114a8565b5b505050565b5f83831115829061148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148491906119cd565b60405180910390fd5b505f838561149b9190612184565b9050809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f8578060025f8282546114ec9190612081565b925050819055506115c6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611581578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115789392919061204c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160d578060025f8282540392505081905550611657565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116b49190611baa565b60405180910390a3505050565b5f8083036116d1575f9050611732565b5f82846116de91906121b7565b90508284826116ed9190612225565b1461172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906122c5565b60405180910390fd5b809150505b92915050565b5f808311829061177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177591906119cd565b60405180910390fd5b505f838561178c9190612225565b9050809150509392505050565b5f81031561193f5761180a816040518060600160405280602681526020016122e4602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546114469092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611899815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119369190611baa565b60405180910390a35b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561197a57808201518184015260208101905061195f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61199f82611943565b6119a9818561194d565b93506119b981856020860161195d565b6119c281611985565b840191505092915050565b5f6020820190508181035f8301526119e58184611995565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a27826119fe565b9050919050565b611a3781611a1d565b8114611a41575f80fd5b50565b5f81359050611a5281611a2e565b92915050565b5f819050919050565b611a6a81611a58565b8114611a74575f80fd5b50565b5f81359050611a8581611a61565b92915050565b5f8060408385031215611aa157611aa06119f6565b5b5f611aae85828601611a44565b9250506020611abf85828601611a77565b9150509250929050565b5f8115159050919050565b611add81611ac9565b82525050565b5f602082019050611af65f830184611ad4565b92915050565b5f819050919050565b5f611b1f611b1a611b15846119fe565b611afc565b6119fe565b9050919050565b5f611b3082611b05565b9050919050565b5f611b4182611b26565b9050919050565b611b5181611b37565b82525050565b5f602082019050611b6a5f830184611b48565b92915050565b5f60208284031215611b8557611b846119f6565b5b5f611b9284828501611a44565b91505092915050565b611ba481611a58565b82525050565b5f602082019050611bbd5f830184611b9b565b92915050565b5f805f60608486031215611bda57611bd96119f6565b5b5f611be786828701611a44565b9350506020611bf886828701611a44565b9250506040611c0986828701611a77565b9150509250925092565b5f60ff82169050919050565b611c2881611c13565b82525050565b5f602082019050611c415f830184611c1f565b92915050565b611c5081611a1d565b82525050565b5f602082019050611c695f830184611c47565b92915050565b5f60208284031215611c8457611c836119f6565b5b5f611c9184828501611a77565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611cd482611985565b810181811067ffffffffffffffff82111715611cf357611cf2611c9e565b5b80604052505050565b5f611d056119ed565b9050611d118282611ccb565b919050565b5f67ffffffffffffffff821115611d3057611d2f611c9e565b5b602082029050602081019050919050565b5f80fd5b5f611d57611d5284611d16565b611cfc565b90508083825260208201905060208402830185811115611d7a57611d79611d41565b5b835b81811015611da35780611d8f8882611a44565b845260208401935050602081019050611d7c565b5050509392505050565b5f82601f830112611dc157611dc0611c9a565b5b8135611dd1848260208601611d45565b91505092915050565b5f67ffffffffffffffff821115611df457611df3611c9e565b5b602082029050602081019050919050565b5f611e17611e1284611dda565b611cfc565b90508083825260208201905060208402830185811115611e3a57611e39611d41565b5b835b81811015611e635780611e4f8882611a77565b845260208401935050602081019050611e3c565b5050509392505050565b5f82601f830112611e8157611e80611c9a565b5b8135611e91848260208601611e05565b91505092915050565b5f8060408385031215611eb057611eaf6119f6565b5b5f83013567ffffffffffffffff811115611ecd57611ecc6119fa565b5b611ed985828601611dad565b925050602083013567ffffffffffffffff811115611efa57611ef96119fa565b5b611f0685828601611e6d565b9150509250929050565b5f8060408385031215611f2657611f256119f6565b5b5f611f3385828601611a44565b9250506020611f4485828601611a44565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f9257607f821691505b602082108103611fa557611fa4611f4e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61200f82611a58565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361204157612040611fd8565b5b600182019050919050565b5f60608201905061205f5f830186611c47565b61206c6020830185611b9b565b6120796040830184611b9b565b949350505050565b5f61208b82611a58565b915061209683611a58565b92508282019050808211156120ae576120ad611fd8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6120e8601b8361194d565b91506120f3826120b4565b602082019050919050565b5f6020820190508181035f830152612115816120dc565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61215060168361194d565b915061215b8261211c565b602082019050919050565b5f6020820190508181035f83015261217d81612144565b9050919050565b5f61218e82611a58565b915061219983611a58565b92508282039050818111156121b1576121b0611fd8565b5b92915050565b5f6121c182611a58565b91506121cc83611a58565b92508282026121da81611a58565b915082820484148315176121f1576121f0611fd8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61222f82611a58565b915061223a83611a58565b92508261224a576122496121f8565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122af60218361194d565b91506122ba82612255565b604082019050919050565b5f6020820190508181035f8301526122dc816122a3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212204904ca0eb3df2835e2a93c16704ed7107cfff371cdb4641a0c579eb585487d8864736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c8063715018a6116100c1578063a9059cbb1161007a578063a9059cbb146103a6578063c38e5f5e146103d6578063ca72a4e7146103e0578063dd62ed3e146103fc578063f2fde38b1461042c578063fdea8e0b1461044857610156565b8063715018a61461030657806385f2aef2146103105780638da5cb5b1461032e57806391cca3db1461034c57806395d89b411461036a578063974f5a601461038857610156565b8063313ce56711610113578063313ce567146102445780633736421b1461026257806349bd5a5e14610280578063594f98651461029e578063706f6937146102ba57806370a08231146102d657610156565b806306fdde031461015a578063095ea7b3146101785780631694505e146101a857806316ab369a146101c657806318160ddd146101f657806323b872dd14610214575b5f80fd5b610162610466565b60405161016f91906119cd565b60405180910390f35b610192600480360381019061018d9190611a8b565b6104f6565b60405161019f9190611ae3565b60405180910390f35b6101b0610518565b6040516101bd9190611b57565b60405180910390f35b6101e060048036038101906101db9190611b70565b61053d565b6040516101ed9190611ae3565b60405180910390f35b6101fe61055a565b60405161020b9190611baa565b60405180910390f35b61022e60048036038101906102299190611bc3565b610563565b60405161023b9190611ae3565b60405180910390f35b61024c610591565b6040516102599190611c2e565b60405180910390f35b61026a610599565b6040516102779190611c56565b60405180910390f35b6102886105be565b6040516102959190611c56565b60405180910390f35b6102b860048036038101906102b39190611c6f565b6105e3565b005b6102d460048036038101906102cf9190611e9a565b6105f5565b005b6102f060048036038101906102eb9190611b70565b6108a2565b6040516102fd9190611baa565b60405180910390f35b61030e6108e7565b005b6103186108fa565b6040516103259190611c56565b60405180910390f35b61033661091f565b6040516103439190611c56565b60405180910390f35b610354610947565b6040516103619190611c56565b60405180910390f35b61037261096c565b60405161037f91906119cd565b60405180910390f35b6103906109fc565b60405161039d9190611c56565b60405180910390f35b6103c060048036038101906103bb9190611a8b565b610a21565b6040516103cd9190611ae3565b60405180910390f35b6103de610a43565b005b6103fa60048036038101906103f59190611b70565b610a68565b005b61041660048036038101906104119190611f10565b610af3565b6040516104239190611baa565b60405180910390f35b61044660048036038101906104419190611b70565b610b75565b005b610450610bf9565b60405161045d9190611c56565b60405180910390f35b60606003805461047590611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546104a190611f7b565b80156104ec5780601f106104c3576101008083540402835291602001916104ec565b820191905f5260205f20905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b5f80610500610c1e565b905061050d818585610c25565b600191505092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f8061056d610c1e565b905061057a858285610c37565b610585858585610cc9565b60019150509392505050565b5f6012905090565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105eb610db9565b80600d8190555050565b6105fd610db9565b5f5b825181101561089d5761068b82828151811061061e5761061d611fab565b5b60200260200101515f8086858151811061063b5761063a611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808584815181106106a05761069f611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061076f8282815181106106fb576106fa611fab565b5b60200260200101515f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e9d90919063ffffffff16565b5f8060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508281815181106107e3576107e2611fab565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061086d5761086c611fab565b5b60200260200101516040516108829190611baa565b60405180910390a3808061089590612005565b9150506105ff565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108ef610db9565b6108f85f610ee6565b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461097b90611f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790611f7b565b80156109f25780601f106109c9576101008083540402835291602001916109f2565b820191905f5260205f20905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610a2b610c1e565b9050610a38818585610cc9565b600191505092915050565b610a4b610db9565b6001600a60146101000a81548160ff021916908315150217905550565b610a70610db9565b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b7d610db9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bed575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610be49190611c56565b60405180910390fd5b610bf681610ee6565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610c328383836001610fa9565b505050565b5f610c428484610af3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc35781811015610cb4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cab9392919061204c565b60405180910390fd5b610cc284848484035f610fa9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d39575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d309190611c56565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610da09190611c56565b60405180910390fd5b610db4838383611178565b505050565b610dc1610c1e565b73ffffffffffffffffffffffffffffffffffffffff16610ddf61091f565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e57610e02610c1e565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e359190611c56565b60405180910390fd5b565b5f808284610e4e9190612081565b905083811015610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a906120fe565b60405180910390fd5b8091505092915050565b5f610ede83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611446565b905092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611019575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110109190611c56565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611089575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110809190611c56565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611172578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111699190611baa565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361127f576111d461091f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061123f575061121061091f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612166565b60405180910390fd5b5b600e5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112de576112d98383836114a8565b611441565b5f73ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113425761133d8383836114a8565b611441565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611435575f6113f660646040518060400160405280600381526020017f4e6f2100000000000000000000000000000000000000000000000000000000008152506113e7600d54866116c190919063ffffffff16565b6117389092919063ffffffff16565b905061140b8183610e9d90919063ffffffff16565b91505f820361141a5750611441565b6114248482611799565b61142f8484846114a8565b50611441565b6114408383836114a8565b5b505050565b5f83831115829061148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148491906119cd565b60405180910390fd5b505f838561149b9190612184565b9050809150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f8578060025f8282546114ec9190612081565b925050819055506115c6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611581578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115789392919061204c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160d578060025f8282540392505081905550611657565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116b49190611baa565b60405180910390a3505050565b5f8083036116d1575f9050611732565b5f82846116de91906121b7565b90508284826116ed9190612225565b1461172d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611724906122c5565b60405180910390fd5b809150505b92915050565b5f808311829061177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177591906119cd565b60405180910390fd5b505f838561178c9190612225565b9050809150509392505050565b5f81031561193f5761180a816040518060600160405280602681526020016122e4602691395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546114469092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611899815f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f803073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119369190611baa565b60405180910390a35b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561197a57808201518184015260208101905061195f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61199f82611943565b6119a9818561194d565b93506119b981856020860161195d565b6119c281611985565b840191505092915050565b5f6020820190508181035f8301526119e58184611995565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611a27826119fe565b9050919050565b611a3781611a1d565b8114611a41575f80fd5b50565b5f81359050611a5281611a2e565b92915050565b5f819050919050565b611a6a81611a58565b8114611a74575f80fd5b50565b5f81359050611a8581611a61565b92915050565b5f8060408385031215611aa157611aa06119f6565b5b5f611aae85828601611a44565b9250506020611abf85828601611a77565b9150509250929050565b5f8115159050919050565b611add81611ac9565b82525050565b5f602082019050611af65f830184611ad4565b92915050565b5f819050919050565b5f611b1f611b1a611b15846119fe565b611afc565b6119fe565b9050919050565b5f611b3082611b05565b9050919050565b5f611b4182611b26565b9050919050565b611b5181611b37565b82525050565b5f602082019050611b6a5f830184611b48565b92915050565b5f60208284031215611b8557611b846119f6565b5b5f611b9284828501611a44565b91505092915050565b611ba481611a58565b82525050565b5f602082019050611bbd5f830184611b9b565b92915050565b5f805f60608486031215611bda57611bd96119f6565b5b5f611be786828701611a44565b9350506020611bf886828701611a44565b9250506040611c0986828701611a77565b9150509250925092565b5f60ff82169050919050565b611c2881611c13565b82525050565b5f602082019050611c415f830184611c1f565b92915050565b611c5081611a1d565b82525050565b5f602082019050611c695f830184611c47565b92915050565b5f60208284031215611c8457611c836119f6565b5b5f611c9184828501611a77565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611cd482611985565b810181811067ffffffffffffffff82111715611cf357611cf2611c9e565b5b80604052505050565b5f611d056119ed565b9050611d118282611ccb565b919050565b5f67ffffffffffffffff821115611d3057611d2f611c9e565b5b602082029050602081019050919050565b5f80fd5b5f611d57611d5284611d16565b611cfc565b90508083825260208201905060208402830185811115611d7a57611d79611d41565b5b835b81811015611da35780611d8f8882611a44565b845260208401935050602081019050611d7c565b5050509392505050565b5f82601f830112611dc157611dc0611c9a565b5b8135611dd1848260208601611d45565b91505092915050565b5f67ffffffffffffffff821115611df457611df3611c9e565b5b602082029050602081019050919050565b5f611e17611e1284611dda565b611cfc565b90508083825260208201905060208402830185811115611e3a57611e39611d41565b5b835b81811015611e635780611e4f8882611a77565b845260208401935050602081019050611e3c565b5050509392505050565b5f82601f830112611e8157611e80611c9a565b5b8135611e91848260208601611e05565b91505092915050565b5f8060408385031215611eb057611eaf6119f6565b5b5f83013567ffffffffffffffff811115611ecd57611ecc6119fa565b5b611ed985828601611dad565b925050602083013567ffffffffffffffff811115611efa57611ef96119fa565b5b611f0685828601611e6d565b9150509250929050565b5f8060408385031215611f2657611f256119f6565b5b5f611f3385828601611a44565b9250506020611f4485828601611a44565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f9257607f821691505b602082108103611fa557611fa4611f4e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61200f82611a58565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361204157612040611fd8565b5b600182019050919050565b5f60608201905061205f5f830186611c47565b61206c6020830185611b9b565b6120796040830184611b9b565b949350505050565b5f61208b82611a58565b915061209683611a58565b92508282019050808211156120ae576120ad611fd8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6120e8601b8361194d565b91506120f3826120b4565b602082019050919050565b5f6020820190508181035f830152612115816120dc565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f61215060168361194d565b915061215b8261211c565b602082019050919050565b5f6020820190508181035f83015261217d81612144565b9050919050565b5f61218e82611a58565b915061219983611a58565b92508282039050818111156121b1576121b0611fd8565b5b92915050565b5f6121c182611a58565b91506121cc83611a58565b92508282026121da81611a58565b915082820484148315176121f1576121f0611fd8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61222f82611a58565b915061223a83611a58565b92508261224a576122496121f8565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122af60218361194d565b91506122ba82612255565b604082019050919050565b5f6020820190508181035f8301526122dc816122a3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212204904ca0eb3df2835e2a93c16704ed7107cfff371cdb4641a0c579eb585487d8864736f6c63430008140033

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.