ETH Price: $2,380.21 (+2.74%)

Token

Three (TRSs)
 

Overview

Max Total Supply

33,333,333 TRSs

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
335.68 TRSs

Value
$0.00
0xa1ae55d37a0f56f53cc6dd2edc36db9b51157ff3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Three

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : TRESs.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/// @title Three a Token provided by TheMetalorianDao
/// @notice Once locked values are set, they cannot be changed.
contract Three is ERC20Pausable, Ownable {

    /// @notice Used to lock an amount of tokens
    struct Lock {
        uint amount;
        uint unlockDate;
        bool withdrawn;
    }

    /// @notice Array with the locked tokens
    Lock[] public lockedTokens;

    /// @param owner Contract owner
    /// @param issueAmount Amount of tokens issued
    event IssueThree( address owner, uint issueAmount );

    /// @param _locksInfo Amounts of tokens that will be locked
    /// @param _amountInTGE Amount that will be available in the TGE
    constructor ( Lock[] memory _locksInfo, uint _amountInTGE ) ERC20( "Three", "TRSs"){

        // push the info in the lock array

        for (uint256 i = 0; i < _locksInfo.length; i++) {

            lockedTokens.push( _locksInfo[i] );
            
        }

        // mint the fixed supply

        _mint( address( this ) , 33_333_333 * 1e18 );

        // the amount available in the TGE are sent to the Contract owner

        _transfer( address( this ), msg.sender, _amountInTGE );
        
    }

    /// @notice Returns the total amount of tokens locked
    function getTokensLocked() public view returns( uint lockedAmount) {

        for (uint256 i = 0; i < lockedTokens.length; i++) {
                
            if( !lockedTokens[i].withdrawn ) lockedAmount += lockedTokens[i].amount;
            
        }

    }

    /// @notice Function to issue tokens check the lock amounts and dates to see availability 
    function issueThree() public onlyOwner {

        uint totalToIssue;

        for (uint256 i = 0; i < lockedTokens.length; i++) {

            if( block.timestamp >= lockedTokens[i].unlockDate ) {

                // tokens are only transferred if they have not been withdrawn
                
                if( !lockedTokens[i].withdrawn ) {

                    totalToIssue += lockedTokens[i].amount;

                    lockedTokens[i].withdrawn = true;

                }
                
            }
            
        }

        require( totalToIssue > 0, "Transfer Error: No tokens available" );

        _transfer( address( this ), owner(), totalToIssue );

        emit IssueThree( owner(), totalToIssue );

    }

    /// @notice Pause all type of transfers of the Token
    /// @dev see [ Pausable-_pause ] for more info
    function pauseTransfers() public onlyOwner returns ( bool isPaused ) {

        _pause();

        isPaused = paused();

    }

    /// @notice Unpause the transfers of the Token
    /// @dev see [ Pausable-_unpause ] for more info
    function unpauseTransfers() public onlyOwner returns ( bool isPaused ) {

        _unpause();

        isPaused = paused();
        
    }

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../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 {
    /**
     * @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);

    bool private _paused;

    /**
     * @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 {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 8 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract unpausable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

File 6 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 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockDate","type":"uint256"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"internalType":"struct Three.Lock[]","name":"_locksInfo","type":"tuple[]"},{"internalType":"uint256","name":"_amountInTGE","type":"uint256"}],"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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"issueAmount","type":"uint256"}],"name":"IssueThree","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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTokensLocked","outputs":[{"internalType":"uint256","name":"lockedAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"issueThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedTokens","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockDate","type":"uint256"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"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":"pauseTransfers","outputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"unpauseTransfers","outputs":[{"internalType":"bool","name":"isPaused","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002fa038038062002fa08339818101604052810190620000379190620009b1565b6040518060400160405280600581526020017f54687265650000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54525373000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000c58565b508060049081620000c6919062000c58565b5050506000600560006101000a81548160ff02191690831515021790555062000104620000f8620001df60201b60201c565b620001e760201b60201c565b60005b8251811015620001a657600683828151811062000129576200012862000d3f565b5b60200260200101519080600181540180825580915050600190039060005260206000209060030201600090919091909150600082015181600001556020820151816001015560408201518160020160006101000a81548160ff021916908315150217905550505080806200019d9062000d9d565b91505062000107565b50620001c4306a1b929b9a4d1cb514340000620002ad60201b60201c565b620001d73033836200041a60201b60201c565b505062001136565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200031f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003169062000e4b565b60405180910390fd5b6200033360008383620006ab60201b60201c565b806002600082825462000347919062000e6d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003fa919062000eb9565b60405180910390a362000416600083836200071b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200048c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004839062000f4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f59062000fe4565b60405180910390fd5b62000511838383620006ab60201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200059a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000591906200107c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200068a919062000eb9565b60405180910390a3620006a58484846200071b60201b60201c565b50505050565b620006c38383836200072060201b62000aad1760201c565b620006d36200072560201b60201c565b1562000716576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070d9062001114565b60405180910390fd5b505050565b505050565b505050565b6000600560009054906101000a900460ff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007a08262000755565b810181811067ffffffffffffffff82111715620007c257620007c162000766565b5b80604052505050565b6000620007d76200073c565b9050620007e5828262000795565b919050565b600067ffffffffffffffff82111562000808576200080762000766565b5b602082029050602081019050919050565b600080fd5b600080fd5b6000819050919050565b620008388162000823565b81146200084457600080fd5b50565b60008151905062000858816200082d565b92915050565b60008115159050919050565b62000875816200085e565b81146200088157600080fd5b50565b60008151905062000895816200086a565b92915050565b600060608284031215620008b457620008b36200081e565b5b620008c06060620007cb565b90506000620008d28482850162000847565b6000830152506020620008e88482850162000847565b6020830152506040620008fe8482850162000884565b60408301525092915050565b6000620009216200091b84620007ea565b620007cb565b9050808382526020820190506060840283018581111562000947576200094662000819565b5b835b818110156200097457806200095f88826200089b565b84526020840193505060608101905062000949565b5050509392505050565b600082601f83011262000996576200099562000750565b5b8151620009a88482602086016200090a565b91505092915050565b60008060408385031215620009cb57620009ca62000746565b5b600083015167ffffffffffffffff811115620009ec57620009eb6200074b565b5b620009fa858286016200097e565b925050602062000a0d8582860162000847565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a6a57607f821691505b60208210810362000a805762000a7f62000a22565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000aab565b62000af6868362000aab565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b3962000b3362000b2d8462000823565b62000b0e565b62000823565b9050919050565b6000819050919050565b62000b558362000b18565b62000b6d62000b648262000b40565b84845462000ab8565b825550505050565b600090565b62000b8462000b75565b62000b9181848462000b4a565b505050565b5b8181101562000bb95762000bad60008262000b7a565b60018101905062000b97565b5050565b601f82111562000c085762000bd28162000a86565b62000bdd8462000a9b565b8101602085101562000bed578190505b62000c0562000bfc8562000a9b565b83018262000b96565b50505b505050565b600082821c905092915050565b600062000c2d6000198460080262000c0d565b1980831691505092915050565b600062000c48838362000c1a565b9150826002028217905092915050565b62000c638262000a17565b67ffffffffffffffff81111562000c7f5762000c7e62000766565b5b62000c8b825462000a51565b62000c9882828562000bbd565b600060209050601f83116001811462000cd0576000841562000cbb578287015190505b62000cc7858262000c3a565b86555062000d37565b601f19841662000ce08662000a86565b60005b8281101562000d0a5784890151825560018201915060208501945060208101905062000ce3565b8683101562000d2a578489015162000d26601f89168262000c1a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000daa8262000823565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000ddf5762000dde62000d6e565b5b600182019050919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e33601f8362000dea565b915062000e408262000dfb565b602082019050919050565b6000602082019050818103600083015262000e668162000e24565b9050919050565b600062000e7a8262000823565b915062000e878362000823565b925082820190508082111562000ea25762000ea162000d6e565b5b92915050565b62000eb38162000823565b82525050565b600060208201905062000ed0600083018462000ea8565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000f3460258362000dea565b915062000f418262000ed6565b604082019050919050565b6000602082019050818103600083015262000f678162000f25565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000fcc60238362000dea565b915062000fd98262000f6e565b604082019050919050565b6000602082019050818103600083015262000fff8162000fbd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006200106460268362000dea565b9150620010718262001006565b604082019050919050565b60006020820190508181036000830152620010978162001055565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000620010fc602a8362000dea565b915062001109826200109e565b604082019050919050565b600060208201905081810360008301526200112f81620010ed565b9050919050565b611e5a80620011466000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610325578063dcec329414610355578063dd62ed3e14610387578063ef142ff0146103b7578063f2fde38b146103d55761012c565b8063715018a6146102915780638936a91f1461029b5780638da5cb5b146102b957806395d89b41146102d7578063a457c2d7146102f55761012c565b806339509351116100f457806339509351146101eb57806339d593571461021b57806347af9957146102255780635c975abb1461024357806370a08231146102615761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f1565b604051610146919061130f565b60405180910390f35b610169600480360381019061016491906113ca565b610483565b6040516101769190611425565b60405180910390f35b6101876104a6565b604051610194919061144f565b60405180910390f35b6101b760048036038101906101b2919061146a565b6104b0565b6040516101c49190611425565b60405180910390f35b6101d56104df565b6040516101e291906114d9565b60405180910390f35b610205600480360381019061020091906113ca565b6104e8565b6040516102129190611425565b60405180910390f35b61022361051f565b005b61022d6106be565b60405161023a9190611425565b60405180910390f35b61024b6106dd565b6040516102589190611425565b60405180910390f35b61027b600480360381019061027691906114f4565b6106f4565b604051610288919061144f565b60405180910390f35b61029961073c565b005b6102a3610750565b6040516102b09190611425565b60405180910390f35b6102c161076f565b6040516102ce9190611530565b60405180910390f35b6102df610799565b6040516102ec919061130f565b60405180910390f35b61030f600480360381019061030a91906113ca565b61082b565b60405161031c9190611425565b60405180910390f35b61033f600480360381019061033a91906113ca565b6108a2565b60405161034c9190611425565b60405180910390f35b61036f600480360381019061036a919061154b565b6108c5565b60405161037e93929190611578565b60405180910390f35b6103a1600480360381019061039c91906115af565b61090c565b6040516103ae919061144f565b60405180910390f35b6103bf610993565b6040516103cc919061144f565b60405180910390f35b6103ef60048036038101906103ea91906114f4565b610a2a565b005b6060600380546104009061161e565b80601f016020809104026020016040519081016040528092919081815260200182805461042c9061161e565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b5050505050905090565b60008061048e610ab2565b905061049b818585610aba565b600191505092915050565b6000600254905090565b6000806104bb610ab2565b90506104c8858285610c83565b6104d3858585610d0f565b60019150509392505050565b60006012905090565b6000806104f3610ab2565b9050610514818585610505858961090c565b61050f919061167e565b610aba565b600191505092915050565b610527610f85565b600080600090505b60068054905081101561062557600681815481106105505761054f6116b2565b5b9060005260206000209060030201600101544210610612576006818154811061057c5761057b6116b2565b5b906000526020600020906003020160020160009054906101000a900460ff1661061157600681815481106105b3576105b26116b2565b5b906000526020600020906003020160000154826105d0919061167e565b91506001600682815481106105e8576105e76116b2565b5b906000526020600020906003020160020160006101000a81548160ff0219169083151502179055505b5b808061061d906116e1565b91505061052f565b5060008111610669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106609061179b565b60405180910390fd5b61067b3061067561076f565b83610d0f565b7f6c0ff6be3c4b8b15a72be5b7fb42079c4ec697556217a13b88e0033475de431d6106a461076f565b826040516106b39291906117bb565b60405180910390a150565b60006106c8610f85565b6106d0611003565b6106d86106dd565b905090565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610744610f85565b61074e6000611066565b565b600061075a610f85565b61076261112c565b61076a6106dd565b905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a89061161e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d49061161e565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600080610836610ab2565b90506000610844828661090c565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611856565b60405180910390fd5b6108968286868403610aba565b60019250505092915050565b6000806108ad610ab2565b90506108ba818585610d0f565b600191505092915050565b600681815481106108d557600080fd5b90600052602060002090600302016000915090508060000154908060010154908060020160009054906101000a900460ff16905083565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600090505b600680549050811015610a2657600681815481106109bc576109bb6116b2565b5b906000526020600020906003020160020160009054906101000a900460ff16610a1357600681815481106109f3576109f26116b2565b5b90600052602060002090600302016000015482610a10919061167e565b91505b8080610a1e906116e1565b91505061099b565b5090565b610a32610f85565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a98906118e8565b60405180910390fd5b610aaa81611066565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061197a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611a0c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c76919061144f565b60405180910390a3505050565b6000610c8f848461090c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d095781811015610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290611a78565b60405180910390fd5b610d088484848403610aba565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490611b9c565b60405180910390fd5b610df883838361118f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590611c2e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6c919061144f565b60405180910390a3610f7f8484846111e7565b50505050565b610f8d610ab2565b73ffffffffffffffffffffffffffffffffffffffff16610fab61076f565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611c9a565b60405180910390fd5b565b61100b6111ec565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861104f610ab2565b60405161105c9190611530565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611134611236565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611178610ab2565b6040516111859190611530565b60405180910390a1565b61119a838383610aad565b6111a26106dd565b156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990611d2c565b60405180910390fd5b505050565b505050565b6111f46106dd565b15611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90611d98565b60405180910390fd5b565b61123e6106dd565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490611e04565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156112b957808201518184015260208101905061129e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e18261127f565b6112eb818561128a565b93506112fb81856020860161129b565b611304816112c5565b840191505092915050565b6000602082019050818103600083015261132981846112d6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136182611336565b9050919050565b61137181611356565b811461137c57600080fd5b50565b60008135905061138e81611368565b92915050565b6000819050919050565b6113a781611394565b81146113b257600080fd5b50565b6000813590506113c48161139e565b92915050565b600080604083850312156113e1576113e0611331565b5b60006113ef8582860161137f565b9250506020611400858286016113b5565b9150509250929050565b60008115159050919050565b61141f8161140a565b82525050565b600060208201905061143a6000830184611416565b92915050565b61144981611394565b82525050565b60006020820190506114646000830184611440565b92915050565b60008060006060848603121561148357611482611331565b5b60006114918682870161137f565b93505060206114a28682870161137f565b92505060406114b3868287016113b5565b9150509250925092565b600060ff82169050919050565b6114d3816114bd565b82525050565b60006020820190506114ee60008301846114ca565b92915050565b60006020828403121561150a57611509611331565b5b60006115188482850161137f565b91505092915050565b61152a81611356565b82525050565b60006020820190506115456000830184611521565b92915050565b60006020828403121561156157611560611331565b5b600061156f848285016113b5565b91505092915050565b600060608201905061158d6000830186611440565b61159a6020830185611440565b6115a76040830184611416565b949350505050565b600080604083850312156115c6576115c5611331565b5b60006115d48582860161137f565b92505060206115e58582860161137f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163657607f821691505b602082108103611649576116486115ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061168982611394565b915061169483611394565b92508282019050808211156116ac576116ab61164f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116ec82611394565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361171e5761171d61164f565b5b600182019050919050565b7f5472616e73666572204572726f723a204e6f20746f6b656e7320617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b600061178560238361128a565b915061179082611729565b604082019050919050565b600060208201905081810360008301526117b481611778565b9050919050565b60006040820190506117d06000830185611521565b6117dd6020830184611440565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184060258361128a565b915061184b826117e4565b604082019050919050565b6000602082019050818103600083015261186f81611833565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118d260268361128a565b91506118dd82611876565b604082019050919050565b60006020820190508181036000830152611901816118c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061196460248361128a565b915061196f82611908565b604082019050919050565b6000602082019050818103600083015261199381611957565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f660228361128a565b9150611a018261199a565b604082019050919050565b60006020820190508181036000830152611a25816119e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a62601d8361128a565b9150611a6d82611a2c565b602082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611af460258361128a565b9150611aff82611a98565b604082019050919050565b60006020820190508181036000830152611b2381611ae7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8660238361128a565b9150611b9182611b2a565b604082019050919050565b60006020820190508181036000830152611bb581611b79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1860268361128a565b9150611c2382611bbc565b604082019050919050565b60006020820190508181036000830152611c4781611c0b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c8460208361128a565b9150611c8f82611c4e565b602082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000611d16602a8361128a565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611d8260108361128a565b9150611d8d82611d4c565b602082019050919050565b60006020820190508181036000830152611db181611d75565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611dee60148361128a565b9150611df982611db8565b602082019050919050565b60006020820190508181036000830152611e1d81611de1565b905091905056fea2646970667358221220694ac13492156d7771d674c82aff49586b12e7ac2e713ae3b0c4a9253e49847a64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000c8baafda4fe85d8a40000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000665988d08403c4f40000000000000000000000000000000000000000000000000000000000006465595e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f4000000000000000000000000000000000000000000000000000000000000648ce65e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000acefc4f810e5b5b800000000000000000000000000000000000000000000000000000000000064b4735e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f400000000000000000000000000000000000000000000000000000000000064dc005e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f400000000000000000000000000000000000000000000000000000000000065038d5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f304f81fc703c448000000000000000000000000000000000000000000000000000000000000652b1a5e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc0000000000000000000000000000000000000000000000000000000000006552a75e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc000000000000000000000000000000000000000000000000000000000000657a345e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc00000000000000000000000000000000000000000000000000000000000065a1c15e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc00000000000000000000000000000000000000000000000000000000000065c94e5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000234afb61fdafd5e800000000000000000000000000000000000000000000000000000000000065f0db5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d79780000000000000000000000000000000000000000000000000000000000006618685e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d797800000000000000000000000000000000000000000000000000000000000067f3045e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d797800000000000000000000000000000000000000000000000000000000000069cda05e0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610325578063dcec329414610355578063dd62ed3e14610387578063ef142ff0146103b7578063f2fde38b146103d55761012c565b8063715018a6146102915780638936a91f1461029b5780638da5cb5b146102b957806395d89b41146102d7578063a457c2d7146102f55761012c565b806339509351116100f457806339509351146101eb57806339d593571461021b57806347af9957146102255780635c975abb1461024357806370a08231146102615761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f1565b604051610146919061130f565b60405180910390f35b610169600480360381019061016491906113ca565b610483565b6040516101769190611425565b60405180910390f35b6101876104a6565b604051610194919061144f565b60405180910390f35b6101b760048036038101906101b2919061146a565b6104b0565b6040516101c49190611425565b60405180910390f35b6101d56104df565b6040516101e291906114d9565b60405180910390f35b610205600480360381019061020091906113ca565b6104e8565b6040516102129190611425565b60405180910390f35b61022361051f565b005b61022d6106be565b60405161023a9190611425565b60405180910390f35b61024b6106dd565b6040516102589190611425565b60405180910390f35b61027b600480360381019061027691906114f4565b6106f4565b604051610288919061144f565b60405180910390f35b61029961073c565b005b6102a3610750565b6040516102b09190611425565b60405180910390f35b6102c161076f565b6040516102ce9190611530565b60405180910390f35b6102df610799565b6040516102ec919061130f565b60405180910390f35b61030f600480360381019061030a91906113ca565b61082b565b60405161031c9190611425565b60405180910390f35b61033f600480360381019061033a91906113ca565b6108a2565b60405161034c9190611425565b60405180910390f35b61036f600480360381019061036a919061154b565b6108c5565b60405161037e93929190611578565b60405180910390f35b6103a1600480360381019061039c91906115af565b61090c565b6040516103ae919061144f565b60405180910390f35b6103bf610993565b6040516103cc919061144f565b60405180910390f35b6103ef60048036038101906103ea91906114f4565b610a2a565b005b6060600380546104009061161e565b80601f016020809104026020016040519081016040528092919081815260200182805461042c9061161e565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b5050505050905090565b60008061048e610ab2565b905061049b818585610aba565b600191505092915050565b6000600254905090565b6000806104bb610ab2565b90506104c8858285610c83565b6104d3858585610d0f565b60019150509392505050565b60006012905090565b6000806104f3610ab2565b9050610514818585610505858961090c565b61050f919061167e565b610aba565b600191505092915050565b610527610f85565b600080600090505b60068054905081101561062557600681815481106105505761054f6116b2565b5b9060005260206000209060030201600101544210610612576006818154811061057c5761057b6116b2565b5b906000526020600020906003020160020160009054906101000a900460ff1661061157600681815481106105b3576105b26116b2565b5b906000526020600020906003020160000154826105d0919061167e565b91506001600682815481106105e8576105e76116b2565b5b906000526020600020906003020160020160006101000a81548160ff0219169083151502179055505b5b808061061d906116e1565b91505061052f565b5060008111610669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106609061179b565b60405180910390fd5b61067b3061067561076f565b83610d0f565b7f6c0ff6be3c4b8b15a72be5b7fb42079c4ec697556217a13b88e0033475de431d6106a461076f565b826040516106b39291906117bb565b60405180910390a150565b60006106c8610f85565b6106d0611003565b6106d86106dd565b905090565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610744610f85565b61074e6000611066565b565b600061075a610f85565b61076261112c565b61076a6106dd565b905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a89061161e565b80601f01602080910402602001604051908101604052809291908181526020018280546107d49061161e565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600080610836610ab2565b90506000610844828661090c565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611856565b60405180910390fd5b6108968286868403610aba565b60019250505092915050565b6000806108ad610ab2565b90506108ba818585610d0f565b600191505092915050565b600681815481106108d557600080fd5b90600052602060002090600302016000915090508060000154908060010154908060020160009054906101000a900460ff16905083565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600090505b600680549050811015610a2657600681815481106109bc576109bb6116b2565b5b906000526020600020906003020160020160009054906101000a900460ff16610a1357600681815481106109f3576109f26116b2565b5b90600052602060002090600302016000015482610a10919061167e565b91505b8080610a1e906116e1565b91505061099b565b5090565b610a32610f85565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a98906118e8565b60405180910390fd5b610aaa81611066565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b209061197a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611a0c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c76919061144f565b60405180910390a3505050565b6000610c8f848461090c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d095781811015610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290611a78565b60405180910390fd5b610d088484848403610aba565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490611b9c565b60405180910390fd5b610df883838361118f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590611c2e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6c919061144f565b60405180910390a3610f7f8484846111e7565b50505050565b610f8d610ab2565b73ffffffffffffffffffffffffffffffffffffffff16610fab61076f565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611c9a565b60405180910390fd5b565b61100b6111ec565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861104f610ab2565b60405161105c9190611530565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611134611236565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611178610ab2565b6040516111859190611530565b60405180910390a1565b61119a838383610aad565b6111a26106dd565b156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990611d2c565b60405180910390fd5b505050565b505050565b6111f46106dd565b15611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90611d98565b60405180910390fd5b565b61123e6106dd565b61127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490611e04565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156112b957808201518184015260208101905061129e565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e18261127f565b6112eb818561128a565b93506112fb81856020860161129b565b611304816112c5565b840191505092915050565b6000602082019050818103600083015261132981846112d6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136182611336565b9050919050565b61137181611356565b811461137c57600080fd5b50565b60008135905061138e81611368565b92915050565b6000819050919050565b6113a781611394565b81146113b257600080fd5b50565b6000813590506113c48161139e565b92915050565b600080604083850312156113e1576113e0611331565b5b60006113ef8582860161137f565b9250506020611400858286016113b5565b9150509250929050565b60008115159050919050565b61141f8161140a565b82525050565b600060208201905061143a6000830184611416565b92915050565b61144981611394565b82525050565b60006020820190506114646000830184611440565b92915050565b60008060006060848603121561148357611482611331565b5b60006114918682870161137f565b93505060206114a28682870161137f565b92505060406114b3868287016113b5565b9150509250925092565b600060ff82169050919050565b6114d3816114bd565b82525050565b60006020820190506114ee60008301846114ca565b92915050565b60006020828403121561150a57611509611331565b5b60006115188482850161137f565b91505092915050565b61152a81611356565b82525050565b60006020820190506115456000830184611521565b92915050565b60006020828403121561156157611560611331565b5b600061156f848285016113b5565b91505092915050565b600060608201905061158d6000830186611440565b61159a6020830185611440565b6115a76040830184611416565b949350505050565b600080604083850312156115c6576115c5611331565b5b60006115d48582860161137f565b92505060206115e58582860161137f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163657607f821691505b602082108103611649576116486115ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061168982611394565b915061169483611394565b92508282019050808211156116ac576116ab61164f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116ec82611394565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361171e5761171d61164f565b5b600182019050919050565b7f5472616e73666572204572726f723a204e6f20746f6b656e7320617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b600061178560238361128a565b915061179082611729565b604082019050919050565b600060208201905081810360008301526117b481611778565b9050919050565b60006040820190506117d06000830185611521565b6117dd6020830184611440565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184060258361128a565b915061184b826117e4565b604082019050919050565b6000602082019050818103600083015261186f81611833565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118d260268361128a565b91506118dd82611876565b604082019050919050565b60006020820190508181036000830152611901816118c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061196460248361128a565b915061196f82611908565b604082019050919050565b6000602082019050818103600083015261199381611957565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f660228361128a565b9150611a018261199a565b604082019050919050565b60006020820190508181036000830152611a25816119e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a62601d8361128a565b9150611a6d82611a2c565b602082019050919050565b60006020820190508181036000830152611a9181611a55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611af460258361128a565b9150611aff82611a98565b604082019050919050565b60006020820190508181036000830152611b2381611ae7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8660238361128a565b9150611b9182611b2a565b604082019050919050565b60006020820190508181036000830152611bb581611b79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c1860268361128a565b9150611c2382611bbc565b604082019050919050565b60006020820190508181036000830152611c4781611c0b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c8460208361128a565b9150611c8f82611c4e565b602082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000611d16602a8361128a565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611d8260108361128a565b9150611d8d82611d4c565b602082019050919050565b60006020820190508181036000830152611db181611d75565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611dee60148361128a565b9150611df982611db8565b602082019050919050565b60006020820190508181036000830152611e1d81611de1565b905091905056fea2646970667358221220694ac13492156d7771d674c82aff49586b12e7ac2e713ae3b0c4a9253e49847a64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000c8baafda4fe85d8a40000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000665988d08403c4f40000000000000000000000000000000000000000000000000000000000006465595e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f4000000000000000000000000000000000000000000000000000000000000648ce65e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000acefc4f810e5b5b800000000000000000000000000000000000000000000000000000000000064b4735e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f400000000000000000000000000000000000000000000000000000000000064dc005e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000665988d08403c4f400000000000000000000000000000000000000000000000000000000000065038d5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f304f81fc703c448000000000000000000000000000000000000000000000000000000000000652b1a5e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc0000000000000000000000000000000000000000000000000000000000006552a75e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc000000000000000000000000000000000000000000000000000000000000657a345e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc00000000000000000000000000000000000000000000000000000000000065a1c15e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089a4843281b39adc00000000000000000000000000000000000000000000000000000000000065c94e5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000234afb61fdafd5e800000000000000000000000000000000000000000000000000000000000065f0db5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d79780000000000000000000000000000000000000000000000000000000000006618685e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d797800000000000000000000000000000000000000000000000000000000000067f3045e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d692e560bb3d797800000000000000000000000000000000000000000000000000000000000069cda05e0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _locksInfo (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : _amountInTGE (uint256): 15166673000000000000000000

-----Encoded View---------------
45 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000c8baafda4fe85d8a40000
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 00000000000000000000000000000000000000000000665988d08403c4f40000
Arg [4] : 000000000000000000000000000000000000000000000000000000006465595e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000665988d08403c4f40000
Arg [7] : 00000000000000000000000000000000000000000000000000000000648ce65e
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000acefc4f810e5b5b80000
Arg [10] : 0000000000000000000000000000000000000000000000000000000064b4735e
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 00000000000000000000000000000000000000000000665988d08403c4f40000
Arg [13] : 0000000000000000000000000000000000000000000000000000000064dc005e
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 00000000000000000000000000000000000000000000665988d08403c4f40000
Arg [16] : 0000000000000000000000000000000000000000000000000000000065038d5e
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 00000000000000000000000000000000000000000004f304f81fc703c4480000
Arg [19] : 00000000000000000000000000000000000000000000000000000000652b1a5e
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000089a4843281b39adc0000
Arg [22] : 000000000000000000000000000000000000000000000000000000006552a75e
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000089a4843281b39adc0000
Arg [25] : 00000000000000000000000000000000000000000000000000000000657a345e
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [27] : 0000000000000000000000000000000000000000000089a4843281b39adc0000
Arg [28] : 0000000000000000000000000000000000000000000000000000000065a1c15e
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [30] : 0000000000000000000000000000000000000000000089a4843281b39adc0000
Arg [31] : 0000000000000000000000000000000000000000000000000000000065c94e5e
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [33] : 00000000000000000000000000000000000000000000234afb61fdafd5e80000
Arg [34] : 0000000000000000000000000000000000000000000000000000000065f0db5e
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [36] : 00000000000000000000000000000000000000000001d692e560bb3d79780000
Arg [37] : 000000000000000000000000000000000000000000000000000000006618685e
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [39] : 00000000000000000000000000000000000000000001d692e560bb3d79780000
Arg [40] : 0000000000000000000000000000000000000000000000000000000067f3045e
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [42] : 00000000000000000000000000000000000000000001d692e560bb3d79780000
Arg [43] : 0000000000000000000000000000000000000000000000000000000069cda05e
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000000


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.