POL Price: $0.427428 (+13.93%)
 

Overview

Max Total Supply

200,000,000 LFT

Holders

696

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Lifti

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Lifti.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Lifti is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;

    struct Vesting {
        uint256 totalAmount;
        uint256 releasedAmount;
        uint256 startTime;
        uint256 lastReleaseTime;
    }

    mapping(address => Vesting) public vestingInfo;
    uint256 public VESTING_PERIOD = 365 days;

    constructor(
        address _teamAddress, // 25%
        address _reserveFundAddress, // 15%
        address _communityAddress, // 15%
        address _liquidityPoolAddress, // 10%
        address _stakingAddress, //20%
        address _partnershipAddress // 15%
    ) ERC20("Lifti", "LFT") {
        require(_teamAddress != address(0), "Lifti: Team Address is zero");
        require(
            _reserveFundAddress != address(0),
            "Lifti: Reserve Fund Address is zero"
        );
        require(
            _communityAddress != address(0),
            "Lifti: Community Address is zero"
        );
        require(
            _liquidityPoolAddress != address(0),
            "Lifti: Liquidity Pool Address is zero"
        );
        require(
            _stakingAddress != address(0),
            "Lifti: Staking Address is zero"
        );
        require(
            _partnershipAddress != address(0),
            "Lifti: Partnership Address is zero"
        );

        // TOTAL SUPPLY: 200,000,000 LFT
        uint256 totalSupply = 200_000_000 * 10 ** decimals();
        _mint(address(this), totalSupply.mul(25).div(100));
        uint256 teamVestingAmount = totalSupply.mul(25).div(100);
        vestingInfo[_teamAddress] = Vesting({
            totalAmount: teamVestingAmount,
            releasedAmount: 0,
            startTime: block.timestamp,
            lastReleaseTime: block.timestamp
        });
        _mint(_reserveFundAddress, totalSupply.mul(15).div(100));
        _mint(_communityAddress, totalSupply.mul(15).div(100));
        _mint(_liquidityPoolAddress, totalSupply.mul(10).div(100));
        _mint(_stakingAddress, totalSupply.mul(20).div(100));
        _mint(_partnershipAddress, totalSupply.mul(15).div(100));
    }

    function releaseTeamTokens(address _walletAddress) external onlyOwner {
        Vesting storage vesting = vestingInfo[_walletAddress];

        // Ensure the vesting period has started and not all tokens are released
        require(
            vesting.totalAmount.sub(vesting.releasedAmount) > 0,
            "Lifti: No tokens to release"
        );
        require(
            block.timestamp >= vesting.startTime,
            "Lifti: Vesting has not started yet"
        );

        // Calculate the amount of tokens to release (1/3 of the remaining tokens each year)
        uint256 timePassed = block.timestamp.sub(vesting.lastReleaseTime);
        uint256 yearsPassed = timePassed.div(VESTING_PERIOD);
        require(yearsPassed > 0, "Lifti: 1 year lockup period not reached");
        uint256 releaseAmount = vesting.totalAmount.div(3).mul(yearsPassed);

        if (yearsPassed >= 3) {
            releaseAmount = vesting.totalAmount.sub(vesting.releasedAmount);
        } else {
            releaseAmount = releaseAmount.sub(vesting.releasedAmount);
        }

        // Update released amount
        vesting.releasedAmount = vesting.releasedAmount.add(releaseAmount);
        vesting.lastReleaseTime = vesting.lastReleaseTime.add(
            yearsPassed.mul(VESTING_PERIOD)
        );
        // Transfer the tokens to the team address
        _transfer(address(this), _walletAddress, releaseAmount);
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamAddress","type":"address"},{"internalType":"address","name":"_reserveFundAddress","type":"address"},{"internalType":"address","name":"_communityAddress","type":"address"},{"internalType":"address","name":"_liquidityPoolAddress","type":"address"},{"internalType":"address","name":"_stakingAddress","type":"address"},{"internalType":"address","name":"_partnershipAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VESTING_PERIOD","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_walletAddress","type":"address"}],"name":"releaseTeamTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingInfo","outputs":[{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"releasedAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"lastReleaseTime","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526301e133806007553480156200001957600080fd5b506040516200338b3803806200338b83398181016040528101906200003f91906200092f565b6040518060400160405280600581526020017f4c696674690000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c465400000000000000000000000000000000000000000000000000000000008152508160039081620000bc919062000c45565b508060049081620000ce919062000c45565b505050620000f1620000e56200064760201b60201c565b6200064f60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160362000163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015a9062000d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620001d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cc9062000e25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000247576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023e9062000e97565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b09062000f2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200032b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003229062000fa1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200039d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003949062001039565b60405180910390fd5b6000620003af6200071560201b60201c565b600a620003bd9190620011eb565b630bebc200620003ce91906200123c565b905062000416306200040a6064620003f66019866200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b60006200044d6064620004396019856200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b905060405180608001604052808281526020016000815260200142815260200142815250600660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030155905050620005218762000515606462000501600f876200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b62000567866200055b606462000547600f876200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b620005ad85620005a160646200058d600a876200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b620005f384620005e76064620005d36014876200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b62000639836200062d606462000619600f876200071e60201b62000a671790919060201c565b6200073660201b62000a7d1790919060201c565b6200074e60201b60201c565b5050505050505050620013df565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600081836200072e91906200123c565b905092915050565b60008183620007469190620012cc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b79062001354565b60405180910390fd5b620007d460008383620008bb60201b60201c565b8060026000828254620007e8919062001376565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200089b9190620013c2565b60405180910390a3620008b760008383620008c060201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008f782620008ca565b9050919050565b6200090981620008ea565b81146200091557600080fd5b50565b6000815190506200092981620008fe565b92915050565b60008060008060008060c087890312156200094f576200094e620008c5565b5b60006200095f89828a0162000918565b96505060206200097289828a0162000918565b95505060406200098589828a0162000918565b94505060606200099889828a0162000918565b9350506080620009ab89828a0162000918565b92505060a0620009be89828a0162000918565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a4d57607f821691505b60208210810362000a635762000a6262000a05565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000acd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a8e565b62000ad9868362000a8e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b2662000b2062000b1a8462000af1565b62000afb565b62000af1565b9050919050565b6000819050919050565b62000b428362000b05565b62000b5a62000b518262000b2d565b84845462000a9b565b825550505050565b600090565b62000b7162000b62565b62000b7e81848462000b37565b505050565b5b8181101562000ba65762000b9a60008262000b67565b60018101905062000b84565b5050565b601f82111562000bf55762000bbf8162000a69565b62000bca8462000a7e565b8101602085101562000bda578190505b62000bf262000be98562000a7e565b83018262000b83565b50505b505050565b600082821c905092915050565b600062000c1a6000198460080262000bfa565b1980831691505092915050565b600062000c35838362000c07565b9150826002028217905092915050565b62000c5082620009cb565b67ffffffffffffffff81111562000c6c5762000c6b620009d6565b5b62000c78825462000a34565b62000c8582828562000baa565b600060209050601f83116001811462000cbd576000841562000ca8578287015190505b62000cb4858262000c27565b86555062000d24565b601f19841662000ccd8662000a69565b60005b8281101562000cf75784890151825560018201915060208501945060208101905062000cd0565b8683101562000d17578489015162000d13601f89168262000c07565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4c696674693a205465616d2041646472657373206973207a65726f0000000000600082015250565b600062000d75601b8362000d2c565b915062000d828262000d3d565b602082019050919050565b6000602082019050818103600083015262000da88162000d66565b9050919050565b7f4c696674693a20526573657276652046756e642041646472657373206973207a60008201527f65726f0000000000000000000000000000000000000000000000000000000000602082015250565b600062000e0d60238362000d2c565b915062000e1a8262000daf565b604082019050919050565b6000602082019050818103600083015262000e408162000dfe565b9050919050565b7f4c696674693a20436f6d6d756e6974792041646472657373206973207a65726f600082015250565b600062000e7f60208362000d2c565b915062000e8c8262000e47565b602082019050919050565b6000602082019050818103600083015262000eb28162000e70565b9050919050565b7f4c696674693a204c697175696469747920506f6f6c204164647265737320697360008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600062000f1760258362000d2c565b915062000f248262000eb9565b604082019050919050565b6000602082019050818103600083015262000f4a8162000f08565b9050919050565b7f4c696674693a205374616b696e672041646472657373206973207a65726f0000600082015250565b600062000f89601e8362000d2c565b915062000f968262000f51565b602082019050919050565b6000602082019050818103600083015262000fbc8162000f7a565b9050919050565b7f4c696674693a20506172746e6572736869702041646472657373206973207a6560008201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b60006200102160228362000d2c565b91506200102e8262000fc3565b604082019050919050565b60006020820190508181036000830152620010548162001012565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620010e957808604811115620010c157620010c06200105b565b5b6001851615620010d15780820291505b8081029050620010e1856200108a565b9450620010a1565b94509492505050565b600082620011045760019050620011d7565b81620011145760009050620011d7565b81600181146200112d576002811462001138576200116e565b6001915050620011d7565b60ff8411156200114d576200114c6200105b565b5b8360020a9150848211156200116757620011666200105b565b5b50620011d7565b5060208310610133831016604e8410600b8410161715620011a85782820a905083811115620011a257620011a16200105b565b5b620011d7565b620011b7848484600162001097565b92509050818404811115620011d157620011d06200105b565b5b81810290505b9392505050565b600060ff82169050919050565b6000620011f88262000af1565b91506200120583620011de565b9250620012347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620010f2565b905092915050565b6000620012498262000af1565b9150620012568362000af1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200129257620012916200105b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012d98262000af1565b9150620012e68362000af1565b925082620012f957620012f86200129d565b5b828204905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200133c601f8362000d2c565b9150620013498262001304565b602082019050919050565b600060208201905081810360008301526200136f816200132d565b9050919050565b6000620013838262000af1565b9150620013908362000af1565b9250828201905080821115620013ab57620013aa6200105b565b5b92915050565b620013bc8162000af1565b82525050565b6000602082019050620013d96000830184620013b1565b92915050565b611f9c80620013ef6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030c578063ba3b16221461033c578063dd62ed3e14610358578063f2fde38b14610388578063f78e633d146103a457610121565b8063715018a61461027a57806379cc6790146102845780638da5cb5b146102a057806395d89b41146102be578063a457c2d7146102dc57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe57806342966c681461022e57806370a082311461024a57610121565b80630197d9721461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e6103d7565b60405161013b91906112c6565b60405180910390f35b61014c6103dd565b6040516101599190611371565b60405180910390f35b61017c60048036038101906101779190611422565b61046f565b604051610189919061147d565b60405180910390f35b61019a610492565b6040516101a791906112c6565b60405180910390f35b6101ca60048036038101906101c59190611498565b61049c565b6040516101d7919061147d565b60405180910390f35b6101e86104cb565b6040516101f59190611507565b60405180910390f35b61021860048036038101906102139190611422565b6104d4565b604051610225919061147d565b60405180910390f35b61024860048036038101906102439190611522565b61050b565b005b610264600480360381019061025f919061154f565b61051f565b60405161027191906112c6565b60405180910390f35b610282610567565b005b61029e60048036038101906102999190611422565b61057b565b005b6102a861059b565b6040516102b5919061158b565b60405180910390f35b6102c66105c5565b6040516102d39190611371565b60405180910390f35b6102f660048036038101906102f19190611422565b610657565b604051610303919061147d565b60405180910390f35b61032660048036038101906103219190611422565b6106ce565b604051610333919061147d565b60405180910390f35b6103566004803603810190610351919061154f565b6106f1565b005b610372600480360381019061036d91906115a6565b61092d565b60405161037f91906112c6565b60405180910390f35b6103a2600480360381019061039d919061154f565b6109b4565b005b6103be60048036038101906103b9919061154f565b610a37565b6040516103ce94939291906115e6565b60405180910390f35b60075481565b6060600380546103ec9061165a565b80601f01602080910402602001604051908101604052809291908181526020018280546104189061165a565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b60008061047a610a93565b9050610487818585610a9b565b600191505092915050565b6000600254905090565b6000806104a7610a93565b90506104b4858285610c64565b6104bf858585610cf0565b60019150509392505050565b60006012905090565b6000806104df610a93565b90506105008185856104f1858961092d565b6104fb91906116ba565b610a9b565b600191505092915050565b61051c610516610a93565b82610f66565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61056f611133565b61057960006111b1565b565b61058d82610587610a93565b83610c64565b6105978282610f66565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105d49061165a565b80601f01602080910402602001604051908101604052809291908181526020018280546106009061165a565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600080610662610a93565b90506000610670828661092d565b9050838110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611760565b60405180910390fd5b6106c28286868403610a9b565b60019250505092915050565b6000806106d9610a93565b90506106e6818585610cf0565b600191505092915050565b6106f9611133565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006107598260010154836000015461127790919063ffffffff16565b11610799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610790906117cc565b60405180910390fd5b80600201544210156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d79061185e565b60405180910390fd5b60006107f982600301544261127790919063ffffffff16565b9050600061081260075483610a7d90919063ffffffff16565b905060008111610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906118f0565b60405180910390fd5b60006108838261087560038760000154610a7d90919063ffffffff16565b610a6790919063ffffffff16565b9050600382106108af576108a88460010154856000015461127790919063ffffffff16565b90506108c9565b6108c684600101548261127790919063ffffffff16565b90505b6108e081856001015461128d90919063ffffffff16565b846001018190555061091361090060075484610a6790919063ffffffff16565b856003015461128d90919063ffffffff16565b8460030181905550610926308683610cf0565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bc611133565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611982565b60405180910390fd5b610a34816111b1565b50565b60066020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b60008183610a7591906119a2565b905092915050565b60008183610a8b9190611a2b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611b60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5791906112c6565b60405180910390a3505050565b6000610c70848461092d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cea5781811015610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390611bcc565b60405180910390fd5b610ce98484848403610a9b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690611c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590611cf0565b60405180910390fd5b610dd98383836112a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690611d82565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4d91906112c6565b60405180910390a3610f608484846112a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90611e14565b60405180910390fd5b610fe1826000836112a3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90611ea6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111a91906112c6565b60405180910390a361112e836000846112a8565b505050565b61113b610a93565b73ffffffffffffffffffffffffffffffffffffffff1661115961059b565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611f12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112859190611f32565b905092915050565b6000818361129b91906116ba565b905092915050565b505050565b505050565b6000819050919050565b6112c0816112ad565b82525050565b60006020820190506112db60008301846112b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561131b578082015181840152602081019050611300565b60008484015250505050565b6000601f19601f8301169050919050565b6000611343826112e1565b61134d81856112ec565b935061135d8185602086016112fd565b61136681611327565b840191505092915050565b6000602082019050818103600083015261138b8184611338565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113c382611398565b9050919050565b6113d3816113b8565b81146113de57600080fd5b50565b6000813590506113f0816113ca565b92915050565b6113ff816112ad565b811461140a57600080fd5b50565b60008135905061141c816113f6565b92915050565b6000806040838503121561143957611438611393565b5b6000611447858286016113e1565b92505060206114588582860161140d565b9150509250929050565b60008115159050919050565b61147781611462565b82525050565b6000602082019050611492600083018461146e565b92915050565b6000806000606084860312156114b1576114b0611393565b5b60006114bf868287016113e1565b93505060206114d0868287016113e1565b92505060406114e18682870161140d565b9150509250925092565b600060ff82169050919050565b611501816114eb565b82525050565b600060208201905061151c60008301846114f8565b92915050565b60006020828403121561153857611537611393565b5b60006115468482850161140d565b91505092915050565b60006020828403121561156557611564611393565b5b6000611573848285016113e1565b91505092915050565b611585816113b8565b82525050565b60006020820190506115a0600083018461157c565b92915050565b600080604083850312156115bd576115bc611393565b5b60006115cb858286016113e1565b92505060206115dc858286016113e1565b9150509250929050565b60006080820190506115fb60008301876112b7565b61160860208301866112b7565b61161560408301856112b7565b61162260608301846112b7565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167257607f821691505b6020821081036116855761168461162b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c5826112ad565b91506116d0836112ad565b92508282019050808211156116e8576116e761168b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061174a6025836112ec565b9150611755826116ee565b604082019050919050565b600060208201905081810360008301526117798161173d565b9050919050565b7f4c696674693a204e6f20746f6b656e7320746f2072656c656173650000000000600082015250565b60006117b6601b836112ec565b91506117c182611780565b602082019050919050565b600060208201905081810360008301526117e5816117a9565b9050919050565b7f4c696674693a2056657374696e6720686173206e6f742073746172746564207960008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006118486022836112ec565b9150611853826117ec565b604082019050919050565b600060208201905081810360008301526118778161183b565b9050919050565b7f4c696674693a20312079656172206c6f636b757020706572696f64206e6f742060008201527f7265616368656400000000000000000000000000000000000000000000000000602082015250565b60006118da6027836112ec565b91506118e58261187e565b604082019050919050565b60006020820190508181036000830152611909816118cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061196c6026836112ec565b915061197782611910565b604082019050919050565b6000602082019050818103600083015261199b8161195f565b9050919050565b60006119ad826112ad565b91506119b8836112ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119f1576119f061168b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a36826112ad565b9150611a41836112ad565b925082611a5157611a506119fc565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab86024836112ec565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4a6022836112ec565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb6601d836112ec565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c486025836112ec565b9150611c5382611bec565b604082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cda6023836112ec565b9150611ce582611c7e565b604082019050919050565b60006020820190508181036000830152611d0981611ccd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d6c6026836112ec565b9150611d7782611d10565b604082019050919050565b60006020820190508181036000830152611d9b81611d5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfe6021836112ec565b9150611e0982611da2565b604082019050919050565b60006020820190508181036000830152611e2d81611df1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e906022836112ec565b9150611e9b82611e34565b604082019050919050565b60006020820190508181036000830152611ebf81611e83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611efc6020836112ec565b9150611f0782611ec6565b602082019050919050565b60006020820190508181036000830152611f2b81611eef565b9050919050565b6000611f3d826112ad565b9150611f48836112ad565b9250828203905081811115611f6057611f5f61168b565b5b9291505056fea2646970667358221220024c3c805b8c61836c25a63435554749769308d89fbbfb8773b8e4ba390df26664736f6c63430008100033000000000000000000000000a87e66f2cf71a12116a9a2de8c7a28ae56174b570000000000000000000000006b34ee3024faf5811d3b6982a8007becca23ca6f0000000000000000000000007fcce64d84cf39760b27a39cf42a61209ae328b9000000000000000000000000328aee46da35efcd3dca48b92d80d054914969e800000000000000000000000024a0538900655849095bcb75934fc6426aedb0ee000000000000000000000000c23ce32b9f643f2023b5ea96c0eb1409713d8c7c

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030c578063ba3b16221461033c578063dd62ed3e14610358578063f2fde38b14610388578063f78e633d146103a457610121565b8063715018a61461027a57806379cc6790146102845780638da5cb5b146102a057806395d89b41146102be578063a457c2d7146102dc57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe57806342966c681461022e57806370a082311461024a57610121565b80630197d9721461012657806306fdde0314610144578063095ea7b31461016257806318160ddd14610192575b600080fd5b61012e6103d7565b60405161013b91906112c6565b60405180910390f35b61014c6103dd565b6040516101599190611371565b60405180910390f35b61017c60048036038101906101779190611422565b61046f565b604051610189919061147d565b60405180910390f35b61019a610492565b6040516101a791906112c6565b60405180910390f35b6101ca60048036038101906101c59190611498565b61049c565b6040516101d7919061147d565b60405180910390f35b6101e86104cb565b6040516101f59190611507565b60405180910390f35b61021860048036038101906102139190611422565b6104d4565b604051610225919061147d565b60405180910390f35b61024860048036038101906102439190611522565b61050b565b005b610264600480360381019061025f919061154f565b61051f565b60405161027191906112c6565b60405180910390f35b610282610567565b005b61029e60048036038101906102999190611422565b61057b565b005b6102a861059b565b6040516102b5919061158b565b60405180910390f35b6102c66105c5565b6040516102d39190611371565b60405180910390f35b6102f660048036038101906102f19190611422565b610657565b604051610303919061147d565b60405180910390f35b61032660048036038101906103219190611422565b6106ce565b604051610333919061147d565b60405180910390f35b6103566004803603810190610351919061154f565b6106f1565b005b610372600480360381019061036d91906115a6565b61092d565b60405161037f91906112c6565b60405180910390f35b6103a2600480360381019061039d919061154f565b6109b4565b005b6103be60048036038101906103b9919061154f565b610a37565b6040516103ce94939291906115e6565b60405180910390f35b60075481565b6060600380546103ec9061165a565b80601f01602080910402602001604051908101604052809291908181526020018280546104189061165a565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b60008061047a610a93565b9050610487818585610a9b565b600191505092915050565b6000600254905090565b6000806104a7610a93565b90506104b4858285610c64565b6104bf858585610cf0565b60019150509392505050565b60006012905090565b6000806104df610a93565b90506105008185856104f1858961092d565b6104fb91906116ba565b610a9b565b600191505092915050565b61051c610516610a93565b82610f66565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61056f611133565b61057960006111b1565b565b61058d82610587610a93565b83610c64565b6105978282610f66565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105d49061165a565b80601f01602080910402602001604051908101604052809291908181526020018280546106009061165a565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600080610662610a93565b90506000610670828661092d565b9050838110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611760565b60405180910390fd5b6106c28286868403610a9b565b60019250505092915050565b6000806106d9610a93565b90506106e6818585610cf0565b600191505092915050565b6106f9611133565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006107598260010154836000015461127790919063ffffffff16565b11610799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610790906117cc565b60405180910390fd5b80600201544210156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d79061185e565b60405180910390fd5b60006107f982600301544261127790919063ffffffff16565b9050600061081260075483610a7d90919063ffffffff16565b905060008111610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906118f0565b60405180910390fd5b60006108838261087560038760000154610a7d90919063ffffffff16565b610a6790919063ffffffff16565b9050600382106108af576108a88460010154856000015461127790919063ffffffff16565b90506108c9565b6108c684600101548261127790919063ffffffff16565b90505b6108e081856001015461128d90919063ffffffff16565b846001018190555061091361090060075484610a6790919063ffffffff16565b856003015461128d90919063ffffffff16565b8460030181905550610926308683610cf0565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bc611133565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611982565b60405180910390fd5b610a34816111b1565b50565b60066020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b60008183610a7591906119a2565b905092915050565b60008183610a8b9190611a2b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611ace565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611b60565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5791906112c6565b60405180910390a3505050565b6000610c70848461092d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cea5781811015610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390611bcc565b60405180910390fd5b610ce98484848403610a9b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690611c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590611cf0565b60405180910390fd5b610dd98383836112a3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690611d82565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4d91906112c6565b60405180910390a3610f608484846112a8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc90611e14565b60405180910390fd5b610fe1826000836112a3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90611ea6565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111a91906112c6565b60405180910390a361112e836000846112a8565b505050565b61113b610a93565b73ffffffffffffffffffffffffffffffffffffffff1661115961059b565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611f12565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112859190611f32565b905092915050565b6000818361129b91906116ba565b905092915050565b505050565b505050565b6000819050919050565b6112c0816112ad565b82525050565b60006020820190506112db60008301846112b7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561131b578082015181840152602081019050611300565b60008484015250505050565b6000601f19601f8301169050919050565b6000611343826112e1565b61134d81856112ec565b935061135d8185602086016112fd565b61136681611327565b840191505092915050565b6000602082019050818103600083015261138b8184611338565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113c382611398565b9050919050565b6113d3816113b8565b81146113de57600080fd5b50565b6000813590506113f0816113ca565b92915050565b6113ff816112ad565b811461140a57600080fd5b50565b60008135905061141c816113f6565b92915050565b6000806040838503121561143957611438611393565b5b6000611447858286016113e1565b92505060206114588582860161140d565b9150509250929050565b60008115159050919050565b61147781611462565b82525050565b6000602082019050611492600083018461146e565b92915050565b6000806000606084860312156114b1576114b0611393565b5b60006114bf868287016113e1565b93505060206114d0868287016113e1565b92505060406114e18682870161140d565b9150509250925092565b600060ff82169050919050565b611501816114eb565b82525050565b600060208201905061151c60008301846114f8565b92915050565b60006020828403121561153857611537611393565b5b60006115468482850161140d565b91505092915050565b60006020828403121561156557611564611393565b5b6000611573848285016113e1565b91505092915050565b611585816113b8565b82525050565b60006020820190506115a0600083018461157c565b92915050565b600080604083850312156115bd576115bc611393565b5b60006115cb858286016113e1565b92505060206115dc858286016113e1565b9150509250929050565b60006080820190506115fb60008301876112b7565b61160860208301866112b7565b61161560408301856112b7565b61162260608301846112b7565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167257607f821691505b6020821081036116855761168461162b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116c5826112ad565b91506116d0836112ad565b92508282019050808211156116e8576116e761168b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061174a6025836112ec565b9150611755826116ee565b604082019050919050565b600060208201905081810360008301526117798161173d565b9050919050565b7f4c696674693a204e6f20746f6b656e7320746f2072656c656173650000000000600082015250565b60006117b6601b836112ec565b91506117c182611780565b602082019050919050565b600060208201905081810360008301526117e5816117a9565b9050919050565b7f4c696674693a2056657374696e6720686173206e6f742073746172746564207960008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b60006118486022836112ec565b9150611853826117ec565b604082019050919050565b600060208201905081810360008301526118778161183b565b9050919050565b7f4c696674693a20312079656172206c6f636b757020706572696f64206e6f742060008201527f7265616368656400000000000000000000000000000000000000000000000000602082015250565b60006118da6027836112ec565b91506118e58261187e565b604082019050919050565b60006020820190508181036000830152611909816118cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061196c6026836112ec565b915061197782611910565b604082019050919050565b6000602082019050818103600083015261199b8161195f565b9050919050565b60006119ad826112ad565b91506119b8836112ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119f1576119f061168b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a36826112ad565b9150611a41836112ad565b925082611a5157611a506119fc565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab86024836112ec565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4a6022836112ec565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb6601d836112ec565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c486025836112ec565b9150611c5382611bec565b604082019050919050565b60006020820190508181036000830152611c7781611c3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cda6023836112ec565b9150611ce582611c7e565b604082019050919050565b60006020820190508181036000830152611d0981611ccd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d6c6026836112ec565b9150611d7782611d10565b604082019050919050565b60006020820190508181036000830152611d9b81611d5f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfe6021836112ec565b9150611e0982611da2565b604082019050919050565b60006020820190508181036000830152611e2d81611df1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e906022836112ec565b9150611e9b82611e34565b604082019050919050565b60006020820190508181036000830152611ebf81611e83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611efc6020836112ec565b9150611f0782611ec6565b602082019050919050565b60006020820190508181036000830152611f2b81611eef565b9050919050565b6000611f3d826112ad565b9150611f48836112ad565b9250828203905081811115611f6057611f5f61168b565b5b9291505056fea2646970667358221220024c3c805b8c61836c25a63435554749769308d89fbbfb8773b8e4ba390df26664736f6c63430008100033

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

000000000000000000000000a87e66f2cf71a12116a9a2de8c7a28ae56174b570000000000000000000000006b34ee3024faf5811d3b6982a8007becca23ca6f0000000000000000000000007fcce64d84cf39760b27a39cf42a61209ae328b9000000000000000000000000328aee46da35efcd3dca48b92d80d054914969e800000000000000000000000024a0538900655849095bcb75934fc6426aedb0ee000000000000000000000000c23ce32b9f643f2023b5ea96c0eb1409713d8c7c

-----Decoded View---------------
Arg [0] : _teamAddress (address): 0xA87e66f2cF71A12116A9A2de8C7A28Ae56174b57
Arg [1] : _reserveFundAddress (address): 0x6b34ee3024faF5811d3b6982A8007BEcCa23Ca6F
Arg [2] : _communityAddress (address): 0x7fCce64D84cf39760B27A39Cf42a61209Ae328B9
Arg [3] : _liquidityPoolAddress (address): 0x328Aee46dA35eFCd3Dca48B92D80D054914969e8
Arg [4] : _stakingAddress (address): 0x24a0538900655849095BCB75934fC6426aeDb0Ee
Arg [5] : _partnershipAddress (address): 0xC23Ce32b9f643f2023b5EA96c0eb1409713D8C7c

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000a87e66f2cf71a12116a9a2de8c7a28ae56174b57
Arg [1] : 0000000000000000000000006b34ee3024faf5811d3b6982a8007becca23ca6f
Arg [2] : 0000000000000000000000007fcce64d84cf39760b27a39cf42a61209ae328b9
Arg [3] : 000000000000000000000000328aee46da35efcd3dca48b92d80d054914969e8
Arg [4] : 00000000000000000000000024a0538900655849095bcb75934fc6426aedb0ee
Arg [5] : 000000000000000000000000c23ce32b9f643f2023b5ea96c0eb1409713d8c7c


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.