ETH Price: $3,278.98 (-5.64%)

Token

ITO Utility Token (IUT)
 

Overview

Max Total Supply

92,877,603 IUT

Holders

1,538 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
26,619 IUT

Value
$0.00
0xec948d9eef6f1dac95b590048d0ed8d99e5fdda6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

[IUT] allows the ITO Protocol to offer zero-risk participation when crowdfunding initiatives in comparison to other forms of high-risk crowdfunding/investment such as IEOs or ICOs, which often leave participants with illiquid of unlisted tokens for a sometimes indefinite period of time.

ITO Information

1. Acceptus ITO

ITO Address : https://acceptus.ito.directory/
ITO Start Date : Jan 1, 2019
ITO End Date : Mar 13, 2019
ITO Price : $0.0111
Public Sale Allocation : 11359000 IUT
Public Sale Vesting Period : 71 days
ITO Launchpad : ITO Protocol v0.9 Technology
Country : Global
Raised : $78010 
Token Distribution Date : Mar 11, 2019


2. Profectus ITO

 

ITO Address : https://profectus.ito.directory/
ITO Start Date : Apr 26, 2019
ITO End Date : Jun 16, 2019
ITO Price : $0.024
Public Sale Allocation : 13129200  IUT
Public Sale Vesting Period : 51 days
ITO Launchpad : ITO Protocol v1.8 Technology 
Country : Global
Raised : $87900 
Token Distribution Date : May 26, 2019


3. Optimus ITO

 

ITO Address : https://optimus.ito.directory/
ITO Start Date : Jan 16, 2020
ITO End Date : Mar 5, 2020
ITO Price : $0.0082
Public Sale Allocation : 11206432 IUT
Public Sale Vesting Period : 49 days
ITO Launchpad : ITO Protocol v2.7 Technology
Country : Global
Raised : $21333.39 
Token Distribution Date : Mar 5, 2020


4. SuperAUD ITO

 

ITO Address : https://superaud.ito.directory/
ITO Start Date : Apr 12, 2020
ITO End Date : Jul 12, 2020
ITO Price : $0.00813
Public Sale Allocation : 44169020 IUT
Public Sale Vesting Period : 91 days
ITO Launchpad : ITO Protocol v2.7 Technology
Country : Global
Raised : $111715.12 
Token Distribution Date : Jul 12, 2020

 

Private Sale Information

Private Sale Token Price : $0.01
Private Sale Allocation : 15210000 IUT
Private Sale Vesting Period : 288 days

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ITOUtilityToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-30
*/

pragma solidity ^0.5.0;

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

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

/**
 * @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 Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _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(_msgSender(), 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(_msgSender(), 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, _msgSender(), _allowances[sender][_msgSender()].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(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][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 Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

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

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = 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;
    }
}

/**
 * @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 is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        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 _msgSender() == _owner;
    }

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

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

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

/**
 * @title ERC20Upgradable
 * @dev ERC20 token whose balances can be initialized to those of a prior version of the token.
 */
contract ERC20Upgradable is ERC20, Ownable {
    using SafeMath for uint256;

    /**
     * @dev Emitted when all balances have been initialized.
     */
    event BalancesInitialized();
    
    /**
     * @dev Keeps track of whether all balances have been initialized.
     */
    bool public _balancesInitialized = false;

    /**
     * @dev Initializes balances on token launch.
     * @param accounts The addresses to mint to.
     * @param amounts The amounts to be minted.
     */
    function initBalances(address[] calldata accounts, uint32[] calldata amounts) external onlyOwner returns (bool) {
        require(!_balancesInitialized, "Balance initialization already complete.");
        require(accounts.length > 0 && accounts.length == amounts.length, "Mismatch between number of accounts and amounts.");
        for (uint256 i = 0; i < accounts.length; i++) _mint(accounts[i], uint256(amounts[i]));
        return true;
    }

    /**
     * @dev Marks balance initialization as complete.
     */
    function completeInitialization() external onlyOwner returns (bool) {
        require(!_balancesInitialized, "Balance initialization already complete.");
        _balancesInitialized = true;
        emit BalancesInitialized();
        return true;
    }
}

/**
 * @title ERC20SwappableInput
 * @dev ERC20 token that can be converted to another ERC20 token.
 */
