ETH Price: $2,021.39 (-1.39%)
Gas: 0.2 Gwei

Token

Studyum Token (STUD)
 

Overview

Max Total Supply

1,000,000,000 STUD

Holders

2 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

STUDYUM is a three-dimensional knowledge matrix for students and educators.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STUDToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 8: STUDToken.sol
pragma solidity ^0.5.17;

import "./ERC20Detailed.sol";
import "./BurnableToken.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract STUDToken is ERC20Detailed, BurnableToken {
    using SafeMath for uint256;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     * @param _initialTotalSupply Total supply of STUD Token.
     * @param _owner Owner of the STUD Token.
     */
    constructor (uint256 _initialTotalSupply, address payable _owner) public {
        _name = "Studyum Token";
        _symbol = "STUD";
        _decimals = 18;
        _totalSupply = _initialTotalSupply;
        _balances[_owner] = _totalSupply;
        transferOwnership(_owner);
        emit Transfer(address(0), _owner, _totalSupply);
    }

    /**
     * @dev Used for bulk transfering. It can be used by anyone. Useful for airdrop.
     * @param beneficiaries Array of addresses to receive tokens.
     * @param amounts Array of token amounts addresses should receive.
     */
    function bulkTransfer(address[] calldata beneficiaries, uint256[] calldata amounts) external {
        require(beneficiaries.length > 0, "Beneficiaries shouldn't be empty.");
        require(beneficiaries.length == amounts.length, "Array lengths should be equal.");
        uint256 amountSum = 0;
        for (uint256 i=0; i<beneficiaries.length; i++) {
            require(beneficiaries[i] != address(0), "Beneficiary is address zero.");
            require(amounts[i]>0, "Amount is zero.");
            amountSum += amounts[i];
        }
        require(amountSum <= balanceOf(msg.sender), "Sender amount too low.");
        for (uint256 i=0; i<beneficiaries.length; i++) {
            transfer(beneficiaries[i], amounts[i]);
        }
        emit BulkTransfer(msg.sender, amountSum, beneficiaries.length);
    }

    
    /**
     * @dev Revertible fallback to prevent Ether deposits.
     */
    function () external payable {
        revert("Revert the ETH.");
    }

    /**
     * @dev Claim mistakenly sent tokens to the contract.
     * @param _tokenAddress Address of the token to be extracted.
     */
    function claimTokens(address _tokenAddress) public onlyOwner {
        if (_tokenAddress == address(0)) {
            owner().transfer(address(this).balance);
            return;
        }

        IERC20 token = IERC20(_tokenAddress);
        uint balance = token.balanceOf(address(this));
        token.transfer(owner(), balance);
        emit ClaimedTokens(_tokenAddress, owner(), balance);
    }

    /**
     * @dev Emitted when the mistakenly sent tokens are claimed.
     */
    event ClaimedTokens(address _token, address _owner, uint256 _amount);
    /**
     * @dev Emitted when the bulk transfer is executed.
     */    
    event BulkTransfer(address _sender, uint256 _totalAmount, uint256 _beneficiaryCount);

}

File 1 of 8: BurnableToken.sol
pragma solidity ^0.5.17;

import "./ERC20.sol";
import "./Ownable.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).
 */
