ETH Price: $2,086.21 (-0.15%)
 

Overview

Max Total Supply

100,000,000 MFT

Holders

841 (0.00%)

Transfers

-
13 ( 225.00%)

Market

Price

$0.0006 @ 0.000000 ETH (-0.09%)

Onchain Market Cap

$61,669.00

Circulating Supply Market Cap

$16,439.98

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A new way of approaching Sport with social Gaming and Entertainment

Contract Source Code Verified (Exact Match)

Contract Name:
MetafightToken

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

//    __  ________________   _______________ ________
//   /  |/  / __/_  __/ _ | / __/  _/ ___/ // /_  __/
//  / /|_/ / _/  / / / __ |/ _/_/ // (_ / _  / / /   
// /_/  /_/___/ /_/ /_/ |_/_/ /___/\___/_//_/ /_/    
//
contract MetafightToken is ERC20, Ownable, Pausable {

    /**
     * @dev max supply 100M tokens with 18 decimals
     */
    uint256 public constant MAX_SUPPLY = (10 ** 8) * (10 ** 18);

    /**
     * @dev max date range for vesting
     */
    uint256 private constant FIVE_YEARS_IN_SECONDS = 31557600 * 5;

    /**
     * @dev max vestings data for single address
     */
    uint256 private constant MAX_VESTINGS_ARRAY_LENGTH = 30;

    /**
     * @dev to allow other contracts to transfer tokens with a vesting period
     */
    mapping(address => bool) public sellers;

    /**
     * @dev vestings infos by token owners
     */
    mapping(address => uint256[]) private usersVestings;

    constructor(address contractOwner)
        ERC20("METAFIGHT TOKEN", "MFT")
        Ownable(contractOwner)
        {
            _mint(contractOwner, MAX_SUPPLY);
        }

    //ADMIN FUNCTIONS

    /**
     * @dev allow admin to pause transfers that create new vesting periods
     */
    function switchPause(bool isPause) external onlyOwner {
        if(isPause){
            _pause();
            return;
        }
        _unpause();
    }

    /**
     * @dev allow an address to transfer tokens with a vesting period
     */
    function setSeller(address seller, bool isSeller) external onlyOwner {
        sellers[seller] = isSeller;
    }

    // VESTING FUNCTION

    /**
     * @dev transfer tokens to given account with vesting period
     */
    function transferWithVesting(address account, uint112 amount, uint48 startDate, uint48 endDate, uint48 cliffDate) external whenNotPaused {
        require(sellers[_msgSender()], "sender is not a seller");
        require(startDate <= cliffDate && cliffDate <= endDate, "invalid dates");
        require(endDate < block.timestamp + FIVE_YEARS_IN_SECONDS, "end date too far");
        require(usersVestings[account].length < MAX_VESTINGS_ARRAY_LENGTH,"too many vesting datas for this account");
        uint256 newVesting = _compressVestingAmountAndDates(amount, startDate, endDate, cliffDate);
        usersVestings[account].push(newVesting);
        _transfer(_msgSender(), account, amount);
    }

    /**
     * @dev returns given address vesting periods data (amount and dates)
     */
    function getUserVestings(address userAddress) external view returns (uint256[] memory) {
        return usersVestings[userAddress];
    }

    /**
     * @dev returns the amount of current blocked tokens for given address based on the block.timestamp
     */
    function getVestingTokenAmount(address userAddress) public view returns (uint256) {
        uint256[] memory vestings = usersVestings[userAddress];
        //unchecked block, checks done in the transferWithVesting function
        uint256 amount = 0;
        unchecked {
            uint256 currentBlockTime = block.timestamp;
            for(uint256 i=0;i<vestings.length;i++){
                uint256 vestingAmountAndDates = vestings[i];
                (uint256 vestingAmount, uint256 startDate, uint256 endDate, uint256 cliffDate) = _extractVestingAmountAndDates(vestingAmountAndDates);
                if(currentBlockTime < cliffDate) {
                    amount = amount + vestingAmount;
                    continue;
                }
                if(currentBlockTime >= endDate) {
                    continue;
                }
                amount = amount + (((endDate - currentBlockTime) * vestingAmount) / (endDate - startDate));         
            }
        }
       return amount;
    }

    //TOKEN TRANSFER VESTING CHECKS

    /**
     * @dev override ERC20 update function to add vesting period checks
     */
    function _update(address _from, address _to, uint256 _value) internal override {
        _checkBeforeUpdate(_from, _value);
        ERC20._update(_from, _to, _value);
    }

    //UTILS

    /**
     * @dev compress vesting period data in a single uint256
     *
     * compress the four following values :
     * - amount (can't exceed 2^112, bounded by MAX_SUPPLY)
     * - startDate (can't be greater than current timestamp in seconds + 5years)
     * - endDate (can't be greater than current timestamp in seconds + 5years)
     * - cliffDate (can't be greater than current timestamp in seconds + 5years)
     */
    function _compressVestingAmountAndDates(uint112 _amount, uint48 _startDate, uint48 _endDate, uint48 _cliffDate) internal pure returns (uint256) {
        uint256 startEndCliffDates = _amount + (uint256(_startDate) << 112) + (uint256(_endDate) << 160) + (uint256(_cliffDate) << 208);
        return startEndCliffDates;
    }

    /**
     * @dev extract the four values from compress function above
     */
    function _extractVestingAmountAndDates(uint256 _vestingAmountAndDates) internal pure returns (uint256, uint256, uint256, uint256) {
        uint112 amount = uint112(_vestingAmountAndDates);
        uint48 startDate = uint48(_vestingAmountAndDates >> 112);
        uint48 endDate = uint48(_vestingAmountAndDates >> 160);
        uint48 cliffDate = uint48(_vestingAmountAndDates >> 208);
        return (uint256(amount), uint256(startDate), uint256(endDate), uint256(cliffDate));
    }

    /**
     * @dev checks _from balance and vesting periods before a token transfer
     */
    function _checkBeforeUpdate(address _from, uint256 _value) internal {
        if(usersVestings[_from].length > 0) {
            uint256 vestingTokensAmount = getVestingTokenAmount(_from);
            if(vestingTokensAmount == 0) {
                delete(usersVestings[_from]);
                return;
            }
            uint256 fromBalance = balanceOf(_from) - vestingTokensAmount;
            if (fromBalance < _value) {
                revert ERC20InsufficientBalance(_from, fromBalance, _value);
            }
        }
    }

}

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"contractOwner","type":"address"}],"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":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getUserVestings","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getVestingTokenAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sellers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"bool","name":"isSeller","type":"bool"}],"name":"setSeller","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPause","type":"bool"}],"name":"switchPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint112","name":"amount","type":"uint112"},{"internalType":"uint48","name":"startDate","type":"uint48"},{"internalType":"uint48","name":"endDate","type":"uint48"},{"internalType":"uint48","name":"cliffDate","type":"uint48"}],"name":"transferWithVesting","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e5038038062002e5083398181016040528101906200003791906200091d565b806040518060400160405280600f81526020017f4d455441464947485420544f4b454e00000000000000000000000000000000008152506040518060400160405280600381526020017f4d465400000000000000000000000000000000000000000000000000000000008152508160039081620000b5919062000bc9565b508060049081620000c7919062000bc9565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013f5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000136919062000cc1565b60405180910390fd5b62000150816200019060201b60201c565b506000600560146101000a81548160ff02191690831515021790555062000189816a52b7d2dcc80cd2e40000006200025660201b60201c565b5062000e4c565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002cb5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002c2919062000cc1565b60405180910390fd5b620002df60008383620002e360201b60201c565b5050565b620002f583826200030d60201b60201c565b620003088383836200044160201b60201c565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011156200043c5760006200036c836200067160201b60201c565b905060008103620003cb57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000620003c4919062000871565b506200043d565b600081620003df85620007c460201b60201c565b620003eb919062000d0d565b90508281101562000439578381846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004309392919062000d59565b60405180910390fd5b50505b5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620004975780600260008282546200048a919062000d96565b925050819055506200056d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000526578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200051d9392919062000d59565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005b8578060026000828254039250508190555062000605565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000664919062000dd1565b60405180910390a3505050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015620006ff57602002820191906000526020600020905b815481526020019060010190808311620006ea575b5050505050905060008042905060005b8351811015620007b857600084828151811062000731576200073062000dee565b5b6020026020010151905060008060008062000752856200080c60201b60201c565b935093509350935080871015620007735783880197505050505050620007aa565b81871062000786575050505050620007aa565b8282038488840302816200079f576200079e62000e1d565b5b048801975050505050505b80806001019150506200070f565b50508092505050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060008060008590506000607087901c9050600060a088901c9050600060d089901c9050836dffffffffffffffffffffffffffff168365ffffffffffff168365ffffffffffff168365ffffffffffff169750975097509750505050509193509193565b508054600082559060005260206000209081019062000891919062000894565b50565b5b80821115620008af57600081600090555060010162000895565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008e582620008b8565b9050919050565b620008f781620008d8565b81146200090357600080fd5b50565b6000815190506200091781620008ec565b92915050565b600060208284031215620009365762000935620008b3565b5b6000620009468482850162000906565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009d157607f821691505b602082108103620009e757620009e662000989565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a12565b62000a5d868362000a12565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000aaa62000aa462000a9e8462000a75565b62000a7f565b62000a75565b9050919050565b6000819050919050565b62000ac68362000a89565b62000ade62000ad58262000ab1565b84845462000a1f565b825550505050565b600090565b62000af562000ae6565b62000b0281848462000abb565b505050565b5b8181101562000b2a5762000b1e60008262000aeb565b60018101905062000b08565b5050565b601f82111562000b795762000b4381620009ed565b62000b4e8462000a02565b8101602085101562000b5e578190505b62000b7662000b6d8562000a02565b83018262000b07565b50505b505050565b600082821c905092915050565b600062000b9e6000198460080262000b7e565b1980831691505092915050565b600062000bb9838362000b8b565b9150826002028217905092915050565b62000bd4826200094f565b67ffffffffffffffff81111562000bf05762000bef6200095a565b5b62000bfc8254620009b8565b62000c0982828562000b2e565b600060209050601f83116001811462000c41576000841562000c2c578287015190505b62000c38858262000bab565b86555062000ca8565b601f19841662000c5186620009ed565b60005b8281101562000c7b5784890151825560018201915060208501945060208101905062000c54565b8683101562000c9b578489015162000c97601f89168262000b8b565b8355505b6001600288020188555050505b505050505050565b62000cbb81620008d8565b82525050565b600060208201905062000cd8600083018462000cb0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d1a8262000a75565b915062000d278362000a75565b925082820390508181111562000d425762000d4162000cde565b5b92915050565b62000d538162000a75565b82525050565b600060608201905062000d70600083018662000cb0565b62000d7f602083018562000d48565b62000d8e604083018462000d48565b949350505050565b600062000da38262000a75565b915062000db08362000a75565b925082820190508082111562000dcb5762000dca62000cde565b5b92915050565b600060208201905062000de8600083018462000d48565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b611ff48062000e5c6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a2c78d116100ad578063b264cf4411610071578063b264cf441461035d578063dd62ed3e14610379578063e29983c5146103a9578063ef81fc15146103c5578063f2fde38b146103e15761012c565b806370a2c78d146102b7578063715018a6146102e75780638da5cb5b146102f157806395d89b411461030f578063a9059cbb1461032d5761012c565b806332cb6b0c116100f457806332cb6b0c146101eb5780635c975abb146102095780636d47ab72146102275780637090eba81461025757806370a08231146102875761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103fd565b6040516101469190611768565b60405180910390f35b61016960048036038101906101649190611823565b61048f565b604051610176919061187e565b60405180910390f35b6101876104b2565b60405161019491906118a8565b60405180910390f35b6101b760048036038101906101b291906118c3565b6104bc565b6040516101c4919061187e565b60405180910390f35b6101d56104eb565b6040516101e29190611932565b60405180910390f35b6101f36104f4565b60405161020091906118a8565b60405180910390f35b610211610503565b60405161021e919061187e565b60405180910390f35b610241600480360381019061023c919061194d565b61051a565b60405161024e919061187e565b60405180910390f35b610271600480360381019061026c919061194d565b61053a565b60405161027e9190611a38565b60405180910390f35b6102a1600480360381019061029c919061194d565b6105d1565b6040516102ae91906118a8565b60405180910390f35b6102d160048036038101906102cc919061194d565b610619565b6040516102de91906118a8565b60405180910390f35b6102ef610756565b005b6102f961076a565b6040516103069190611a69565b60405180910390f35b610317610794565b6040516103249190611768565b60405180910390f35b61034760048036038101906103429190611823565b610826565b604051610354919061187e565b60405180910390f35b61037760048036038101906103729190611ab0565b610849565b005b610393600480360381019061038e9190611add565b610870565b6040516103a091906118a8565b60405180910390f35b6103c360048036038101906103be9190611b1d565b6108f7565b005b6103df60048036038101906103da9190611be1565b61095a565b005b6103fb60048036038101906103f6919061194d565b610be2565b005b60606003805461040c90611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461043890611c8b565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60008061049a610c68565b90506104a7818585610c70565b600191505092915050565b6000600254905090565b6000806104c7610c68565b90506104d4858285610c82565b6104df858585610d16565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b6000600560149054906101000a900460ff16905090565b60066020528060005260406000206000915054906101000a900460ff1681565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156105c557602002820191906000526020600020905b8154815260200190600101908083116105b1575b50505050509050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156106a557602002820191906000526020600020905b815481526020019060010190808311610691575b5050505050905060008042905060005b835181101561074a5760008482815181106106d3576106d2611cbc565b5b602002602001015190506000806000806106ec85610e0a565b93509350935093508087101561070b578388019750505050505061073d565b81871061071c57505050505061073d565b82820384888403028161073257610731611ceb565b5b048801975050505050505b80806001019150506106b5565b50508092505050919050565b61075e610e6f565b6107686000610ef6565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a390611c8b565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90611c8b565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b600080610831610c68565b905061083e818585610d16565b600191505092915050565b610851610e6f565b80156108645761085f610fbc565b61086d565b61086c61101f565b5b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ff610e6f565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610962611082565b6006600061096e610c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611d66565b60405180910390fd5b8065ffffffffffff168365ffffffffffff1611158015610a2557508165ffffffffffff168165ffffffffffff1611155b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90611dd2565b60405180910390fd5b630967a76042610a749190611e21565b8265ffffffffffff1610610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611ea1565b60405180910390fd5b601e600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905010610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611f33565b60405180910390fd5b6000610b50858585856110c3565b9050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055610bda610bc3610c68565b87876dffffffffffffffffffffffffffff16610d16565b505050505050565b610bea610e6f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5c5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c539190611a69565b60405180910390fd5b610c6581610ef6565b50565b600033905090565b610c7d838383600161112a565b505050565b6000610c8e8484610870565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d105781811015610d00578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cf793929190611f53565b60405180910390fd5b610d0f8484848403600061112a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d885760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d7f9190611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfa5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610df19190611a69565b60405180910390fd5b610e05838383611301565b505050565b60008060008060008590506000607087901c9050600060a088901c9050600060d089901c9050836dffffffffffffffffffffffffffff168365ffffffffffff168365ffffffffffff168365ffffffffffff169750975097509750505050509193509193565b610e77610c68565b73ffffffffffffffffffffffffffffffffffffffff16610e9561076a565b73ffffffffffffffffffffffffffffffffffffffff1614610ef457610eb8610c68565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eeb9190611a69565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610fc4611082565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611008610c68565b6040516110159190611a69565b60405180910390a1565b61102761131b565b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61106b610c68565b6040516110789190611a69565b60405180910390a1565b61108a610503565b156110c1576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008060d08365ffffffffffff16901b60a08565ffffffffffff16901b60708765ffffffffffff16901b886dffffffffffffffffffffffffffff166111089190611e21565b6111129190611e21565b61111c9190611e21565b905080915050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361119c5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111939190611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361120e5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112059190611a69565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112f291906118a8565b60405180910390a35b50505050565b61130b838261135b565b611316838383611475565b505050565b611323610503565b611359576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011156114705760006113b183610619565b90506000810361140c57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611406919061169a565b50611471565b600081611418856105d1565b6114229190611f8a565b90508281101561146d578381846040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161146493929190611f53565b60405180910390fd5b50505b5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c75780600260008282546114bb9190611e21565b9250508190555061159a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611553578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161154a93929190611f53565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e35780600260008282540392505081905550611630565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161168d91906118a8565b60405180910390a3505050565b50805460008255906000526020600020908101906116b891906116bb565b50565b5b808211156116d45760008160009055506001016116bc565b5090565b600081519050919050565b600082825260208201905092915050565b60005b838110156117125780820151818401526020810190506116f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061173a826116d8565b61174481856116e3565b93506117548185602086016116f4565b61175d8161171e565b840191505092915050565b60006020820190508181036000830152611782818461172f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ba8261178f565b9050919050565b6117ca816117af565b81146117d557600080fd5b50565b6000813590506117e7816117c1565b92915050565b6000819050919050565b611800816117ed565b811461180b57600080fd5b50565b60008135905061181d816117f7565b92915050565b6000806040838503121561183a5761183961178a565b5b6000611848858286016117d8565b92505060206118598582860161180e565b9150509250929050565b60008115159050919050565b61187881611863565b82525050565b6000602082019050611893600083018461186f565b92915050565b6118a2816117ed565b82525050565b60006020820190506118bd6000830184611899565b92915050565b6000806000606084860312156118dc576118db61178a565b5b60006118ea868287016117d8565b93505060206118fb868287016117d8565b925050604061190c8682870161180e565b9150509250925092565b600060ff82169050919050565b61192c81611916565b82525050565b60006020820190506119476000830184611923565b92915050565b6000602082840312156119635761196261178a565b5b6000611971848285016117d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6119af816117ed565b82525050565b60006119c183836119a6565b60208301905092915050565b6000602082019050919050565b60006119e58261197a565b6119ef8185611985565b93506119fa83611996565b8060005b83811015611a2b578151611a1288826119b5565b9750611a1d836119cd565b9250506001810190506119fe565b5085935050505092915050565b60006020820190508181036000830152611a5281846119da565b905092915050565b611a63816117af565b82525050565b6000602082019050611a7e6000830184611a5a565b92915050565b611a8d81611863565b8114611a9857600080fd5b50565b600081359050611aaa81611a84565b92915050565b600060208284031215611ac657611ac561178a565b5b6000611ad484828501611a9b565b91505092915050565b60008060408385031215611af457611af361178a565b5b6000611b02858286016117d8565b9250506020611b13858286016117d8565b9150509250929050565b60008060408385031215611b3457611b3361178a565b5b6000611b42858286016117d8565b9250506020611b5385828601611a9b565b9150509250929050565b60006dffffffffffffffffffffffffffff82169050919050565b611b8081611b5d565b8114611b8b57600080fd5b50565b600081359050611b9d81611b77565b92915050565b600065ffffffffffff82169050919050565b611bbe81611ba3565b8114611bc957600080fd5b50565b600081359050611bdb81611bb5565b92915050565b600080600080600060a08688031215611bfd57611bfc61178a565b5b6000611c0b888289016117d8565b9550506020611c1c88828901611b8e565b9450506040611c2d88828901611bcc565b9350506060611c3e88828901611bcc565b9250506080611c4f88828901611bcc565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b602082108103611cb657611cb5611c5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f73656e646572206973206e6f7420612073656c6c657200000000000000000000600082015250565b6000611d506016836116e3565b9150611d5b82611d1a565b602082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b7f696e76616c696420646174657300000000000000000000000000000000000000600082015250565b6000611dbc600d836116e3565b9150611dc782611d86565b602082019050919050565b60006020820190508181036000830152611deb81611daf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e2c826117ed565b9150611e37836117ed565b9250828201905080821115611e4f57611e4e611df2565b5b92915050565b7f656e64206461746520746f6f2066617200000000000000000000000000000000600082015250565b6000611e8b6010836116e3565b9150611e9682611e55565b602082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f746f6f206d616e792076657374696e6720646174617320666f7220746869732060008201527f6163636f756e7400000000000000000000000000000000000000000000000000602082015250565b6000611f1d6027836116e3565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b6000606082019050611f686000830186611a5a565b611f756020830185611899565b611f826040830184611899565b949350505050565b6000611f95826117ed565b9150611fa0836117ed565b9250828203905081811115611fb857611fb7611df2565b5b9291505056fea26469706673582212201d5bce5636ec065bdedf243794f0a79240d34468399a1750b0141193b913131864736f6c634300081700330000000000000000000000008723ddde131447b783651d86d6c6293f7b871b7c

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a2c78d116100ad578063b264cf4411610071578063b264cf441461035d578063dd62ed3e14610379578063e29983c5146103a9578063ef81fc15146103c5578063f2fde38b146103e15761012c565b806370a2c78d146102b7578063715018a6146102e75780638da5cb5b146102f157806395d89b411461030f578063a9059cbb1461032d5761012c565b806332cb6b0c116100f457806332cb6b0c146101eb5780635c975abb146102095780636d47ab72146102275780637090eba81461025757806370a08231146102875761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103fd565b6040516101469190611768565b60405180910390f35b61016960048036038101906101649190611823565b61048f565b604051610176919061187e565b60405180910390f35b6101876104b2565b60405161019491906118a8565b60405180910390f35b6101b760048036038101906101b291906118c3565b6104bc565b6040516101c4919061187e565b60405180910390f35b6101d56104eb565b6040516101e29190611932565b60405180910390f35b6101f36104f4565b60405161020091906118a8565b60405180910390f35b610211610503565b60405161021e919061187e565b60405180910390f35b610241600480360381019061023c919061194d565b61051a565b60405161024e919061187e565b60405180910390f35b610271600480360381019061026c919061194d565b61053a565b60405161027e9190611a38565b60405180910390f35b6102a1600480360381019061029c919061194d565b6105d1565b6040516102ae91906118a8565b60405180910390f35b6102d160048036038101906102cc919061194d565b610619565b6040516102de91906118a8565b60405180910390f35b6102ef610756565b005b6102f961076a565b6040516103069190611a69565b60405180910390f35b610317610794565b6040516103249190611768565b60405180910390f35b61034760048036038101906103429190611823565b610826565b604051610354919061187e565b60405180910390f35b61037760048036038101906103729190611ab0565b610849565b005b610393600480360381019061038e9190611add565b610870565b6040516103a091906118a8565b60405180910390f35b6103c360048036038101906103be9190611b1d565b6108f7565b005b6103df60048036038101906103da9190611be1565b61095a565b005b6103fb60048036038101906103f6919061194d565b610be2565b005b60606003805461040c90611c8b565b80601f016020809104026020016040519081016040528092919081815260200182805461043890611c8b565b80156104855780601f1061045a57610100808354040283529160200191610485565b820191906000526020600020905b81548152906001019060200180831161046857829003601f168201915b5050505050905090565b60008061049a610c68565b90506104a7818585610c70565b600191505092915050565b6000600254905090565b6000806104c7610c68565b90506104d4858285610c82565b6104df858585610d16565b60019150509392505050565b60006012905090565b6a52b7d2dcc80cd2e400000081565b6000600560149054906101000a900460ff16905090565b60066020528060005260406000206000915054906101000a900460ff1681565b6060600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156105c557602002820191906000526020600020905b8154815260200190600101908083116105b1575b50505050509050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156106a557602002820191906000526020600020905b815481526020019060010190808311610691575b5050505050905060008042905060005b835181101561074a5760008482815181106106d3576106d2611cbc565b5b602002602001015190506000806000806106ec85610e0a565b93509350935093508087101561070b578388019750505050505061073d565b81871061071c57505050505061073d565b82820384888403028161073257610731611ceb565b5b048801975050505050505b80806001019150506106b5565b50508092505050919050565b61075e610e6f565b6107686000610ef6565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a390611c8b565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90611c8b565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b600080610831610c68565b905061083e818585610d16565b600191505092915050565b610851610e6f565b80156108645761085f610fbc565b61086d565b61086c61101f565b5b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108ff610e6f565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610962611082565b6006600061096e610c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611d66565b60405180910390fd5b8065ffffffffffff168365ffffffffffff1611158015610a2557508165ffffffffffff168165ffffffffffff1611155b610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b90611dd2565b60405180910390fd5b630967a76042610a749190611e21565b8265ffffffffffff1610610abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab490611ea1565b60405180910390fd5b601e600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905010610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611f33565b60405180910390fd5b6000610b50858585856110c3565b9050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055610bda610bc3610c68565b87876dffffffffffffffffffffffffffff16610d16565b505050505050565b610bea610e6f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c5c5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c539190611a69565b60405180910390fd5b610c6581610ef6565b50565b600033905090565b610c7d838383600161112a565b505050565b6000610c8e8484610870565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d105781811015610d00578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cf793929190611f53565b60405180910390fd5b610d0f8484848403600061112a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d885760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d7f9190611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dfa5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610df19190611a69565b60405180910390fd5b610e05838383611301565b505050565b60008060008060008590506000607087901c9050600060a088901c9050600060d089901c9050836dffffffffffffffffffffffffffff168365ffffffffffff168365ffffffffffff168365ffffffffffff169750975097509750505050509193509193565b610e77610c68565b73ffffffffffffffffffffffffffffffffffffffff16610e9561076a565b73ffffffffffffffffffffffffffffffffffffffff1614610ef457610eb8610c68565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610eeb9190611a69565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610fc4611082565b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611008610c68565b6040516110159190611a69565b60405180910390a1565b61102761131b565b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61106b610c68565b6040516110789190611a69565b60405180910390a1565b61108a610503565b156110c1576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b60008060d08365ffffffffffff16901b60a08565ffffffffffff16901b60708765ffffffffffff16901b886dffffffffffffffffffffffffffff166111089190611e21565b6111129190611e21565b61111c9190611e21565b905080915050949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361119c5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111939190611a69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361120e5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112059190611a69565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516112f291906118a8565b60405180910390a35b50505050565b61130b838261135b565b611316838383611475565b505050565b611323610503565b611359576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011156114705760006113b183610619565b90506000810361140c57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611406919061169a565b50611471565b600081611418856105d1565b6114229190611f8a565b90508281101561146d578381846040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161146493929190611f53565b60405180910390fd5b50505b5b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c75780600260008282546114bb9190611e21565b9250508190555061159a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611553578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161154a93929190611f53565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e35780600260008282540392505081905550611630565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161168d91906118a8565b60405180910390a3505050565b50805460008255906000526020600020908101906116b891906116bb565b50565b5b808211156116d45760008160009055506001016116bc565b5090565b600081519050919050565b600082825260208201905092915050565b60005b838110156117125780820151818401526020810190506116f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061173a826116d8565b61174481856116e3565b93506117548185602086016116f4565b61175d8161171e565b840191505092915050565b60006020820190508181036000830152611782818461172f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ba8261178f565b9050919050565b6117ca816117af565b81146117d557600080fd5b50565b6000813590506117e7816117c1565b92915050565b6000819050919050565b611800816117ed565b811461180b57600080fd5b50565b60008135905061181d816117f7565b92915050565b6000806040838503121561183a5761183961178a565b5b6000611848858286016117d8565b92505060206118598582860161180e565b9150509250929050565b60008115159050919050565b61187881611863565b82525050565b6000602082019050611893600083018461186f565b92915050565b6118a2816117ed565b82525050565b60006020820190506118bd6000830184611899565b92915050565b6000806000606084860312156118dc576118db61178a565b5b60006118ea868287016117d8565b93505060206118fb868287016117d8565b925050604061190c8682870161180e565b9150509250925092565b600060ff82169050919050565b61192c81611916565b82525050565b60006020820190506119476000830184611923565b92915050565b6000602082840312156119635761196261178a565b5b6000611971848285016117d8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6119af816117ed565b82525050565b60006119c183836119a6565b60208301905092915050565b6000602082019050919050565b60006119e58261197a565b6119ef8185611985565b93506119fa83611996565b8060005b83811015611a2b578151611a1288826119b5565b9750611a1d836119cd565b9250506001810190506119fe565b5085935050505092915050565b60006020820190508181036000830152611a5281846119da565b905092915050565b611a63816117af565b82525050565b6000602082019050611a7e6000830184611a5a565b92915050565b611a8d81611863565b8114611a9857600080fd5b50565b600081359050611aaa81611a84565b92915050565b600060208284031215611ac657611ac561178a565b5b6000611ad484828501611a9b565b91505092915050565b60008060408385031215611af457611af361178a565b5b6000611b02858286016117d8565b9250506020611b13858286016117d8565b9150509250929050565b60008060408385031215611b3457611b3361178a565b5b6000611b42858286016117d8565b9250506020611b5385828601611a9b565b9150509250929050565b60006dffffffffffffffffffffffffffff82169050919050565b611b8081611b5d565b8114611b8b57600080fd5b50565b600081359050611b9d81611b77565b92915050565b600065ffffffffffff82169050919050565b611bbe81611ba3565b8114611bc957600080fd5b50565b600081359050611bdb81611bb5565b92915050565b600080600080600060a08688031215611bfd57611bfc61178a565b5b6000611c0b888289016117d8565b9550506020611c1c88828901611b8e565b9450506040611c2d88828901611bcc565b9350506060611c3e88828901611bcc565b9250506080611c4f88828901611bcc565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ca357607f821691505b602082108103611cb657611cb5611c5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f73656e646572206973206e6f7420612073656c6c657200000000000000000000600082015250565b6000611d506016836116e3565b9150611d5b82611d1a565b602082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b7f696e76616c696420646174657300000000000000000000000000000000000000600082015250565b6000611dbc600d836116e3565b9150611dc782611d86565b602082019050919050565b60006020820190508181036000830152611deb81611daf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e2c826117ed565b9150611e37836117ed565b9250828201905080821115611e4f57611e4e611df2565b5b92915050565b7f656e64206461746520746f6f2066617200000000000000000000000000000000600082015250565b6000611e8b6010836116e3565b9150611e9682611e55565b602082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f746f6f206d616e792076657374696e6720646174617320666f7220746869732060008201527f6163636f756e7400000000000000000000000000000000000000000000000000602082015250565b6000611f1d6027836116e3565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b6000606082019050611f686000830186611a5a565b611f756020830185611899565b611f826040830184611899565b949350505050565b6000611f95826117ed565b9150611fa0836117ed565b9250828203905081811115611fb857611fb7611df2565b5b9291505056fea26469706673582212201d5bce5636ec065bdedf243794f0a79240d34468399a1750b0141193b913131864736f6c63430008170033

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

0000000000000000000000008723ddde131447b783651d86d6c6293f7b871b7c

-----Decoded View---------------
Arg [0] : contractOwner (address): 0x8723ddde131447B783651d86D6C6293F7b871B7c

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008723ddde131447b783651d86d6c6293f7b871b7c


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.