ETH Price: $2,475.83 (-0.03%)

Token

WuTensor (WUT)
 

Overview

Max Total Supply

22,222,222,222,232,222,222 WUT

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,489.736195486244239248 WUT

Value
$0.00
0x9b04b9d2c12041e8604093c570340568e39164f9
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:
WuTensor

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : WuTensor.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IUniswapV2Factory.sol";

contract WuTensor is ERC20, Ownable {
    uint private amountSold;
    uint private lastBlockSwap;

    uint private constant maxContractSell = 75_000e18;
    uint private constant minSellFees = 1_000e18;
    uint public constant maxWalletSize = 200_000e18;
    uint public constant maxTxSize = 200_000e18;

    uint private feesForwarded;
    uint public tradingStartedTimestamp;

    bool private contractSellLimits = true;
    bool private swapEnabled = true;
    bool private inSwap = false;
    bool private tradingEnabled = false;

    IUniswapV2Factory private constant factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
    IUniswapV2Router02 private constant router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address private constant weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address private pair;
    address public feesRecipient;
    address public stakingAddress;

    mapping(address => bool) public isFeesExempt;

    constructor() ERC20("WuTensor", "WUT") Ownable(msg.sender) {
        isFeesExempt[address(this)] = true;
        isFeesExempt[msg.sender] = true;

        feesRecipient = msg.sender;

        super._update(address(0), address(this), 1_350_000e18);
        super._update(address(0), msg.sender, 8_650_000e18);

        _approve(address(this), address(router), type(uint).max);
    }

    modifier lockSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    function openTrading() payable external onlyOwner {
        require(!tradingEnabled);
        tradingStartedTimestamp = block.timestamp;
        tradingEnabled = true;
    }

    function setPair(address _pair) external onlyOwner {
        pair = _pair;
    }

    function setSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function setFeesExempt(address account, bool isExempt) external onlyOwner {
        isFeesExempt[account] = isExempt;
    }
    
    function setStakingAddress(address _stakingAddress) external onlyOwner {
        stakingAddress = _stakingAddress;
    }

    function setContractSellLimits(bool enabled) external onlyOwner {
        contractSellLimits = enabled;
    }

    function setFeesRecipient(address user) external {
        require(feesRecipient == msg.sender);
        feesRecipient = user;
    }
    
    function claimLostTokens(uint amount) external {
        require(feesRecipient == msg.sender);
        transfer(feesRecipient, amount);
    }

    function sellContractFees(uint percentage) external {
        require(feesRecipient == msg.sender);
        _swapBack((balanceOf(address(this)) * percentage) / 100);
    }

    function rewardUser(address _user, uint _amount) external {
        require(msg.sender == stakingAddress);
        _mint(_user, _amount);
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!tradingEnabled) require(isFeesExempt[from] || isFeesExempt[to]);
        if (inSwap || amount == 0 || isFeesExempt[from] || isFeesExempt[to]) return super._update(from, to, amount);

        uint _fees = getFees(from, to, amount);
        if (_fees > 0) {
            super._update(from, address(this), _fees);
        }

        if (block.timestamp - tradingStartedTimestamp <= 120 && to != pair) {
            require(amount <= maxTxSize, "Maximum transaction amount");
            require(balanceOf(to) + amount <= maxWalletSize, "Maximum wallet amount");
        }

        if (swapEnabled && from != pair) _swapBack((amount - _fees)/4);

        return super._update(from, to, amount - _fees);
    }

    function _swapBack(uint swapAmount) private lockSwap {
        uint amountToSwap = getSellAmount(swapAmount);
        if (amountToSwap == 0) return;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = weth;

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amountToSwap,
            0,
            path,
            address(this),
            block.timestamp
        );

        _forwardFees();
    }

    function _forwardFees() private {
        uint toForward = address(this).balance;

        if (feesForwarded >= 12 ether) {
            uint addr1 = (toForward * 24) / 100;
            uint addr2 = (toForward * 5) / 100;
            uint addr3 = (toForward * 9) / 100;
            uint addr4 = (toForward * 22) / 100;

            (bool result1, ) = 0xc7F309b72F9881E15775cF9D51713C069742b5D1.call{value: addr1}("");
            (bool result2, ) = 0x48d0e5bE4Dad65bC473153e0495945FC3F64dA0f.call{value: addr2}("");
            (bool result3, ) = 0xaFA4Fc9fa6F4d348151DfDD27e2368A549Fc3cF7.call{value: addr3}("");
            (bool result4, ) = 0x24544731e0Cd50Ed4e456e773152375C7BF27733.call{value: addr4}("");
            (bool result5, ) = 0x421Be4ecE444C350c5da1FEe347bed0aA124c805.call{value: toForward - addr1 - addr2 - addr3 - addr4}("");
            require(result1 && result2 && result3 && result4 && result5);
        } else {
            feesForwarded += toForward;
            (bool result, ) = 0x421Be4ecE444C350c5da1FEe347bed0aA124c805.call{value: toForward}("");
            require(result);
        }
    }

    function getSellAmount(uint swapAmount) private returns (uint) {
        if (!contractSellLimits) return swapAmount;

        if (lastBlockSwap != block.number) {
            lastBlockSwap = block.number;
            amountSold = 0;
        }
        uint amountToSwap = min(swapAmount, maxContractSell - amountSold);
        if (amountToSwap < minSellFees) return 0;
        amountSold += amountToSwap;

        return amountToSwap;
    }

    function getFees(address from, address to, uint amount) public view returns (uint) {
        if (from != pair && to != pair) return 0;

        if (block.timestamp - tradingStartedTimestamp > 6 * 60) return (amount * 5) / 100; // 120 seconds is delay of snipe fees + intermediary fees period
        else if (block.timestamp - tradingStartedTimestamp > 2 * 60) return (amount * 10) / 100; // 60 seconds is the delay of snipe fees period
        else return (amount * 20) / 100;
    }

    function min(uint a, uint b) private pure returns (uint) { return (a > b) ? b : a; }

    receive() external payable {}
}

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

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * 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 3 of 9 : 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 ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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 4 of 9 : 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 "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/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 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _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_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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}.
     *
     * 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 `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:
     * ```
     * 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 5 of 9 : 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 ERC20 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 6 of 9 : 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 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 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);
}