contract BurnableToken is ERC20, Ownable {
    bool private _paused = false;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public onlyOwner whenNotPaused {
        _burn(msg.sender, amount);
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyOwner whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyOwner whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
    /**
     * @dev Called when trasfering tokens.
     */
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    /**
     * @dev Trasfers tokens from one adress to another
     */
    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    /**
     * @dev Increaces allowance of a spender.
     */
    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    /**
     * @dev Decreases allowance of a spender.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

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

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

}

File 2 of 8: ERC20.sol
pragma solidity ^0.5.17;

import "./IERC20.sol";
import "./SafeMath.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 {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, 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};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        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);
    }
}

File 3 of 8: ERC20Detailed.sol
pragma solidity ^0.5.17;

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed {
    string internal _name;
    string internal _symbol;
    uint8 internal _decimals;

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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.
     *
     * 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 returns (uint8) {
        return _decimals;
    }
}

File 4 of 8: IERC20.sol
pragma solidity ^0.5.17;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 5 of 8: Ownable.sol
pragma solidity ^0.5.17;

/**
 * @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.
 *
 * 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.
 */
contract Ownable {
    
    address payable private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }


    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address payable newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address payable newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 8: SafeMath.sol
pragma solidity ^0.5.17;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 7 of 8: STUDTeamVesting.sol
pragma solidity ^0.5.17;

import "./IERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";

/**
 * @title TokenVesting
 * @dev A token holder contract that can release its token balance gradually like a
 * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
 * owner.
 */
contract STUDTeamVesting is Ownable {
    using SafeMath for uint256;

    address private _beneficiary;
    uint256 private _ieoEndTime; 
    uint256 private _totalAmount;
    uint256 private _withdrawnAmount = 0;
    uint256[] private _months = [0, 6, 12, 18, 21, 24, 27, 30, 33, 36];
    uint256[] private _percentages = [100, 100, 100, 100, 100, 100, 100, 100, 100, 100];
    IERC20 private _token;
    uint256 private constant _daysInMonth = 30 days;

    /**
     * @dev Prevents other adresses except beneficiary.
     */
    modifier onlyBeneficiary {
        require(msg.sender == _beneficiary, "Sender has to be already set as a beneficiary");
        _;
    }

    /**
     * @dev Get the benficiary address.
     * @return the beneficiary of the tokens.
     */
    function beneficiary() public view returns (address) {
        return _beneficiary;
    }

    /**
     * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
     * beneficiary, gradually in a linear fashion until start + duration. By then all
     * of the balance will have vested.
     * @param beneficiaryAddress Address of the beneficiary to whom vested tokens are transferred.
     * @param token Address of the token which will be vested.
     * @param ieoEndTime IEO end time in UNIX.
     * @param totalAmount Total amount of tokens stored in contract.
     */
    constructor (address token, address payable owner, address payable beneficiaryAddress, uint256 ieoEndTime, uint256 totalAmount) public {
        require(token != address(0), "Token is the zero address.");
        require(owner != address(0), "Owner is the zero address.");
        require(beneficiaryAddress != address(0), "Beneficiary is the zero address.");
        require(ieoEndTime > block.timestamp, "IEO end time should be bigger than current timestamp.");
        require(totalAmount > 0, "Total Amount should be bigger than 0.");

        _token = IERC20(token);
        _beneficiary = beneficiaryAddress;
        _ieoEndTime = ieoEndTime;
        _totalAmount = totalAmount;
        transferOwnership(owner);
    }

    /**
     * @dev Current amount of tokens possible to withdraw from contract.
     */
     function withdrawable() public view returns (uint256) {
        uint256 percentageSum = 0;
        for (uint256 i = 0; i<_months.length; i++) {
    	    uint256 tempTime = _ieoEndTime + _months[i] * _daysInMonth;
    	    if (block.timestamp > tempTime) {
    		    percentageSum += _percentages[i];
    	    }
        }
        return _totalAmount * percentageSum / 1000.0 - _withdrawnAmount;
    }

    /**
     * @dev Withdraws the tokens from contract to beneficiary address.
     */
    function withdraw() public onlyBeneficiary  {
        uint256 withdrawableAmount = withdrawable();
        _withdrawnAmount += withdrawableAmount;
        require (withdrawableAmount > 0, "Withdrawable amount must be greater than zero.");
        _token.transfer(_beneficiary, withdrawableAmount);
        emit TokensWithdrawed(_beneficiary, withdrawableAmount);
    }

    /**
     * @dev Returns the timestamps of each payout. Beacause a month can have different number
     * of days, months are represented as 30 day period in contract.
     */
    function getTimestamps() public view returns (uint256[] memory) {
    	uint256[] memory timestamps = new uint256[](_months.length);
    	for (uint256 i = 0; i<_months.length; i++) {
    		uint256 timestamp = _ieoEndTime + _months[i] * _daysInMonth;
    		timestamps[i] = timestamp;
        }
    	return timestamps;
    }

    /**
     * @dev Returns the IEO end time in UNIX timestamp
     */
    function getIeoEndTime() public view returns (uint256) {
        return _ieoEndTime;
    }

    /**
     * @dev Returns the total amount of tokens which was set during contract deployment.
     */
    function getTotalAmount() public view returns (uint256) {
        return _totalAmount;
    }

    /**
     * @dev Returns currently withdrawn amount from contract.
     */
    function getWithDrawnAmount() public view returns (uint256) {
        return _withdrawnAmount;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * @param _newBeneficiary New beneficiary address
     */
    function changeBeneficiary(address payable _newBeneficiary) public onlyOwner {
        require(_newBeneficiary != address(0), "Ownable: new owner is the zero address");
        emit BeneficiaryChanged(_beneficiary, _newBeneficiary);
        _beneficiary = _newBeneficiary;
    }

    /**
     * @dev Revertible fallback to prevent Ether deposits.
     */
    function () external payable {
        revert("Revert the ETH.");
    }

    /**
     * @dev Claim mistakenly sent tokens to the contract.
     * @param _tokenAddress Address of the token to be extracted.
     */
    function claimTokens(address _tokenAddress) public onlyOwner {
        if (_tokenAddress == address(0)) {
            owner().transfer(address(this).balance);
            return;
        }

        IERC20 token = IERC20(_tokenAddress);
        uint balance = token.balanceOf(address(this));
        token.transfer(owner(), balance);
        emit ClaimedTokens(_tokenAddress, owner(), balance);
    }

    /**
     * @dev Emitted when the tokens are withdrawn from contract.
     */
    event TokensWithdrawed(address beneficiary, uint256 amount);
    /**
     * @dev Emitted when the mistakenly sent tokens are claimed.
     */
    event ClaimedTokens(address _token, address _owner, uint256 _amount);
    /**
     * @dev Emitted when a new beneficiary has been set.
     */
    event BeneficiaryChanged(address _beneficiary, address _newBeneficiary);


}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_initialTotalSupply","type":"uint256"},{"internalType":"address payable","name":"_owner","type":"address"}],"payable":false,"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":"_sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_beneficiaryCount","type":"uint256"}],"name":"BulkTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ClaimedTokens","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"beneficiaries","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162002d4138038062002d41833981810160405260408110156200005257600080fd5b81019080805190602001909291908051906020019092919050505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36040518060400160405280600d81526020017f5374756479756d20546f6b656e000000000000000000000000000000000000008152506000908051906020019062000156929190620004c6565b506040518060400160405280600481526020017f535455440000000000000000000000000000000000000000000000000000000081525060019080519060200190620001a4929190620004c6565b506012600260006101000a81548160ff021916908360ff16021790555081600581905550600554600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200021f816200028f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040518082815260200191505060405180910390a3505062000575565b6200029f6200032660201b60201c565b62000312576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b62000323816200037e60201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000406576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018062002d1b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200050957805160ff19168380011785556200053a565b828001600101855582156200053a579182015b82811115620005395782518255916020019190600101906200051c565b5b5090506200054991906200054d565b5090565b6200057291905b808211156200056e57600081600090555060010162000554565b5090565b90565b61279680620005856000396000f3fe60806040526004361061011f5760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146106e0578063a9059cbb14610753578063dd62ed3e146107c6578063df8de3e71461084b578063f2fde38b1461089c5761011f565b806370a082311461054e5780638456cb59146105b35780638da5cb5b146105ca5780638f32d59b1461062157806395d89b41146106505761011f565b8063313ce567116100e7578063313ce56714610429578063395093511461045a5780633f4ba83a146104cd57806342966c68146104e45780635c975abb1461051f5761011f565b806306fdde031461018d578063095ea7b31461021d578063153a1f3e1461029057806318160ddd1461036b57806323b872dd14610396575b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f52657665727420746865204554482e000000000000000000000000000000000081525060200191505060405180910390fd5b34801561019957600080fd5b506101a26108ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e25780820151818401526020810190506101c7565b50505050905090810190601f16801561020f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022957600080fd5b506102766004803603604081101561024057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061098f565b604051808215151515815260200191505060405180910390f35b34801561029c57600080fd5b50610369600480360360408110156102b357600080fd5b81019080803590602001906401000000008111156102d057600080fd5b8201836020820111156102e257600080fd5b8035906020019184602083028401116401000000008311171561030457600080fd5b90919293919293908035906020019064010000000081111561032557600080fd5b82018360208201111561033757600080fd5b8035906020019184602083028401116401000000008311171561035957600080fd5b9091929391929390505050610a26565b005b34801561037757600080fd5b50610380610dea565b6040518082815260200191505060405180910390f35b3480156103a257600080fd5b5061040f600480360360608110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df4565b604051808215151515815260200191505060405180910390f35b34801561043557600080fd5b5061043e610e8d565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046657600080fd5b506104b36004803603604081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ea4565b604051808215151515815260200191505060405180910390f35b3480156104d957600080fd5b506104e2610f3b565b005b3480156104f057600080fd5b5061051d6004803603602081101561050757600080fd5b81019080803590602001909291905050506110b7565b005b34801561052b57600080fd5b506105346111c1565b604051808215151515815260200191505060405180910390f35b34801561055a57600080fd5b5061059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d8565b6040518082815260200191505060405180910390f35b3480156105bf57600080fd5b506105c8611221565b005b3480156105d657600080fd5b506105df61139e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062d57600080fd5b506106366113c8565b604051808215151515815260200191505060405180910390f35b34801561065c57600080fd5b50610665611420565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106a557808201518184015260208101905061068a565b50505050905090810190601f1680156106d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106ec57600080fd5b506107396004803603604081101561070357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b604051808215151515815260200191505060405180910390f35b34801561075f57600080fd5b506107ac6004803603604081101561077657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611559565b604051808215151515815260200191505060405180910390f35b3480156107d257600080fd5b50610835600480360360408110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f0565b6040518082815260200191505060405180910390f35b34801561085757600080fd5b5061089a6004803603602081101561086e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611677565b005b3480156108a857600080fd5b506108eb600480360360208110156108bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b0565b005b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b6000600660149054906101000a900460ff1615610a14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610a1e8383611a36565b905092915050565b60008484905011610a82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061261c6021913960400191505060405180910390fd5b818190508484905014610afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4172726179206c656e677468732073686f756c6420626520657175616c2e000081525060200191505060405180910390fd5b600080905060008090505b85859050811015610c8a57600073ffffffffffffffffffffffffffffffffffffffff16868683818110610b3757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f42656e65666963696172792069732061646472657373207a65726f2e0000000081525060200191505060405180910390fd5b6000848483818110610bec57fe5b9050602002013511610c66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f416d6f756e74206973207a65726f2e000000000000000000000000000000000081525060200191505060405180910390fd5b838382818110610c7257fe5b90506020020135820191508080600101915050610b08565b50610c94336111d8565b811115610d09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e64657220616d6f756e7420746f6f206c6f772e0000000000000000000081525060200191505060405180910390fd5b60008090505b85859050811015610d6c57610d5e868683818110610d2957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16858584818110610d5257fe5b90506020020135611559565b508080600101915050610d0f565b507fda0ea7dc6081f48fde4813039347dfa02348fa095aa9e7c152e07ef4e474e2f6338287879050604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050505050565b6000600554905090565b6000600660149054906101000a900460ff1615610e79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e84848484611a4d565b90509392505050565b6000600260009054906101000a900460ff16905090565b6000600660149054906101000a900460ff1615610f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610f338383611b18565b905092915050565b610f436113c8565b610fb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff16611037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6110bf6113c8565b611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff16156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111be3382611bbd565b50565b6000600660149054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112296113c8565b61129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff161561131e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905090565b6000600660149054906101000a900460ff1615611547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115518383611d77565b905092915050565b6000600660149054906101000a900460ff16156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115e88383611e36565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61167f6113c8565b6116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117795761172e61139e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611773573d6000803e3d6000fd5b506119ad565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156117fd57600080fd5b505afa158015611811573d6000803e3d6000fd5b505050506040513d602081101561182757600080fd5b810190808051906020019092919050505090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61185e61139e565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156118c857600080fd5b505af11580156118dc573d6000803e3d6000fd5b505050506040513d60208110156118f257600080fd5b8101908080519060200190929190505050507ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8361192e61139e565b83604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a150505b50565b6119b86113c8565b611a2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611a3381611e4d565b50565b6000611a43338484611f93565b6001905092915050565b6000611a5a84848461218a565b611b0d8433611b08856040518060600160405280602881526020016126ab60289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b611f93565b600190509392505050565b6000611bb33384611bae85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250490919063ffffffff16565b611f93565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126d36021913960400191505060405180910390fd5b611caf816040518060600160405280602281526020016125fa60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d078160055461258c90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611e2c3384611e278560405180606001604052806025815260200161273d60259139600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b611f93565b6001905092915050565b6000611e4333848461218a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061263d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127196024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126636022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612210576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126f46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125d76023913960400191505060405180910390fd5b6123028160405180606001604052806026815260200161268560269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061239781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124b657808201518184015260208101905061249b565b50505050905090810190601f1680156124e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006125ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612444565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636542656e656669636961726965732073686f756c646e277420626520656d7074792e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158209369d699dcf761850f2f312f5f2731d8759e089ec942c930c53b74c1a0d24be764736f6c634300051100324f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000d25490d2c8704f4a7f561af543f18f2f91bd1b02

Deployed Bytecode

0x60806040526004361061011f5760003560e01c806370a08231116100a0578063a457c2d711610064578063a457c2d7146106e0578063a9059cbb14610753578063dd62ed3e146107c6578063df8de3e71461084b578063f2fde38b1461089c5761011f565b806370a082311461054e5780638456cb59146105b35780638da5cb5b146105ca5780638f32d59b1461062157806395d89b41146106505761011f565b8063313ce567116100e7578063313ce56714610429578063395093511461045a5780633f4ba83a146104cd57806342966c68146104e45780635c975abb1461051f5761011f565b806306fdde031461018d578063095ea7b31461021d578063153a1f3e1461029057806318160ddd1461036b57806323b872dd14610396575b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f52657665727420746865204554482e000000000000000000000000000000000081525060200191505060405180910390fd5b34801561019957600080fd5b506101a26108ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e25780820151818401526020810190506101c7565b50505050905090810190601f16801561020f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022957600080fd5b506102766004803603604081101561024057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061098f565b604051808215151515815260200191505060405180910390f35b34801561029c57600080fd5b50610369600480360360408110156102b357600080fd5b81019080803590602001906401000000008111156102d057600080fd5b8201836020820111156102e257600080fd5b8035906020019184602083028401116401000000008311171561030457600080fd5b90919293919293908035906020019064010000000081111561032557600080fd5b82018360208201111561033757600080fd5b8035906020019184602083028401116401000000008311171561035957600080fd5b9091929391929390505050610a26565b005b34801561037757600080fd5b50610380610dea565b6040518082815260200191505060405180910390f35b3480156103a257600080fd5b5061040f600480360360608110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df4565b604051808215151515815260200191505060405180910390f35b34801561043557600080fd5b5061043e610e8d565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046657600080fd5b506104b36004803603604081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ea4565b604051808215151515815260200191505060405180910390f35b3480156104d957600080fd5b506104e2610f3b565b005b3480156104f057600080fd5b5061051d6004803603602081101561050757600080fd5b81019080803590602001909291905050506110b7565b005b34801561052b57600080fd5b506105346111c1565b604051808215151515815260200191505060405180910390f35b34801561055a57600080fd5b5061059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111d8565b6040518082815260200191505060405180910390f35b3480156105bf57600080fd5b506105c8611221565b005b3480156105d657600080fd5b506105df61139e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062d57600080fd5b506106366113c8565b604051808215151515815260200191505060405180910390f35b34801561065c57600080fd5b50610665611420565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106a557808201518184015260208101905061068a565b50505050905090810190601f1680156106d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106ec57600080fd5b506107396004803603604081101561070357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114c2565b604051808215151515815260200191505060405180910390f35b34801561075f57600080fd5b506107ac6004803603604081101561077657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611559565b604051808215151515815260200191505060405180910390f35b3480156107d257600080fd5b50610835600480360360408110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115f0565b6040518082815260200191505060405180910390f35b34801561085757600080fd5b5061089a6004803603602081101561086e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611677565b005b3480156108a857600080fd5b506108eb600480360360208110156108bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119b0565b005b606060008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b6000600660149054906101000a900460ff1615610a14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610a1e8383611a36565b905092915050565b60008484905011610a82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061261c6021913960400191505060405180910390fd5b818190508484905014610afd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4172726179206c656e677468732073686f756c6420626520657175616c2e000081525060200191505060405180910390fd5b600080905060008090505b85859050811015610c8a57600073ffffffffffffffffffffffffffffffffffffffff16868683818110610b3757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f42656e65666963696172792069732061646472657373207a65726f2e0000000081525060200191505060405180910390fd5b6000848483818110610bec57fe5b9050602002013511610c66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f416d6f756e74206973207a65726f2e000000000000000000000000000000000081525060200191505060405180910390fd5b838382818110610c7257fe5b90506020020135820191508080600101915050610b08565b50610c94336111d8565b811115610d09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53656e64657220616d6f756e7420746f6f206c6f772e0000000000000000000081525060200191505060405180910390fd5b60008090505b85859050811015610d6c57610d5e868683818110610d2957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16858584818110610d5257fe5b90506020020135611559565b508080600101915050610d0f565b507fda0ea7dc6081f48fde4813039347dfa02348fa095aa9e7c152e07ef4e474e2f6338287879050604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a15050505050565b6000600554905090565b6000600660149054906101000a900460ff1615610e79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e84848484611a4d565b90509392505050565b6000600260009054906101000a900460ff16905090565b6000600660149054906101000a900460ff1615610f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610f338383611b18565b905092915050565b610f436113c8565b610fb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff16611037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6110bf6113c8565b611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff16156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111be3382611bbd565b50565b6000600660149054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112296113c8565b61129b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660149054906101000a900460ff161561131e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114b85780601f1061148d576101008083540402835291602001916114b8565b820191906000526020600020905b81548152906001019060200180831161149b57829003601f168201915b5050505050905090565b6000600660149054906101000a900460ff1615611547576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115518383611d77565b905092915050565b6000600660149054906101000a900460ff16156115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115e88383611e36565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61167f6113c8565b6116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117795761172e61139e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611773573d6000803e3d6000fd5b506119ad565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156117fd57600080fd5b505afa158015611811573d6000803e3d6000fd5b505050506040513d602081101561182757600080fd5b810190808051906020019092919050505090508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61185e61139e565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156118c857600080fd5b505af11580156118dc573d6000803e3d6000fd5b505050506040513d60208110156118f257600080fd5b8101908080519060200190929190505050507ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8361192e61139e565b83604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a150505b50565b6119b86113c8565b611a2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611a3381611e4d565b50565b6000611a43338484611f93565b6001905092915050565b6000611a5a84848461218a565b611b0d8433611b08856040518060600160405280602881526020016126ab60289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b611f93565b600190509392505050565b6000611bb33384611bae85600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250490919063ffffffff16565b611f93565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126d36021913960400191505060405180910390fd5b611caf816040518060600160405280602281526020016125fa60229139600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d078160055461258c90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611e2c3384611e278560405180606001604052806025815260200161273d60259139600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b611f93565b6001905092915050565b6000611e4333848461218a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061263d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806127196024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126636022913960400191505060405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612210576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126f46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125d76023913960400191505060405180910390fd5b6123028160405180606001604052806026815260200161268560269139600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124449092919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061239781600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461250490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124b657808201518184015260208101905061249b565b50505050905090810190601f1680156124e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006125ce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612444565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636542656e656669636961726965732073686f756c646e277420626520656d7074792e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158209369d699dcf761850f2f312f5f2731d8759e089ec942c930c53b74c1a0d24be764736f6c63430005110032

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000d25490d2c8704f4a7f561af543f18f2f91bd1b02

-----Decoded View---------------
Arg [0] : _initialTotalSupply (uint256): 1000000000000000000000000000
Arg [1] : _owner (address): 0xD25490D2c8704F4A7f561af543f18F2F91bD1B02

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 000000000000000000000000d25490d2c8704f4a7f561af543f18f2f91bd1b02


Deployed Bytecode Sourcemap

155:2883:6:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2108:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274:83:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;274:83:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;274:83:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2134:140:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2134:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2134:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1147:829:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1147:829:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1147:829:6;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1147:829:6;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1147:829:6;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1147:829:6;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1147:829:6;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1147:829:6;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;1147:829:6;;;;;;;;;;;;:::i;:::-;;1554:91:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1554:91:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1879:160:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1879:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1879:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1126:83:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1126:83:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2347:170:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2347:170:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2347:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1480:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1480:117:0;;;:::i;:::-;;485:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;485:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;485:105:0;;;;;;;;;;;;;;;;;:::i;:::-;;690:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;690:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1708:110:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1708:110:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1708:110:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1270:115:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1270:115:0;;;:::i;:::-;;861:87:4;;8:9:-1;5:2;;;30:1;27;20:12;5:2;861:87:4;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1235:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1235:92:4;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;476:87:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;476:87:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;476:87:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2590:180:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2590:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2590:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1665:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1665:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1665:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2250:134:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2250:134:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2250:134:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2293:409:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2293:409:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2293:409:6;;;;;;;;;;;;;;;;;;;:::i;:::-;;1484:117:4;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1484:117:4;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1484:117:4;;;;;;;;;;;;;;;;;;;:::i;:::-;;274:83:2;311:13;344:5;337:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;274:83;:::o;2134:140:0:-;2213:4;927:7;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2237:29;2251:7;2260:5;2237:13;:29::i;:::-;2230:36;;2134:140;;;;:::o;1147:829:6:-;1282:1;1259:13;;:20;;:24;1251:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1364:7;;:14;;1340:13;;:20;;:38;1332:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1424:17;1444:1;1424:21;;1461:9;1471:1;1461:11;;1456:238;1476:13;;:20;;1474:1;:22;1456:238;;;1554:1;1526:30;;:13;;1540:1;1526:16;;;;;;;;;;;;;;;:30;;;;1518:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1623:1;1612:7;;1620:1;1612:10;;;;;;;;;;;;;:12;1604:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:7;;1680:1;1672:10;;;;;;;;;;;;;1659:23;;;;1498:3;;;;;;;1456:238;;;;1725:21;1735:10;1725:9;:21::i;:::-;1712:9;:34;;1704:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1789:9;1799:1;1789:11;;1784:112;1804:13;;:20;;1802:1;:22;1784:112;;;1846:38;1855:13;;1869:1;1855:16;;;;;;;;;;;;;;;1873:7;;1881:1;1873:10;;;;;;;;;;;;;1846:8;:38::i;:::-;;1826:3;;;;;;;1784:112;;;;1911:57;1924:10;1936:9;1947:13;;:20;;1911:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147:829;;;;;:::o;1554:91:1:-;1598:7;1625:12;;1618:19;;1554:91;:::o;1879:160:0:-;1972:4;927:7;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1996:35;2015:4;2021:2;2025:5;1996:18;:35::i;:::-;1989:42;;1879:160;;;;;:::o;1126:83:2:-;1167:5;1192:9;;;;;;;;;;;1185:16;;1126:83;:::o;2347:170:0:-;2441:4;927:7;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465:44;2489:7;2498:10;2465:23;:44::i;:::-;2458:51;;2347:170;;;;:::o;1480:117::-;1081:9:4;:7;:9::i;:::-;1073:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126:7:0;;;;;;;;;;;1118:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1548:5;1538:7;;:15;;;;;;;;;;;;;;;;;;1569:20;1578:10;1569:20;;;;;;;;;;;;;;;;;;;;;;1480:117::o;485:105::-;1081:9:4;:7;:9::i;:::-;1073:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927:7:0;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;557:25;563:10;575:6;557:5;:25::i;:::-;485:105;:::o;690:78::-;729:4;753:7;;;;;;;;;;;746:14;;690:78;:::o;1708:110:1:-;1765:7;1792:9;:18;1802:7;1792:18;;;;;;;;;;;;;;;;1785:25;;1708:110;;;:::o;1270:115:0:-;1081:9:4;:7;:9::i;:::-;1073:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;927:7:0;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1339:4;1329:7;;:14;;;;;;;;;;;;;;;;;;1359:18;1366:10;1359:18;;;;;;;;;;;;;;;;;;;;;;1270:115::o;861:87:4:-;899:15;934:6;;;;;;;;;;;927:13;;861:87;:::o;1235:92::-;1275:4;1313:6;;;;;;;;;;;1299:20;;:10;:20;;;1292:27;;1235:92;:::o;476:87:2:-;515:13;548:7;541:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;476:87;:::o;2590:180:0:-;2689:4;927:7;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2713:49;2737:7;2746:15;2713:23;:49::i;:::-;2706:56;;2590:180;;;;:::o;1665:132::-;1740:4;927:7;;;;;;;;;;;926:8;918:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1764:25;1779:2;1783:5;1764:14;:25::i;:::-;1757:32;;1665:132;;;;:::o;2250:134:1:-;2322:7;2349:11;:18;2361:5;2349:18;;;;;;;;;;;;;;;:27;2368:7;2349:27;;;;;;;;;;;;;;;;2342:34;;2250:134;;;;:::o;2293:409:6:-;1081:9:4;:7;:9::i;:::-;1073:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2394:1:6;2369:27;;:13;:27;;;2365:120;;;2413:7;:5;:7::i;:::-;:16;;:39;2430:21;2413:39;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2413:39:6;2467:7;;2365:120;2497:12;2519:13;2497:36;;2544:12;2559:5;:15;;;2583:4;2559:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2559:30:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2559:30:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2559:30:6;;;;;;;;;;;;;;;;2544:45;;2600:5;:14;;;2615:7;:5;:7::i;:::-;2624;2600:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2600:32:6;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2600:32:6;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2600:32:6;;;;;;;;;;;;;;;;;2648:46;2662:13;2677:7;:5;:7::i;:::-;2686;2648:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1138:1:4;;;2293:409:6;:::o;1484:117:4:-;1081:9;:7;:9::i;:::-;1073:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1565:28;1584:8;1565:18;:28::i;:::-;1484:117;:::o;2531:150:1:-;2597:4;2614:37;2623:10;2635:7;2644:6;2614:8;:37::i;:::-;2669:4;2662:11;;2531:150;;;;:::o;3153:300::-;3242:4;3259:36;3269:6;3277:9;3288:6;3259:9;:36::i;:::-;3306:117;3315:6;3323:10;3335:87;3371:6;3335:87;;;;;;;;;;;;;;;;;:11;:19;3347:6;3335:19;;;;;;;;;;;;;;;:31;3355:10;3335:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;3306:8;:117::i;:::-;3441:4;3434:11;;3153:300;;;;;:::o;3862:206::-;3942:4;3959:79;3968:10;3980:7;3989:48;4026:10;3989:11;:23;4001:10;3989:23;;;;;;;;;;;;;;;:32;4013:7;3989:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;3959:8;:79::i;:::-;4056:4;4049:11;;3862:206;;;;:::o;6121:348::-;6216:1;6197:21;;:7;:21;;;;6189:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6290:68;6313:6;6290:68;;;;;;;;;;;;;;;;;:9;:18;6300:7;6290:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;6269:9;:18;6279:7;6269:18;;;;;;;;;;;;;;;:89;;;;6384:24;6401:6;6384:12;;:16;;:24;;;;:::i;:::-;6369:12;:39;;;;6450:1;6424:37;;6433:7;6424:37;;;6454:6;6424:37;;;;;;;;;;;;;;;;;;6121:348;;:::o;4571:257::-;4656:4;4673:125;4682:10;4694:7;4703:94;4740:15;4703:94;;;;;;;;;;;;;;;;;:11;:23;4715:10;4703:23;;;;;;;;;;;;;;;:32;4727:7;4703:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;4673:8;:125::i;:::-;4816:4;4809:11;;4571:257;;;;:::o;2031:156::-;2100:4;2117:40;2127:10;2139:9;2150:6;2117:9;:40::i;:::-;2175:4;2168:11;;2031:156;;;;:::o;1707:237:4:-;1809:1;1789:22;;:8;:22;;;;1781:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1899:8;1870:38;;1891:6;;;;;;;;;;;1870:38;;;;;;;;;;;;1928:8;1919:6;;:17;;;;;;;;;;;;;;;;;;1707:237;:::o;6909:338:1:-;7020:1;7003:19;;:5;:19;;;;6995:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7101:1;7082:21;;:7;:21;;;;7074:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7185:6;7155:11;:18;7167:5;7155:18;;;;;;;;;;;;;;;:27;7174:7;7155:27;;;;;;;;;;;;;;;:36;;;;7223:7;7207:32;;7216:5;7207:32;;;7232:6;7207:32;;;;;;;;;;;;;;;;;;6909:338;;;:::o;5318:471::-;5434:1;5416:20;;:6;:20;;;;5408:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5518:1;5497:23;;:9;:23;;;;5489:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5593;5615:6;5593:71;;;;;;;;;;;;;;;;;:9;:17;5603:6;5593:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;5573:9;:17;5583:6;5573:17;;;;;;;;;;;;;;;:91;;;;5698:32;5723:6;5698:9;:20;5708:9;5698:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;5675:9;:20;5685:9;5675:20;;;;;;;;;;;;;;;:55;;;;5763:9;5746:35;;5755:6;5746:35;;;5774:6;5746:35;;;;;;;;;;;;;;;;;;5318:471;;;:::o;1789:192:7:-;1875:7;1908:1;1903;:6;;1911:12;1895:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1895:29:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1935:9;1951:1;1947;:5;1935:17;;1972:1;1965:8;;;1789:192;;;;;:::o;860:181::-;918:7;938:9;954:1;950;:5;938:17;;979:1;974;:6;;966:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1032:1;1025:8;;;860:181;;;;:::o;1316:136::-;1374:7;1401:43;1405:1;1408;1401:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1394:50;;1316:136;;;;:::o

Swarm Source

bzzr://9369d699dcf761850f2f312f5f2731d8759e089ec942c930c53b74c1a0d24be7
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.