contract ERC20SwappableInput is ERC20, Ownable {
    using SafeMath for uint256;

    /**
     * @dev Emitted when funds have been burned and queued for swapping to another token.
     */
    event SwapInput(address indexed outputToken, address indexed payee, uint256 inputAmount, uint256 outputAmount);

    /**
     * @dev Swaps funds to another token.
     * @param outputToken The output ERC20SwappableOutput token contract address.
     * @param payee The address to which the output funds will be sent.
     * @param inputAmount The amount of input tokens to be burned.
     */
    function swap(address outputToken, address payee, uint256 inputAmount) external returns (bool) {
        require(_outputSwapTokens[outputToken] != 0, "Output token is not a registered output swap token.");
        require(inputAmount > 0, "No funds inputted to swap.");
        require(inputAmount <= this.balanceOf(payee), "Input amount cannot be greater than input token balance.");
        require(_outputSwapTokens[outputToken] < 0 || inputAmount <= uint256(_outputSwapTokens[outputToken]), "Input amount is greater than the limit for this output token.");
        ERC20SwappableOutput outputContract = ERC20SwappableOutput(outputToken);
        uint256 outputTotalSupply = outputContract.totalSupply();
        require(outputTotalSupply > 0, "Cannot reference zero total supply of output tokens when calculating output token amount.");
        uint256 outputAmount = inputAmount.mul(outputTotalSupply).div(this.totalSupply());
        _burn(msg.sender, inputAmount);
        require(outputContract.finishSwap(msg.sender, inputAmount, outputAmount), "Failed to finish swap with output token.");
        emit SwapInput(msg.sender, payee, inputAmount, outputAmount);
        return true;
    }

    mapping(address => int256) private _outputSwapTokens;

    /**
     * @dev Registers an output swap token.
     * @param token The address of the token.
     */
    function addOutputSwapToken(address token, uint256 limit) external onlyOwner returns (bool) {
        _outputSwapTokens[token] = limit > 0 ? int256(limit) : -1;
        return true;
    }

    /**
     * @dev Unregisters an output swap token.
     * @param token The address of the token.
     */
    function removeOutputSwapToken(address token) external onlyOwner returns (bool) {
        _outputSwapTokens[token] = 0;
        return true;
    }
}

/**
 * @title ERC20SwappableOutput
 * @dev ERC20 token that can be converted from another ERC20 token.
 */
contract ERC20SwappableOutput is ERC20, Ownable {
    using SafeMath for uint256;

    /**
     * @dev Emitted when funds have been successfully swapped from another token.
     */
    event SwapOutput(address indexed inputToken, address indexed payee, uint256 inputAmount, uint256 outputAmount);

    /**
     * @dev Transfer previously locked funds to a payee at or after the minimum unlock time.
     * @param payee The address whose previously locked funds will be unlocked and transferred to.
     * @param inputAmount The amount of input tokens to be burned.
     * @param outputAmount The amount of output tokens to be minted.
     */
    function finishSwap(address payee, uint256 inputAmount, uint256 outputAmount) external onlyInputSwapToken returns (bool) {
        _mint(payee, outputAmount);
        emit SwapOutput(msg.sender, payee, inputAmount, outputAmount);
        return true;
    }

    mapping(address => bool) private _inputSwapTokens;

    /**
     * @dev Registers an input swap token.
     * @param token The address of the token.
     */
    function addInputSwapToken(address token) external onlyOwner returns (bool) {
        _inputSwapTokens[token] = true;
        return true;
    }

    /**
     * @dev Unregisters an input swap token.
     * @param token The address of the token.
     */
    function removeInputSwapToken(address token) external onlyOwner returns (bool) {
        _inputSwapTokens[token] = false;
        return true;
    }

    /**
     * @dev Throws if called by any account other than a registered input swap token.
     */
    modifier onlyInputSwapToken() {
        require(isInputSwapToken(), "ERC20SwappableOutput: caller is not a registered input swap token");
        _;
    }

    /**
     * @dev Returns true if the caller is a registered input swap token.
     */
    function isInputSwapToken() public view returns (bool) {
        return _inputSwapTokens[msg.sender];
    }
}

/**
 * @title ITOUtilityToken
 * @dev Version 1 of the ERC20 token contract for ITO Utility Token.
 */