File 7 of 9 : 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 8 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

File 9 of 9 : 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 swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
    returns (uint[] memory amounts);

    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);

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

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

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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeesExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","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":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rewardUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"sellContractFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setContractSellLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExempt","type":"bool"}],"name":"setFeesExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"setFeesRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingAddress","type":"address"}],"name":"setStakingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"tradingStartedTimestamp","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"},{"stateMutability":"payable","type":"receive"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff0219169083151502179055503480156200007d57600080fd5b50336040518060400160405280600881526020017f577554656e736f720000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57555400000000000000000000000000000000000000000000000000000000008152508160039081620000fc919062000a7e565b5080600490816200010e919062000a7e565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001865760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200017d919062000baa565b60405180910390fd5b62000197816200031460201b60201c565b506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555033600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002a86000306a011ddfa58a6173ffc00000620003da60201b60201c565b620002c76000336a0727b570899fd44a400000620003da60201b60201c565b6200030e30737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200060a60201b60201c565b62000c9c565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200043057806002600082825462000423919062000bf6565b9250508190555062000506565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620004bf578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004b69392919062000c42565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200055157806002600082825403925050819055506200059e565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fd919062000c7f565b60405180910390a3505050565b6200061f83838360016200062460201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620006995760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000690919062000baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200070e5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000705919062000baa565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015620007fe578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620007f5919062000c7f565b60405180910390a35b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088657607f821691505b6020821081036200089c576200089b6200083e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008c7565b620009128683620008c7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200095f6200095962000953846200092a565b62000934565b6200092a565b9050919050565b6000819050919050565b6200097b836200093e565b620009936200098a8262000966565b848454620008d4565b825550505050565b600090565b620009aa6200099b565b620009b781848462000970565b505050565b5b81811015620009df57620009d3600082620009a0565b600181019050620009bd565b5050565b601f82111562000a2e57620009f881620008a2565b62000a0384620008b7565b8101602085101562000a13578190505b62000a2b62000a2285620008b7565b830182620009bc565b50505b505050565b600082821c905092915050565b600062000a536000198460080262000a33565b1980831691505092915050565b600062000a6e838362000a40565b9150826002028217905092915050565b62000a898262000804565b67ffffffffffffffff81111562000aa55762000aa46200080f565b5b62000ab182546200086d565b62000abe828285620009e3565b600060209050601f83116001811462000af6576000841562000ae1578287015190505b62000aed858262000a60565b86555062000b5d565b601f19841662000b0686620008a2565b60005b8281101562000b305784890151825560018201915060208501945060208101905062000b09565b8683101562000b50578489015162000b4c601f89168262000a40565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b928262000b65565b9050919050565b62000ba48162000b85565b82525050565b600060208201905062000bc1600083018462000b99565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c03826200092a565b915062000c10836200092a565b925082820190508082111562000c2b5762000c2a62000bc7565b5b92915050565b62000c3c816200092a565b82525050565b600060608201905062000c59600083018662000b99565b62000c68602083018562000c31565b62000c77604083018462000c31565b949350505050565b600060208201905062000c96600083018462000c31565b92915050565b6129f88062000cac6000396000f3fe6080604052600436106101c65760003560e01c806384b7719a116100f7578063c40d24b211610095578063e01af92c11610064578063e01af92c14610642578063e4e103dc1461066b578063f2fde38b14610694578063f4e0d9ac146106bd576101cd565b8063c40d24b214610593578063c9567bf9146105d0578063d7b4be24146105da578063dd62ed3e14610605576101cd565b806395d89b41116100d157806395d89b41146104d9578063a4b3982e14610504578063a9059cbb1461052d578063b43761071461056a576101cd565b806384b7719a1461045a5780638da5cb5b146104835780638f3fa860146104ae576101cd565b8063313ce5671161016457806370a082311161013e57806370a08231146103b2578063715018a6146103ef5780637e150d66146104065780638187f51614610431576101cd565b8063313ce5671461033357806347c9b1c31461035e578063702acfa814610387576101cd565b806315429862116101a0578063154298621461026357806318160ddd1461028e578063191b329c146102b957806323b872dd146102f6576101cd565b806306fdde03146101d2578063090a4ab8146101fd578063095ea7b314610226576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106e6565b6040516101f491906121d7565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612234565b610778565b005b34801561023257600080fd5b5061024d600480360381019061024891906122bf565b6107fd565b60405161025a919061231a565b60405180910390f35b34801561026f57600080fd5b50610278610820565b6040516102859190612344565b60405180910390f35b34801561029a57600080fd5b506102a3610826565b6040516102b09190612344565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061235f565b610830565b6040516102ed9190612344565b60405180910390f35b34801561030257600080fd5b5061031d6004803603810190610318919061235f565b61097c565b60405161032a919061231a565b60405180910390f35b34801561033f57600080fd5b506103486109ab565b60405161035591906123ce565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612415565b6109b4565b005b34801561039357600080fd5b5061039c6109d9565b6040516103a99190612451565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d4919061246c565b6109ff565b6040516103e69190612344565b60405180910390f35b3480156103fb57600080fd5b50610404610a47565b005b34801561041257600080fd5b5061041b610a5b565b6040516104289190612344565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061246c565b610a69565b005b34801561046657600080fd5b50610481600480360381019061047c919061246c565b610ab5565b005b34801561048f57600080fd5b50610498610b53565b6040516104a59190612451565b60405180910390f35b3480156104ba57600080fd5b506104c3610b7d565b6040516104d09190612344565b60405180910390f35b3480156104e557600080fd5b506104ee610b8b565b6040516104fb91906121d7565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612234565b610c1d565b005b34801561053957600080fd5b50610554600480360381019061054f91906122bf565b610ca7565b604051610561919061231a565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612499565b610cca565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061246c565b610d2d565b6040516105c7919061231a565b60405180910390f35b6105d8610d4d565b005b3480156105e657600080fd5b506105ef610d93565b6040516105fc9190612451565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906124d9565b610db9565b6040516106399190612344565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612415565b610e40565b005b34801561067757600080fd5b50610692600480360381019061068d91906122bf565b610e65565b005b3480156106a057600080fd5b506106bb60048036038101906106b6919061246c565b610ecd565b005b3480156106c957600080fd5b506106e460048036038101906106df919061246c565b610f53565b005b6060600380546106f590612548565b80601f016020809104026020016040519081016040528092919081815260200182805461072190612548565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107d257600080fd5b6107fa6064826107e1306109ff565b6107eb91906125a8565b6107f59190612619565b610f9f565b50565b600080610808611186565b905061081581858561118e565b600191505092915050565b60095481565b6000600254905090565b6000600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156108de5750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156108ec5760009050610975565b610168600954426108fd919061264a565b111561092357606460058361091291906125a8565b61091c9190612619565b9050610975565b607860095442610933919061264a565b1115610959576064600a8361094891906125a8565b6109529190612619565b9050610975565b606460148361096891906125a8565b6109729190612619565b90505b9392505050565b600080610987611186565b90506109948582856111a0565b61099f858585611234565b60019150509392505050565b60006012905090565b6109bc611328565b80600a60006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4f611328565b610a5960006113af565b565b692a5a058fc295ed00000081565b610a71611328565b80600a60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b0f57600080fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b692a5a058fc295ed00000081565b606060048054610b9a90612548565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc690612548565b8015610c135780601f10610be857610100808354040283529160200191610c13565b820191906000526020600020905b815481529060010190602001808311610bf657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7757600080fd5b610ca3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610ca7565b5050565b600080610cb2611186565b9050610cbf818585611234565b600191505092915050565b610cd2611328565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610d55611328565b600a60039054906101000a900460ff1615610d6f57600080fd5b426009819055506001600a60036101000a81548160ff021916908315150217905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e48611328565b80600a60016101000a81548160ff02191690831515021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf57600080fd5b610ec98282611475565b5050565b610ed5611328565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f475760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f3e9190612451565b60405180910390fd5b610f50816113af565b50565b610f5b611328565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001600a60026101000a81548160ff0219169083151502179055506000610fc5826114f7565b905060008103610fd55750611168565b6000600267ffffffffffffffff811115610ff257610ff161267e565b5b6040519080825280602002602001820160405280156110205781602001602082028036833780820191505090505b5090503081600081518110611038576110376126ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061109b5761109a6126ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161112b9594939291906127df565b600060405180830381600087803b15801561114557600080fd5b505af1158015611159573d6000803e3d6000fd5b50505050611165611591565b50505b6000600a60026101000a81548160ff02191690831515021790555050565b600033905090565b61119b83838360016119ab565b505050565b60006111ac8484610db9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461122e578181101561121e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161121593929190612839565b60405180910390fd5b61122d848484840360006119ab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a65760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161129d9190612451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113185760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161130f9190612451565b60405180910390fd5b611323838383611b82565b505050565b611330611186565b73ffffffffffffffffffffffffffffffffffffffff1661134e610b53565b73ffffffffffffffffffffffffffffffffffffffff16146113ad57611371611186565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113a49190612451565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e75760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114de9190612451565b60405180910390fd5b6114f360008383611b82565b5050565b6000600a60009054906101000a900460ff166115155781905061158c565b436007541461152e574360078190555060006006819055505b600061155183600654690fe1c215e8f838e0000061154c919061264a565b611f09565b9050683635c9adc5dea0000081101561156e57600091505061158c565b80600660008282546115809190612870565b92505081905550809150505b919050565b600047905067a688906bd8b000006008541061190357600060646018836115b891906125a8565b6115c29190612619565b9050600060646005846115d591906125a8565b6115df9190612619565b9050600060646009856115f291906125a8565b6115fc9190612619565b90506000606460168661160f91906125a8565b6116199190612619565b9050600073c7f309b72f9881e15775cf9d51713c069742b5d173ffffffffffffffffffffffffffffffffffffffff1685604051611655906128d5565b60006040518083038185875af1925050503d8060008114611692576040519150601f19603f3d011682016040523d82523d6000602084013e611697565b606091505b5050905060007348d0e5be4dad65bc473153e0495945fc3f64da0f73ffffffffffffffffffffffffffffffffffffffff16856040516116d5906128d5565b60006040518083038185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b50509050600073afa4fc9fa6f4d348151dfdd27e2368a549fc3cf773ffffffffffffffffffffffffffffffffffffffff1685604051611755906128d5565b60006040518083038185875af1925050503d8060008114611792576040519150601f19603f3d011682016040523d82523d6000602084013e611797565b606091505b5050905060007324544731e0cd50ed4e456e773152375c7bf2773373ffffffffffffffffffffffffffffffffffffffff16856040516117d5906128d5565b60006040518083038185875af1925050503d8060008114611812576040519150601f19603f3d011682016040523d82523d6000602084013e611817565b606091505b50509050600073421be4ece444c350c5da1fee347bed0aa124c80573ffffffffffffffffffffffffffffffffffffffff1686888a8c8e611857919061264a565b611861919061264a565b61186b919061264a565b611875919061264a565b604051611881906128d5565b60006040518083038185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b505090508480156118d15750835b80156118da5750825b80156118e35750815b80156118ec5750805b6118f557600080fd5b5050505050505050506119a8565b80600860008282546119159190612870565b92505081905550600073421be4ece444c350c5da1fee347bed0aa124c80573ffffffffffffffffffffffffffffffffffffffff1682604051611956906128d5565b60006040518083038185875af1925050503d8060008114611993576040519150601f19603f3d011682016040523d82523d6000602084013e611998565b606091505b50509050806119a657600080fd5b505b50565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a1d5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611a149190612451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8f5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a869190612451565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611b7c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b739190612344565b60405180910390a35b50505050565b600a60039054906101000a900460ff16611c4157600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c375750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c4057600080fd5b5b600a60029054906101000a900460ff1680611c5c5750600081145b80611cb05750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611d045750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d1957611d14838383611f22565b611f04565b6000611d26848484610830565b90506000811115611d3d57611d3c843083611f22565b5b607860095442611d4d919061264a565b11158015611da95750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611e5c57692a5a058fc295ed000000821115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612936565b60405180910390fd5b692a5a058fc295ed00000082611e10856109ff565b611e1a9190612870565b1115611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e52906129a2565b60405180910390fd5b5b600a60019054906101000a900460ff168015611ec65750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611eec57611eeb60048284611edc919061264a565b611ee69190612619565b610f9f565b5b611f0284848385611efd919061264a565b611f22565b505b505050565b6000818311611f185782611f1a565b815b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f74578060026000828254611f689190612870565b92505081905550612047565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612000578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611ff793929190612839565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209057806002600082825403925050819055506120dd565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161213a9190612344565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612181578082015181840152602081019050612166565b60008484015250505050565b6000601f19601f8301169050919050565b60006121a982612147565b6121b38185612152565b93506121c3818560208601612163565b6121cc8161218d565b840191505092915050565b600060208201905081810360008301526121f1818461219e565b905092915050565b600080fd5b6000819050919050565b612211816121fe565b811461221c57600080fd5b50565b60008135905061222e81612208565b92915050565b60006020828403121561224a576122496121f9565b5b60006122588482850161221f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228c82612261565b9050919050565b61229c81612281565b81146122a757600080fd5b50565b6000813590506122b981612293565b92915050565b600080604083850312156122d6576122d56121f9565b5b60006122e4858286016122aa565b92505060206122f58582860161221f565b9150509250929050565b60008115159050919050565b612314816122ff565b82525050565b600060208201905061232f600083018461230b565b92915050565b61233e816121fe565b82525050565b60006020820190506123596000830184612335565b92915050565b600080600060608486031215612378576123776121f9565b5b6000612386868287016122aa565b9350506020612397868287016122aa565b92505060406123a88682870161221f565b9150509250925092565b600060ff82169050919050565b6123c8816123b2565b82525050565b60006020820190506123e360008301846123bf565b92915050565b6123f2816122ff565b81146123fd57600080fd5b50565b60008135905061240f816123e9565b92915050565b60006020828403121561242b5761242a6121f9565b5b600061243984828501612400565b91505092915050565b61244b81612281565b82525050565b60006020820190506124666000830184612442565b92915050565b600060208284031215612482576124816121f9565b5b6000612490848285016122aa565b91505092915050565b600080604083850312156124b0576124af6121f9565b5b60006124be858286016122aa565b92505060206124cf85828601612400565b9150509250929050565b600080604083850312156124f0576124ef6121f9565b5b60006124fe858286016122aa565b925050602061250f858286016122aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061256057607f821691505b60208210810361257357612572612519565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125b3826121fe565b91506125be836121fe565b92508282026125cc816121fe565b915082820484148315176125e3576125e2612579565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612624826121fe565b915061262f836121fe565b92508261263f5761263e6125ea565b5b828204905092915050565b6000612655826121fe565b9150612660836121fe565b925082820390508181111561267857612677612579565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061270b612706612701846126dc565b6126e6565b6121fe565b9050919050565b61271b816126f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61275681612281565b82525050565b6000612768838361274d565b60208301905092915050565b6000602082019050919050565b600061278c82612721565b612796818561272c565b93506127a18361273d565b8060005b838110156127d25781516127b9888261275c565b97506127c483612774565b9250506001810190506127a5565b5085935050505092915050565b600060a0820190506127f46000830188612335565b6128016020830187612712565b81810360408301526128138186612781565b90506128226060830185612442565b61282f6080830184612335565b9695505050505050565b600060608201905061284e6000830186612442565b61285b6020830185612335565b6128686040830184612335565b949350505050565b600061287b826121fe565b9150612886836121fe565b925082820190508082111561289e5761289d612579565b5b92915050565b600081905092915050565b50565b60006128bf6000836128a4565b91506128ca826128af565b600082019050919050565b60006128e0826128b2565b9150819050919050565b7f4d6178696d756d207472616e73616374696f6e20616d6f756e74000000000000600082015250565b6000612920601a83612152565b915061292b826128ea565b602082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f4d6178696d756d2077616c6c657420616d6f756e740000000000000000000000600082015250565b600061298c601583612152565b915061299782612956565b602082019050919050565b600060208201905081810360008301526129bb8161297f565b905091905056fea26469706673582212206f1a73fd305dbfd9ebc96095f54d66070af7c7a4f89a85ccba41b4f45f405ec864736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806384b7719a116100f7578063c40d24b211610095578063e01af92c11610064578063e01af92c14610642578063e4e103dc1461066b578063f2fde38b14610694578063f4e0d9ac146106bd576101cd565b8063c40d24b214610593578063c9567bf9146105d0578063d7b4be24146105da578063dd62ed3e14610605576101cd565b806395d89b41116100d157806395d89b41146104d9578063a4b3982e14610504578063a9059cbb1461052d578063b43761071461056a576101cd565b806384b7719a1461045a5780638da5cb5b146104835780638f3fa860146104ae576101cd565b8063313ce5671161016457806370a082311161013e57806370a08231146103b2578063715018a6146103ef5780637e150d66146104065780638187f51614610431576101cd565b8063313ce5671461033357806347c9b1c31461035e578063702acfa814610387576101cd565b806315429862116101a0578063154298621461026357806318160ddd1461028e578063191b329c146102b957806323b872dd146102f6576101cd565b806306fdde03146101d2578063090a4ab8146101fd578063095ea7b314610226576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106e6565b6040516101f491906121d7565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612234565b610778565b005b34801561023257600080fd5b5061024d600480360381019061024891906122bf565b6107fd565b60405161025a919061231a565b60405180910390f35b34801561026f57600080fd5b50610278610820565b6040516102859190612344565b60405180910390f35b34801561029a57600080fd5b506102a3610826565b6040516102b09190612344565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061235f565b610830565b6040516102ed9190612344565b60405180910390f35b34801561030257600080fd5b5061031d6004803603810190610318919061235f565b61097c565b60405161032a919061231a565b60405180910390f35b34801561033f57600080fd5b506103486109ab565b60405161035591906123ce565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612415565b6109b4565b005b34801561039357600080fd5b5061039c6109d9565b6040516103a99190612451565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d4919061246c565b6109ff565b6040516103e69190612344565b60405180910390f35b3480156103fb57600080fd5b50610404610a47565b005b34801561041257600080fd5b5061041b610a5b565b6040516104289190612344565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061246c565b610a69565b005b34801561046657600080fd5b50610481600480360381019061047c919061246c565b610ab5565b005b34801561048f57600080fd5b50610498610b53565b6040516104a59190612451565b60405180910390f35b3480156104ba57600080fd5b506104c3610b7d565b6040516104d09190612344565b60405180910390f35b3480156104e557600080fd5b506104ee610b8b565b6040516104fb91906121d7565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612234565b610c1d565b005b34801561053957600080fd5b50610554600480360381019061054f91906122bf565b610ca7565b604051610561919061231a565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612499565b610cca565b005b34801561059f57600080fd5b506105ba60048036038101906105b5919061246c565b610d2d565b6040516105c7919061231a565b60405180910390f35b6105d8610d4d565b005b3480156105e657600080fd5b506105ef610d93565b6040516105fc9190612451565b60405180910390f35b34801561061157600080fd5b5061062c600480360381019061062791906124d9565b610db9565b6040516106399190612344565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190612415565b610e40565b005b34801561067757600080fd5b50610692600480360381019061068d91906122bf565b610e65565b005b3480156106a057600080fd5b506106bb60048036038101906106b6919061246c565b610ecd565b005b3480156106c957600080fd5b506106e460048036038101906106df919061246c565b610f53565b005b6060600380546106f590612548565b80601f016020809104026020016040519081016040528092919081815260200182805461072190612548565b801561076e5780601f106107435761010080835404028352916020019161076e565b820191906000526020600020905b81548152906001019060200180831161075157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107d257600080fd5b6107fa6064826107e1306109ff565b6107eb91906125a8565b6107f59190612619565b610f9f565b50565b600080610808611186565b905061081581858561118e565b600191505092915050565b60095481565b6000600254905090565b6000600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156108de5750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156108ec5760009050610975565b610168600954426108fd919061264a565b111561092357606460058361091291906125a8565b61091c9190612619565b9050610975565b607860095442610933919061264a565b1115610959576064600a8361094891906125a8565b6109529190612619565b9050610975565b606460148361096891906125a8565b6109729190612619565b90505b9392505050565b600080610987611186565b90506109948582856111a0565b61099f858585611234565b60019150509392505050565b60006012905090565b6109bc611328565b80600a60006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4f611328565b610a5960006113af565b565b692a5a058fc295ed00000081565b610a71611328565b80600a60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b0f57600080fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b692a5a058fc295ed00000081565b606060048054610b9a90612548565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc690612548565b8015610c135780601f10610be857610100808354040283529160200191610c13565b820191906000526020600020905b815481529060010190602001808311610bf657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7757600080fd5b610ca3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610ca7565b5050565b600080610cb2611186565b9050610cbf818585611234565b600191505092915050565b610cd2611328565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610d55611328565b600a60039054906101000a900460ff1615610d6f57600080fd5b426009819055506001600a60036101000a81548160ff021916908315150217905550565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e48611328565b80600a60016101000a81548160ff02191690831515021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf57600080fd5b610ec98282611475565b5050565b610ed5611328565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f475760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f3e9190612451565b60405180910390fd5b610f50816113af565b50565b610f5b611328565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001600a60026101000a81548160ff0219169083151502179055506000610fc5826114f7565b905060008103610fd55750611168565b6000600267ffffffffffffffff811115610ff257610ff161267e565b5b6040519080825280602002602001820160405280156110205781602001602082028036833780820191505090505b5090503081600081518110611038576110376126ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061109b5761109a6126ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161112b9594939291906127df565b600060405180830381600087803b15801561114557600080fd5b505af1158015611159573d6000803e3d6000fd5b50505050611165611591565b50505b6000600a60026101000a81548160ff02191690831515021790555050565b600033905090565b61119b83838360016119ab565b505050565b60006111ac8484610db9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461122e578181101561121e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161121593929190612839565b60405180910390fd5b61122d848484840360006119ab565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112a65760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161129d9190612451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113185760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161130f9190612451565b60405180910390fd5b611323838383611b82565b505050565b611330611186565b73ffffffffffffffffffffffffffffffffffffffff1661134e610b53565b73ffffffffffffffffffffffffffffffffffffffff16146113ad57611371611186565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113a49190612451565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e75760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016114de9190612451565b60405180910390fd5b6114f360008383611b82565b5050565b6000600a60009054906101000a900460ff166115155781905061158c565b436007541461152e574360078190555060006006819055505b600061155183600654690fe1c215e8f838e0000061154c919061264a565b611f09565b9050683635c9adc5dea0000081101561156e57600091505061158c565b80600660008282546115809190612870565b92505081905550809150505b919050565b600047905067a688906bd8b000006008541061190357600060646018836115b891906125a8565b6115c29190612619565b9050600060646005846115d591906125a8565b6115df9190612619565b9050600060646009856115f291906125a8565b6115fc9190612619565b90506000606460168661160f91906125a8565b6116199190612619565b9050600073c7f309b72f9881e15775cf9d51713c069742b5d173ffffffffffffffffffffffffffffffffffffffff1685604051611655906128d5565b60006040518083038185875af1925050503d8060008114611692576040519150601f19603f3d011682016040523d82523d6000602084013e611697565b606091505b5050905060007348d0e5be4dad65bc473153e0495945fc3f64da0f73ffffffffffffffffffffffffffffffffffffffff16856040516116d5906128d5565b60006040518083038185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b50509050600073afa4fc9fa6f4d348151dfdd27e2368a549fc3cf773ffffffffffffffffffffffffffffffffffffffff1685604051611755906128d5565b60006040518083038185875af1925050503d8060008114611792576040519150601f19603f3d011682016040523d82523d6000602084013e611797565b606091505b5050905060007324544731e0cd50ed4e456e773152375c7bf2773373ffffffffffffffffffffffffffffffffffffffff16856040516117d5906128d5565b60006040518083038185875af1925050503d8060008114611812576040519150601f19603f3d011682016040523d82523d6000602084013e611817565b606091505b50509050600073421be4ece444c350c5da1fee347bed0aa124c80573ffffffffffffffffffffffffffffffffffffffff1686888a8c8e611857919061264a565b611861919061264a565b61186b919061264a565b611875919061264a565b604051611881906128d5565b60006040518083038185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b505090508480156118d15750835b80156118da5750825b80156118e35750815b80156118ec5750805b6118f557600080fd5b5050505050505050506119a8565b80600860008282546119159190612870565b92505081905550600073421be4ece444c350c5da1fee347bed0aa124c80573ffffffffffffffffffffffffffffffffffffffff1682604051611956906128d5565b60006040518083038185875af1925050503d8060008114611993576040519150601f19603f3d011682016040523d82523d6000602084013e611998565b606091505b50509050806119a657600080fd5b505b50565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a1d5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611a149190612451565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a8f5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a869190612451565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611b7c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b739190612344565b60405180910390a35b50505050565b600a60039054906101000a900460ff16611c4157600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c375750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c4057600080fd5b5b600a60029054906101000a900460ff1680611c5c5750600081145b80611cb05750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611d045750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611d1957611d14838383611f22565b611f04565b6000611d26848484610830565b90506000811115611d3d57611d3c843083611f22565b5b607860095442611d4d919061264a565b11158015611da95750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611e5c57692a5a058fc295ed000000821115611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290612936565b60405180910390fd5b692a5a058fc295ed00000082611e10856109ff565b611e1a9190612870565b1115611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e52906129a2565b60405180910390fd5b5b600a60019054906101000a900460ff168015611ec65750600a60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611eec57611eeb60048284611edc919061264a565b611ee69190612619565b610f9f565b5b611f0284848385611efd919061264a565b611f22565b505b505050565b6000818311611f185782611f1a565b815b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f74578060026000828254611f689190612870565b92505081905550612047565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612000578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611ff793929190612839565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209057806002600082825403925050819055506120dd565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161213a9190612344565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612181578082015181840152602081019050612166565b60008484015250505050565b6000601f19601f8301169050919050565b60006121a982612147565b6121b38185612152565b93506121c3818560208601612163565b6121cc8161218d565b840191505092915050565b600060208201905081810360008301526121f1818461219e565b905092915050565b600080fd5b6000819050919050565b612211816121fe565b811461221c57600080fd5b50565b60008135905061222e81612208565b92915050565b60006020828403121561224a576122496121f9565b5b60006122588482850161221f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228c82612261565b9050919050565b61229c81612281565b81146122a757600080fd5b50565b6000813590506122b981612293565b92915050565b600080604083850312156122d6576122d56121f9565b5b60006122e4858286016122aa565b92505060206122f58582860161221f565b9150509250929050565b60008115159050919050565b612314816122ff565b82525050565b600060208201905061232f600083018461230b565b92915050565b61233e816121fe565b82525050565b60006020820190506123596000830184612335565b92915050565b600080600060608486031215612378576123776121f9565b5b6000612386868287016122aa565b9350506020612397868287016122aa565b92505060406123a88682870161221f565b9150509250925092565b600060ff82169050919050565b6123c8816123b2565b82525050565b60006020820190506123e360008301846123bf565b92915050565b6123f2816122ff565b81146123fd57600080fd5b50565b60008135905061240f816123e9565b92915050565b60006020828403121561242b5761242a6121f9565b5b600061243984828501612400565b91505092915050565b61244b81612281565b82525050565b60006020820190506124666000830184612442565b92915050565b600060208284031215612482576124816121f9565b5b6000612490848285016122aa565b91505092915050565b600080604083850312156124b0576124af6121f9565b5b60006124be858286016122aa565b92505060206124cf85828601612400565b9150509250929050565b600080604083850312156124f0576124ef6121f9565b5b60006124fe858286016122aa565b925050602061250f858286016122aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061256057607f821691505b60208210810361257357612572612519565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125b3826121fe565b91506125be836121fe565b92508282026125cc816121fe565b915082820484148315176125e3576125e2612579565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612624826121fe565b915061262f836121fe565b92508261263f5761263e6125ea565b5b828204905092915050565b6000612655826121fe565b9150612660836121fe565b925082820390508181111561267857612677612579565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061270b612706612701846126dc565b6126e6565b6121fe565b9050919050565b61271b816126f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61275681612281565b82525050565b6000612768838361274d565b60208301905092915050565b6000602082019050919050565b600061278c82612721565b612796818561272c565b93506127a18361273d565b8060005b838110156127d25781516127b9888261275c565b97506127c483612774565b9250506001810190506127a5565b5085935050505092915050565b600060a0820190506127f46000830188612335565b6128016020830187612712565b81810360408301526128138186612781565b90506128226060830185612442565b61282f6080830184612335565b9695505050505050565b600060608201905061284e6000830186612442565b61285b6020830185612335565b6128686040830184612335565b949350505050565b600061287b826121fe565b9150612886836121fe565b925082820190508082111561289e5761289d612579565b5b92915050565b600081905092915050565b50565b60006128bf6000836128a4565b91506128ca826128af565b600082019050919050565b60006128e0826128b2565b9150819050919050565b7f4d6178696d756d207472616e73616374696f6e20616d6f756e74000000000000600082015250565b6000612920601a83612152565b915061292b826128ea565b602082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f4d6178696d756d2077616c6c657420616d6f756e740000000000000000000000600082015250565b600061298c601583612152565b915061299782612956565b602082019050919050565b600060208201905081810360008301526129bb8161297f565b905091905056fea26469706673582212206f1a73fd305dbfd9ebc96095f54d66070af7c7a4f89a85ccba41b4f45f405ec864736f6c63430008140033

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.