contract ITOUtilityToken is ERC20, ERC20Detailed, ERC20Upgradable, ERC20SwappableInput, ERC20SwappableOutput {
    using SafeMath for uint256;

    /**
     * @dev After the token is constructed, we will copy all token balances from version 1 of the MVG Network Token at block 9,960,000.
     */
    constructor () public ERC20Detailed("ITO Utility Token", "IUT", 0) { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"BalancesInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"outputToken","type":"address"},{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"}],"name":"SwapInput","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"inputToken","type":"address"},{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"}],"name":"SwapOutput","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"},{"constant":true,"inputs":[],"name":"_balancesInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"addInputSwapToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"addOutputSwapToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":"amount","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":[],"name":"completeInitialization","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payee","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"}],"name":"finishSwap","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":false,"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint32[]","name":"amounts","type":"uint32[]"}],"name":"initBalances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isInputSwapToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"removeInputSwapToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"removeOutputSwapToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"address","name":"payee","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"}],"name":"swap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526000600560156101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601181526020017f49544f205574696c69747920546f6b656e0000000000000000000000000000008152506040518060400160405280600381526020017f495554000000000000000000000000000000000000000000000000000000000081525060008260039080519060200190620000b3929190620001aa565b508160049080519060200190620000cc929190620001aa565b5080600560006101000a81548160ff021916908360ff1602179055505050506000620000fd620001a260201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000259565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ed57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021d57825182559160200191906001019062000200565b5b5090506200022d919062000231565b5090565b6200025691905b808211156200025257600081600090555060010162000238565b5090565b90565b612f4080620002696000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063b83ca54a11610097578063dd62ed3e11610071578063dd62ed3e146107fc578063df791e5014610874578063f2fde38b146108fa578063fba974111461093e57610173565b8063b83ca54a146106ca578063cfd8ec0c14610726578063d6b845681461078c57610173565b806395d89b41146104db5780639e06a9581461055e578063a19ffa7214610580578063a457c2d7146105dc578063a9059cbb14610642578063b3ae8891146106a857610173565b80635827b250116101305780635827b2501461038f57806370a08231146103b1578063715018a6146104095780638428c287146104135780638da5cb5b1461046f5780638f32d59b146104b957610173565b806306fdde0314610178578063095ea7b3146101fb57806318160ddd1461026157806323b872dd1461027f578063313ce567146103055780633950935114610329575b600080fd5b610180610a24565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b604051808215151515815260200191505060405180910390f35b610269610ae4565b6040518082815260200191505060405180910390f35b6102eb6004803603606081101561029557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610aee565b604051808215151515815260200191505060405180910390f35b61030d610bc7565b604051808260ff1660ff16815260200191505060405180910390f35b6103756004803603604081101561033f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bde565b604051808215151515815260200191505060405180910390f35b610397610c91565b604051808215151515815260200191505060405180910390f35b6103f3600480360360208110156103c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc1565b6040518082815260200191505060405180910390f35b610411610e09565b005b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f44565b604051808215151515815260200191505060405180910390f35b610477611021565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c161104b565b604051808215151515815260200191505060405180910390f35b6104e36110aa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610523578082015181840152602081019050610508565b50505050905090810190601f1680156105505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61056661114c565b604051808215151515815260200191505060405180910390f35b6105c26004803603602081101561059657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111a0565b604051808215151515815260200191505060405180910390f35b610628600480360360408110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061127d565b604051808215151515815260200191505060405180910390f35b61068e6004803603604081101561065857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134a565b604051808215151515815260200191505060405180910390f35b6106b0611368565b604051808215151515815260200191505060405180910390f35b61070c600480360360208110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061137b565b604051808215151515815260200191505060405180910390f35b6107726004803603604081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611445565b604051808215151515815260200191505060405180910390f35b6107e2600480360360608110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061153e565b604051808215151515815260200191505060405180910390f35b61085e6004803603604081101561081257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061161f565b6040518082815260200191505060405180910390f35b6108e06004803603606081101561088a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116a6565b604051808215151515815260200191505060405180910390f35b61093c6004803603602081101561091057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd8565b005b610a0a6004803603604081101561095457600080fd5b810190808035906020019064010000000081111561097157600080fd5b82018360208201111561098357600080fd5b803590602001918460208302840111640100000000831117156109a557600080fd5b9091929391929390803590602001906401000000008111156109c657600080fd5b8201836020820111156109d857600080fd5b803590602001918460208302840111640100000000831117156109fa57600080fd5b9091929391929390505050611d5e565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ada610ad3611f28565b8484611f30565b6001905092915050565b6000600254905090565b6000610afb848484612127565b610bbc84610b07611f28565b610bb785604051806060016040528060288152602001612dea60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b6d611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b611f30565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610c87610beb611f28565b84610c828560016000610bfc611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b611f30565b6001905092915050565b6000610c9b61104b565b610d0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560159054906101000a900460ff1615610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612d236028913960400191505060405180910390fd5b6001600560156101000a81548160ff0219169083151502179055507fd1de808de758a28c133ee5737f2df4161549182e64a1053860925fb82b6ee53e60405160405180910390a16001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1161104b565b610e83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610f4e61104b565b610fc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661108e611f28565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b5050505050905090565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b60006111aa61104b565b61121c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600061134061128a611f28565b8461133b85604051806060016040528060258152602001612ee760259139600160006112b4611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b611f30565b6001905092915050565b600061135e611357611f28565b8484612127565b6001905092915050565b600560159054906101000a900460ff1681565b600061138561104b565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019050919050565b600061144f61104b565b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600082116114ef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114f1565b815b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b600061154861114c565b61159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180612da96041913960600191505060405180910390fd5b6115a78483612525565b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbbae7eb111de428a8901aab34bd8b38b61bfee1d8414d3623e6dbae9dc0fa28b8585604051808381526020018281526020019250505060405180910390a3600190509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180612e126033913960400191505060405180910390fd5b600082116117b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4e6f2066756e647320696e70757474656420746f20737761702e00000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561183357600080fd5b505afa158015611847573d6000803e3d6000fd5b505050506040513d602081101561185d57600080fd5b81019080805190602001909291905050508211156118c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180612eaf6038913960400191505060405180910390fd5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205412806119535750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b6119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180612d4b603d913960400191505060405180910390fd5b600084905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119f557600080fd5b505afa158015611a09573d6000803e3d6000fd5b505050506040513d6020811015611a1f57600080fd5b8101908080519060200190929190505050905060008111611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612be26059913960600191505060405180910390fd5b6000611b323073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611ad657600080fd5b505afa158015611aea573d6000803e3d6000fd5b505050506040513d6020811015611b0057600080fd5b8101908080519060200190929190505050611b2484886126e090919063ffffffff16565b61276690919063ffffffff16565b9050611b3e33866127b0565b8273ffffffffffffffffffffffffffffffffffffffff1663d6b845683387846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050602060405180830381600087803b158015611bcd57600080fd5b505af1158015611be1573d6000803e3d6000fd5b505050506040513d6020811015611bf757600080fd5b8101908080519060200190929190505050611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612cfb6028913960400191505060405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbabb8c2585e878329bab9491a7c9e81c5601ec1347faaa8bdd00811acf3cb6938784604051808381526020018281526020019250505060405180910390a3600193505050509392505050565b611ce061104b565b611d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611d5b81612968565b50565b6000611d6861104b565b611dda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560159054906101000a900460ff1615611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612d236028913960400191505060405180910390fd5b600085859050118015611e5857508282905085859050145b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612ca56030913960400191505060405180910390fd5b60008090505b85859050811015611f1b57611f0e868683818110611ecd57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16858584818110611ef657fe5b9050602002013563ffffffff1663ffffffff16612525565b8080600101915050611eb3565b5060019050949350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612c836022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612233576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612bbf6023913960400191505060405180910390fd5b61229e81604051806060016040528060268152602001612cd5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612331816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061248a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561244f578082015181840152602081019050612434565b50505050905090810190601f16801561247c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6125dd8160025461249d90919063ffffffff16565b600281905550612634816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808314156126f35760009050612760565b600082840290508284828161270457fe5b041461275b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612d886021913960400191505060405180910390fd5b809150505b92915050565b60006127a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612aae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612836576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e456021913960400191505060405180910390fd5b6128a181604051806060016040528060228152602001612c3b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128f881600254612b7490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612c5d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612b5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b1f578082015181840152602081019050612b04565b50505050905090810190601f168015612b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b6657fe5b049050809150509392505050565b6000612bb683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123dd565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737343616e6e6f74207265666572656e6365207a65726f20746f74616c20737570706c79206f66206f757470757420746f6b656e73207768656e2063616c63756c6174696e67206f757470757420746f6b656e20616d6f756e742e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d69736d61746368206265747765656e206e756d626572206f66206163636f756e747320616e6420616d6f756e74732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654661696c656420746f2066696e69736820737761702077697468206f757470757420746f6b656e2e42616c616e636520696e697469616c697a6174696f6e20616c726561647920636f6d706c6574652e496e70757420616d6f756e742069732067726561746572207468616e20746865206c696d697420666f722074686973206f757470757420746f6b656e2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433230537761707061626c654f75747075743a2063616c6c6572206973206e6f742061207265676973746572656420696e707574207377617020746f6b656e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f757470757420746f6b656e206973206e6f7420612072656769737465726564206f7574707574207377617020746f6b656e2e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373496e70757420616d6f756e742063616e6e6f742062652067726561746572207468616e20696e70757420746f6b656e2062616c616e63652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820a294ecb7e5fd6861bae3714b5d731b7faf9c274d65e35168f6a377a93920baaf64736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063b83ca54a11610097578063dd62ed3e11610071578063dd62ed3e146107fc578063df791e5014610874578063f2fde38b146108fa578063fba974111461093e57610173565b8063b83ca54a146106ca578063cfd8ec0c14610726578063d6b845681461078c57610173565b806395d89b41146104db5780639e06a9581461055e578063a19ffa7214610580578063a457c2d7146105dc578063a9059cbb14610642578063b3ae8891146106a857610173565b80635827b250116101305780635827b2501461038f57806370a08231146103b1578063715018a6146104095780638428c287146104135780638da5cb5b1461046f5780638f32d59b146104b957610173565b806306fdde0314610178578063095ea7b3146101fb57806318160ddd1461026157806323b872dd1461027f578063313ce567146103055780633950935114610329575b600080fd5b610180610a24565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101c05780820151818401526020810190506101a5565b50505050905090810190601f1680156101ed5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102476004803603604081101561021157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ac6565b604051808215151515815260200191505060405180910390f35b610269610ae4565b6040518082815260200191505060405180910390f35b6102eb6004803603606081101561029557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610aee565b604051808215151515815260200191505060405180910390f35b61030d610bc7565b604051808260ff1660ff16815260200191505060405180910390f35b6103756004803603604081101561033f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bde565b604051808215151515815260200191505060405180910390f35b610397610c91565b604051808215151515815260200191505060405180910390f35b6103f3600480360360208110156103c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc1565b6040518082815260200191505060405180910390f35b610411610e09565b005b6104556004803603602081101561042957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f44565b604051808215151515815260200191505060405180910390f35b610477611021565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104c161104b565b604051808215151515815260200191505060405180910390f35b6104e36110aa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610523578082015181840152602081019050610508565b50505050905090810190601f1680156105505780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61056661114c565b604051808215151515815260200191505060405180910390f35b6105c26004803603602081101561059657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111a0565b604051808215151515815260200191505060405180910390f35b610628600480360360408110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061127d565b604051808215151515815260200191505060405180910390f35b61068e6004803603604081101561065857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061134a565b604051808215151515815260200191505060405180910390f35b6106b0611368565b604051808215151515815260200191505060405180910390f35b61070c600480360360208110156106e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061137b565b604051808215151515815260200191505060405180910390f35b6107726004803603604081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611445565b604051808215151515815260200191505060405180910390f35b6107e2600480360360608110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061153e565b604051808215151515815260200191505060405180910390f35b61085e6004803603604081101561081257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061161f565b6040518082815260200191505060405180910390f35b6108e06004803603606081101561088a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116a6565b604051808215151515815260200191505060405180910390f35b61093c6004803603602081101561091057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd8565b005b610a0a6004803603604081101561095457600080fd5b810190808035906020019064010000000081111561097157600080fd5b82018360208201111561098357600080fd5b803590602001918460208302840111640100000000831117156109a557600080fd5b9091929391929390803590602001906401000000008111156109c657600080fd5b8201836020820111156109d857600080fd5b803590602001918460208302840111640100000000831117156109fa57600080fd5b9091929391929390505050611d5e565b604051808215151515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610ada610ad3611f28565b8484611f30565b6001905092915050565b6000600254905090565b6000610afb848484612127565b610bbc84610b07611f28565b610bb785604051806060016040528060288152602001612dea60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b6d611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b611f30565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610c87610beb611f28565b84610c828560016000610bfc611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b611f30565b6001905092915050565b6000610c9b61104b565b610d0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560159054906101000a900460ff1615610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612d236028913960400191505060405180910390fd5b6001600560156101000a81548160ff0219169083151502179055507fd1de808de758a28c133ee5737f2df4161549182e64a1053860925fb82b6ee53e60405160405180910390a16001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e1161104b565b610e83576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610f4e61104b565b610fc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661108e611f28565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b5050505050905090565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b60006111aa61104b565b61121c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600061134061128a611f28565b8461133b85604051806060016040528060258152602001612ee760259139600160006112b4611f28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b611f30565b6001905092915050565b600061135e611357611f28565b8484612127565b6001905092915050565b600560159054906101000a900460ff1681565b600061138561104b565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019050919050565b600061144f61104b565b6114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600082116114ef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114f1565b815b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b600061154861114c565b61159d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180612da96041913960600191505060405180910390fd5b6115a78483612525565b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbbae7eb111de428a8901aab34bd8b38b61bfee1d8414d3623e6dbae9dc0fa28b8585604051808381526020018281526020019250505060405180910390a3600190509392505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611740576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180612e126033913960400191505060405180910390fd5b600082116117b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4e6f2066756e647320696e70757474656420746f20737761702e00000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561183357600080fd5b505afa158015611847573d6000803e3d6000fd5b505050506040513d602081101561185d57600080fd5b81019080805190602001909291905050508211156118c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180612eaf6038913960400191505060405180910390fd5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205412806119535750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b6119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180612d4b603d913960400191505060405180910390fd5b600084905060008173ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119f557600080fd5b505afa158015611a09573d6000803e3d6000fd5b505050506040513d6020811015611a1f57600080fd5b8101908080519060200190929190505050905060008111611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526059815260200180612be26059913960600191505060405180910390fd5b6000611b323073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611ad657600080fd5b505afa158015611aea573d6000803e3d6000fd5b505050506040513d6020811015611b0057600080fd5b8101908080519060200190929190505050611b2484886126e090919063ffffffff16565b61276690919063ffffffff16565b9050611b3e33866127b0565b8273ffffffffffffffffffffffffffffffffffffffff1663d6b845683387846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050602060405180830381600087803b158015611bcd57600080fd5b505af1158015611be1573d6000803e3d6000fd5b505050506040513d6020811015611bf757600080fd5b8101908080519060200190929190505050611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612cfb6028913960400191505060405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbabb8c2585e878329bab9491a7c9e81c5601ec1347faaa8bdd00811acf3cb6938784604051808381526020018281526020019250505060405180910390a3600193505050509392505050565b611ce061104b565b611d52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611d5b81612968565b50565b6000611d6861104b565b611dda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560159054906101000a900460ff1615611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180612d236028913960400191505060405180910390fd5b600085859050118015611e5857508282905085859050145b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612ca56030913960400191505060405180910390fd5b60008090505b85859050811015611f1b57611f0e868683818110611ecd57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16858584818110611ef657fe5b9050602002013563ffffffff1663ffffffff16612525565b8080600101915050611eb3565b5060019050949350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e8b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612c836022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e666025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612233576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612bbf6023913960400191505060405180910390fd5b61229e81604051806060016040528060268152602001612cd5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612331816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061248a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561244f578082015181840152602081019050612434565b50505050905090810190601f16801561247c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6125dd8160025461249d90919063ffffffff16565b600281905550612634816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808314156126f35760009050612760565b600082840290508284828161270457fe5b041461275b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612d886021913960400191505060405180910390fd5b809150505b92915050565b60006127a883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612aae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612836576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e456021913960400191505060405180910390fd5b6128a181604051806060016040528060228152602001612c3b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123dd9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128f881600254612b7490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612c5d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612b5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b1f578082015181840152602081019050612b04565b50505050905090810190601f168015612b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612b6657fe5b049050809150509392505050565b6000612bb683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123dd565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737343616e6e6f74207265666572656e6365207a65726f20746f74616c20737570706c79206f66206f757470757420746f6b656e73207768656e2063616c63756c6174696e67206f757470757420746f6b656e20616d6f756e742e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d69736d61746368206265747765656e206e756d626572206f66206163636f756e747320616e6420616d6f756e74732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654661696c656420746f2066696e69736820737761702077697468206f757470757420746f6b656e2e42616c616e636520696e697469616c697a6174696f6e20616c726561647920636f6d706c6574652e496e70757420616d6f756e742069732067726561746572207468616e20746865206c696d697420666f722074686973206f757470757420746f6b656e2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433230537761707061626c654f75747075743a2063616c6c6572206973206e6f742061207265676973746572656420696e707574207377617020746f6b656e45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f757470757420746f6b656e206973206e6f7420612072656769737465726564206f7574707574207377617020746f6b656e2e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373496e70757420616d6f756e742063616e6e6f742062652067726561746572207468616e20696e70757420746f6b656e2062616c616e63652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820a294ecb7e5fd6861bae3714b5d731b7faf9c274d65e35168f6a377a93920baaf64736f6c63430005100032

Deployed Bytecode Sourcemap

27779:379:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27779:379:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:83;;;:::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;18187:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11826:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11826:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10847:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12450:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12450:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19039:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13163:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13163:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22735:258;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11001:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11001:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20811:140;;;:::i;:::-;;26769:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26769:147:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20000:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20366:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18389:87;;;:::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;18389:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27556:109;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27035:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27035:151:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13876:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13876:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11324:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11324:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21986:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25407:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25407:149:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25097:190;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25097:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26334:260;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26334:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11545:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11545:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23710:1208;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23710:1208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21106:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21106:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22203:451;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22203:451:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22203:451:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22203:451:0;;;;;;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;22203:451:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;22203:451:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22203:451:0;;;;;;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;22203:451:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18187:83;18224:13;18257:5;18250:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:83;:::o;11826:152::-;11892:4;11909:39;11918:12;:10;:12::i;:::-;11932:7;11941:6;11909:8;:39::i;:::-;11966:4;11959:11;;11826:152;;;;:::o;10847:91::-;10891:7;10918:12;;10911:19;;10847:91;:::o;12450:304::-;12539:4;12556:36;12566:6;12574:9;12585:6;12556:9;:36::i;:::-;12603:121;12612:6;12620:12;:10;:12::i;:::-;12634:89;12672:6;12634:89;;;;;;;;;;;;;;;;;:11;:19;12646:6;12634:19;;;;;;;;;;;;;;;:33;12654:12;:10;:12::i;:::-;12634:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12603:8;:121::i;:::-;12742:4;12735:11;;12450:304;;;;;:::o;19039:83::-;19080:5;19105:9;;;;;;;;;;;19098:16;;19039:83;:::o;13163:210::-;13243:4;13260:83;13269:12;:10;:12::i;:::-;13283:7;13292:50;13331:10;13292:11;:25;13304:12;:10;:12::i;:::-;13292:25;;;;;;;;;;;;;;;:34;13318:7;13292:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13260:8;:83::i;:::-;13361:4;13354:11;;13163:210;;;;:::o;22735:258::-;22797:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22823:20;;;;;;;;;;;22822:21;22814:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22922:4;22899:20;;:27;;;;;;;;;;;;;;;;;;22942:21;;;;;;;;;;22981:4;22974:11;;22735:258;:::o;11001:110::-;11058:7;11085:9;:18;11095:7;11085:18;;;;;;;;;;;;;;;;11078:25;;11001:110;;;:::o;20811:140::-;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20910:1;20873:40;;20894:6;;;;;;;;;;;20873:40;;;;;;;;;;;;20941:1;20924:6;;:19;;;;;;;;;;;;;;;;;;20811:140::o;26769:147::-;26839:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26882:4;26856:16;:23;26873:5;26856:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;26904:4;26897:11;;26769:147;;;:::o;20000:79::-;20038:7;20065:6;;;;;;;;;;;20058:13;;20000:79;:::o;20366:94::-;20406:4;20446:6;;;;;;;;;;;20430:22;;:12;:10;:12::i;:::-;:22;;;20423:29;;20366:94;:::o;18389:87::-;18428:13;18461:7;18454:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18389:87;:::o;27556:109::-;27605:4;27629:16;:28;27646:10;27629:28;;;;;;;;;;;;;;;;;;;;;;;;;27622:35;;27556:109;:::o;27035:151::-;27108:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27151:5;27125:16;:23;27142:5;27125:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;27174:4;27167:11;;27035:151;;;:::o;13876:261::-;13961:4;13978:129;13987:12;:10;:12::i;:::-;14001:7;14010:96;14049:15;14010:96;;;;;;;;;;;;;;;;;:11;:25;14022:12;:10;:12::i;:::-;14010:25;;;;;;;;;;;;;;;:34;14036:7;14010:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13978:8;:129::i;:::-;14125:4;14118:11;;13876:261;;;;:::o;11324:158::-;11393:4;11410:42;11420:12;:10;:12::i;:::-;11434:9;11445:6;11410:9;:42::i;:::-;11470:4;11463:11;;11324:158;;;;:::o;21986:40::-;;;;;;;;;;;;;:::o;25407:149::-;25481:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25525:1;25498:17;:24;25516:5;25498:24;;;;;;;;;;;;;;;:28;;;;25544:4;25537:11;;25407:149;;;:::o;25097:190::-;25183:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25235:1;25227:5;:9;:30;;25255:2;25227:30;;;25246:5;25227:30;25200:17;:24;25218:5;25200:24;;;;;;;;;;;;;;;:57;;;;25275:4;25268:11;;25097:190;;;;:::o;26334:260::-;26449:4;27348:18;:16;:18::i;:::-;27340:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26466:26;26472:5;26479:12;26466:5;:26::i;:::-;26531:5;26508:56;;26519:10;26508:56;;;26538:11;26551:12;26508:56;;;;;;;;;;;;;;;;;;;;;;;;26582:4;26575:11;;26334:260;;;;;:::o;11545:134::-;11617:7;11644:11;:18;11656:5;11644:18;;;;;;;;;;;;;;;:27;11663:7;11644:27;;;;;;;;;;;;;;;;11637:34;;11545:134;;;;:::o;23710:1208::-;23799:4;23858:1;23824:17;:30;23842:11;23824:30;;;;;;;;;;;;;;;;:35;;23816:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23948:1;23934:11;:15;23926:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24014:4;:14;;;24029:5;24014:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24014:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24014:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24014:21:0;;;;;;;;;;;;;;;;23999:11;:36;;23991:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24148:1;24115:17;:30;24133:11;24115:30;;;;;;;;;;;;;;;;:34;:92;;;;24176:17;:30;24194:11;24176:30;;;;;;;;;;;;;;;;24153:11;:54;;24115:92;24107:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24284:35;24343:11;24284:71;;24366:25;24394:14;:26;;;:28;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24394:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24394:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24394:28:0;;;;;;;;;;;;;;;;24366:56;;24461:1;24441:17;:21;24433:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24567:20;24590:58;24629:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24629:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24629:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24629:18:0;;;;;;;;;;;;;;;;24590:34;24606:17;24590:11;:15;;:34;;;;:::i;:::-;:38;;:58;;;;:::i;:::-;24567:81;;24659:30;24665:10;24677:11;24659:5;:30::i;:::-;24708:14;:25;;;24734:10;24746:11;24759:12;24708:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24708:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24708:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24708:64:0;;;;;;;;;;;;;;;;24700:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24855:5;24833:55;;24843:10;24833:55;;;24862:11;24875:12;24833:55;;;;;;;;;;;;;;;;;;;;;;;;24906:4;24899:11;;;;;23710:1208;;;;;:::o;21106:109::-;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21179:28;21198:8;21179:18;:28::i;:::-;21106:109;:::o;22203:451::-;22309:4;20212:9;:7;:9::i;:::-;20204:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22335:20;;;;;;;;;;;22334:21;22326:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22437:1;22419:8;;:15;;:19;:56;;;;;22461:7;;:14;;22442:8;;:15;;:33;22419:56;22411:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22544:9;22556:1;22544:13;;22539:85;22563:8;;:15;;22559:1;:19;22539:85;;;22585:39;22591:8;;22600:1;22591:11;;;;;;;;;;;;;;;22612:7;;22620:1;22612:10;;;;;;;;;;;;;;;22604:19;;22585:5;:39::i;:::-;22580:3;;;;;;;22539:85;;;;22642:4;22635:11;;22203:451;;;;;;:::o;6235:98::-;6280:15;6315:10;6308:17;;6235:98;:::o;16807:338::-;16918:1;16901:19;;:5;:19;;;;16893:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16999:1;16980:21;;:7;:21;;;;16972:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17083:6;17053:11;:18;17065:5;17053:18;;;;;;;;;;;;;;;:27;17072:7;17053:27;;;;;;;;;;;;;;;:36;;;;17121:7;17105:32;;17114:5;17105:32;;;17130:6;17105:32;;;;;;;;;;;;;;;;;;16807:338;;;:::o;14627:471::-;14743:1;14725:20;;:6;:20;;;;14717:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14827:1;14806:23;;:9;:23;;;;14798:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14902;14924:6;14902:71;;;;;;;;;;;;;;;;;:9;:17;14912:6;14902:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14882:9;:17;14892:6;14882:17;;;;;;;;;;;;;;;:91;;;;15007:32;15032:6;15007:9;:20;15017:9;15007:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14984:9;:20;14994:9;14984:20;;;;;;;;;;;;;;;:55;;;;15072:9;15055:35;;15064:6;15055:35;;;15083:6;15055:35;;;;;;;;;;;;;;;;;;14627:471;;;:::o;1788:192::-;1874:7;1907:1;1902;:6;;1910:12;1894: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;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1934:9;1950:1;1946;:5;1934:17;;1971:1;1964:8;;;1788:192;;;;;:::o;859:181::-;917:7;937:9;953:1;949;:5;937:17;;978:1;973;:6;;965:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;1024:8;;;859:181;;;;:::o;15379:308::-;15474:1;15455:21;;:7;:21;;;;15447:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15540:24;15557:6;15540:12;;:16;;:24;;;;:::i;:::-;15525:12;:39;;;;15596:30;15619:6;15596:9;:18;15606:7;15596:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15575:9;:18;15585:7;15575:18;;;;;;;;;;;;;;;:51;;;;15663:7;15642:37;;15659:1;15642:37;;;15672:6;15642:37;;;;;;;;;;;;;;;;;;15379:308;;:::o;2231:471::-;2289:7;2539:1;2534;:6;2530:47;;;2564:1;2557:8;;;;2530:47;2589:9;2605:1;2601;:5;2589:17;;2634:1;2629;2625;:5;;;;;;:10;2617:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693:1;2686:8;;;2231:471;;;;;:::o;3170:132::-;3228:7;3255:39;3259:1;3262;3255:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3248:46;;3170:132;;;;:::o;16019:348::-;16114:1;16095:21;;:7;:21;;;;16087:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16188:68;16211:6;16188:68;;;;;;;;;;;;;;;;;:9;:18;16198:7;16188:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16167:9;:18;16177:7;16167:18;;;;;;;;;;;;;;;:89;;;;16282:24;16299:6;16282:12;;:16;;:24;;;;:::i;:::-;16267:12;:39;;;;16348:1;16322:37;;16331:7;16322:37;;;16352:6;16322:37;;;;;;;;;;;;;;;;;;16019:348;;:::o;21321:229::-;21415:1;21395:22;;:8;:22;;;;21387:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21505:8;21476:38;;21497:6;;;;;;;;;;;21476:38;;;;;;;;;;;;21534:8;21525:6;;:17;;;;;;;;;;;;;;;;;;21321:229;:::o;3832:345::-;3918:7;4017:1;4013;:5;4020:12;4005:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;4005:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4044:9;4060:1;4056;:5;;;;;;4044:17;;4168:1;4161:8;;;3832:345;;;;;:::o;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1393:50;;1315:136;;;;:::o

Swarm Source

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