ETH Price: $3,413.79 (+3.90%)

Token

Quoxent (QUO)
 

Overview

Max Total Supply

360,000,000 QUO

Holders

156

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,874.19670492450583249 QUO

Value
$0.00
0x0DaEc973B492F9d17a37Ce5f91dAf5Deec5beE6a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Quoxent aims to offer Proof-of-Stake and Masternode-based distributed ledger.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Quoxent

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-10
*/

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: node_modules\@openzeppelin\contracts\utils\Address.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @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. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _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 virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

// File: contracts\Quoxent.sol

pragma solidity 0.6.2;


contract Quoxent is ERC20 {

  uint256 constant public DEPOSIT = 50000000000000000000000;
  uint256 constant public REWARD = 2500000000000000000000;
  uint256 constant public TOTAL_SUPPLY = 360000000;
  uint256 constant public STAKING_OFFSET = 13140000;

  struct Metadata {
    bool lock;
    uint256 deposits;
    mapping (uint256 => uint256) timeStamp;
  }

  mapping (address => Metadata) public _metadata;
  address public _superadmin;
  address[] public _admins;

  modifier isTransferable(address sender, address recipent, uint256 amount) {
    require(!_metadata[sender].lock && !_metadata[recipent].lock, "require metadata of sender/recipent is not lock");
    require(activeBalance(sender) >= amount, "require active balance greater than or equal input amount");
    _;
  }

  modifier _isAdmin() {
    (bool state, uint index) = indexOf(_admins, msg.sender);
    require(state, "Sender is not admin");
    _;
  }

  modifier _isSuperAdmin() {
    require(msg.sender == _superadmin, "Sender is not super admin");
    _;
  }

  constructor()
    ERC20('Quoxent', 'QUO')
  public {
    _mint(msg.sender, TOTAL_SUPPLY * 10**uint256(decimals()));
    _superadmin = msg.sender;
    _admins.push(msg.sender);
  }

  function transferWithPayload(address recipent, uint256 amount, bytes memory data)
  isTransferable(msg.sender, recipent, amount)
  public {
    _transfer(msg.sender, recipent, amount);

    emit Payload(msg.sender, data);
  }

  function transferFrom(address sender, address recipent, uint256 amount)
  isTransferable(sender, recipent, amount)
  public override returns (bool) {
    _transfer(sender, recipent, amount);
    _approve(sender, msg.sender, allowance(sender, msg.sender).sub(amount));
    return true;
  }

  function transfer(address recipent, uint256 amount)
  isTransferable(msg.sender, recipent, amount)
  public override returns (bool) {
    _transfer(msg.sender, recipent, amount);
    return true;
  }

  function stake()
  public {
    require(activeBalance(msg.sender) >= DEPOSIT, "require active balance greater than deposit");
    Metadata storage m = _metadata[msg.sender];

    m.timeStamp[m.deposits + 1] = block.timestamp;
    m.deposits++;

    emit Commit(msg.sender, block.timestamp);
  }

  function redeem(uint256 index)
  public {
    require(_metadata[msg.sender].deposits >= index && index != 0, "require sender deposit greater than index and index is not zero");
    require(_metadata[msg.sender].deposits != 0, "require sender deposit is not zero");
    require(_metadata[msg.sender].timeStamp[index] != 0, "require sender timestamp is not zero");

    uint timestamp = _metadata[msg.sender].timeStamp[index];
    uint limit = timestamp.add(STAKING_OFFSET);

    require(block.timestamp >= limit, "can mint after STAKING_OFFSET");

    _mint(msg.sender, REWARD);
    delete _metadata[msg.sender].timeStamp[index];
    _metadata[msg.sender].deposits--;
    emit Claim(msg.sender, block.timestamp);

  }

  function activeBalance(address owner)
  public view returns (uint256) {
    uint256 pending = _metadata[owner].deposits.mul(DEPOSIT);
    uint256 outstanding = balanceOf(owner).sub(pending);

    return outstanding;
  }

  function indexOf(address[] memory arr, address subject)
  internal pure returns (bool, uint256) {
    for(uint256 x = 0; x < arr.length; x++) {
      if(arr[x] == subject) return (true, x);
    }
    return (false, 0);
  }

  function disenfranchise(address subject)
  _isSuperAdmin()
  public {
    (bool state, uint index) = indexOf(_admins, subject);

    if(state) {
      _admins[index] = _admins[_admins.length - 1];
      _admins.pop();
    } else revert("subject is not admin");
  }

  function delegate(address subject)
  _isSuperAdmin()
  public {
    _admins.push(subject);
  }

  function lock(address account)
  _isAdmin()
  public {
    require(account != _superadmin, "Cannot lock super admin");
    _metadata[account].lock = true;
  }

  function unlock(address account)
  _isAdmin()
  public {
    _metadata[account].lock = false;
  }

  event Commit(address indexed owner, uint256 timestamp);

  event Claim(address indexed owner, uint256 timestamp);

  event Payload(address indexed origin, bytes meta);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Commit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"origin","type":"address"},{"indexed":false,"internalType":"bytes","name":"meta","type":"bytes"}],"name":"Payload","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEPOSIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKING_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_admins","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_metadata","outputs":[{"internalType":"bool","name":"lock","type":"bool"},{"internalType":"uint256","name":"deposits","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_superadmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"activeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"subject","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"subject","type":"address"}],"name":"disenfranchise","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipent","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipent","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipent","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferWithPayload","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f51756f78656e74000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f51554f000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000428565b508060049080519060200190620000af92919062000428565b506012600560006101000a81548160ff021916908360ff1602179055505050620000fb33620000e3620001a560201b60201c565b60ff16600a0a6315752a0002620001bc60201b60201c565b33600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d7565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000274600083836200039a60201b60201c565b62000290816002546200039f60201b620026e81790919060201c565b600281905550620002ee816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200039f60201b620026e81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000808284019050838110156200041e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046b57805160ff19168380011785556200049c565b828001600101855582156200049c579182015b828111156200049b5782518255916020019190600101906200047e565b5b509050620004ab9190620004af565b5090565b620004d491905b80821115620004d0576000816000905550600101620004b6565b5090565b90565b612c4480620004e76000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063901ee757116100de578063b8a3355c11610097578063db006a7511610071578063db006a7514610812578063dd62ed3e14610840578063ea430f84146108b8578063f435f5a71461099d5761018e565b8063b8a3355c146107b8578063cab34c08146107d6578063d81c8e52146107f45761018e565b8063901ee7571461059e578063902d55a51461060157806395d89b411461061f578063a457c2d7146106a2578063a9059cbb14610708578063b0d1d5dc1461076e5761018e565b80632f6c493c1161014b5780633a4b66f1116101255780633a4b66f11461048a5780635c19a95c1461049457806370a08231146104d857806378a09a6e146105305761018e565b80632f6c493c146103bc578063313ce5671461040057806339509351146104245761018e565b806306fdde03146101935780630892cd8b14610216578063095ea7b31461026e57806317a1da3b146102d457806318160ddd1461031857806323b872dd14610336575b600080fd5b61019b6109e1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101db5780820151818401526020810190506101c0565b50505050905090810190601f1680156102085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102586004803603602081101561022c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a83565b6040518082815260200191505060405180910390f35b6102ba6004803603604081101561028457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b604051808215151515815260200191505060405180910390f35b610316600480360360208110156102ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b2e565b005b610320610ddb565b6040518082815260200191505060405180910390f35b6103a26004803603606081101561034c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de5565b604051808215151515815260200191505060405180910390f35b6103fe600480360360208110156103d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f89565b005b6104086110f3565b604051808260ff1660ff16815260200191505060405180910390f35b6104706004803603604081101561043a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061110a565b604051808215151515815260200191505060405180910390f35b6104926111bd565b005b6104d6600480360360208110156104aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112f1565b005b61051a600480360360208110156104ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141a565b6040518082815260200191505060405180910390f35b61055c6004803603602081101561054657600080fd5b8101908080359060200190929190505050611462565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e0600480360360208110156105b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149e565b60405180831515151581526020018281526020019250505060405180910390f35b6106096114cf565b6040518082815260200191505060405180910390f35b6106276114d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561066757808201518184015260208101905061064c565b50505050905090810190601f1680156106945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106ee600480360360408110156106b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611579565b604051808215151515815260200191505060405180910390f35b6107546004803603604081101561071e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611646565b604051808215151515815260200191505060405180910390f35b6107766117c3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c06117e9565b6040518082815260200191505060405180910390f35b6107de6117f0565b6040518082815260200191505060405180910390f35b6107fc6117fd565b6040518082815260200191505060405180910390f35b61083e6004803603602081101561082857600080fd5b810190808035906020019092919050505061180b565b005b6108a26004803603604081101561085657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bf4565b6040518082815260200191505060405180910390f35b61099b600480360360608110156108ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561091557600080fd5b82018360208201111561092757600080fd5b8035906020019184600183028401116401000000008311171561094957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c7b565b005b6109df600480360360208110156109b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ea4565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b600080610ae5690a968163f0a57b400000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546120d290919063ffffffff16565b90506000610b0482610af68661141a565b61215890919063ffffffff16565b90508092505050919050565b6000610b24610b1d6121a2565b84846121aa565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f53656e646572206973206e6f742073757065722061646d696e0000000000000081525060200191505060405180910390fd5b600080610c846008805480602002602001604051908101604052809291908181526020018280548015610c7957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c2f575b5050505050846123a1565b915091508115610d6857600860016008805490500381548110610ca357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110610cdb57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480610d2e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610dd6565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f7375626a656374206973206e6f742061646d696e00000000000000000000000081525060200191505060405180910390fd5b505050565b6000600254905090565b6000838383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16158015610e945750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b610ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b80610ef384610a83565b1015610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b610f55878787612427565b610f7b8733610f7688610f688c33611bf4565b61215890919063ffffffff16565b6121aa565b600193505050509392505050565b60008061101c600880548060200260200160405190810160405280929190818152602001828054801561101157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610fc7575b5050505050336123a1565b9150915081611093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656e646572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908315150217905550505050565b6000600560009054906101000a900460ff16905090565b60006111b36111176121a2565b846111ae85600160006111286121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6121aa565b6001905092915050565b690a968163f0a57b4000006111d133610a83565b1015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806129fd602b913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905042816002016000600184600101540181526020019081526020016000208190555080600101600081548092919060010191905055503373ffffffffffffffffffffffffffffffffffffffff167f5e1dd8c4451717d5ca4ffbefdada35e22e0871220b9ed9dd03a351f0938c5ed7426040518082815260200191505060405180910390a250565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f53656e646572206973206e6f742073757065722061646d696e0000000000000081525060200191505060405180910390fd5b6008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6008818154811061146f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154905082565b6315752a0081565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b5050505050905090565b600061163c6115866121a2565b8461163785604051806060016040528060258152602001612bea60259139600160006115b06121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127709092919063ffffffff16565b6121aa565b6001905092915050565b6000338383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161580156116f55750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b61174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b8061175484610a83565b10156117ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b6117b6338787612427565b6001935050505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b62c8802081565b68878678326eac90000081565b690a968163f0a57b40000081565b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541015801561185e575060008114155b6118b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180612ae4603f913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561194f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612a936022913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205414156119fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612bc66024913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205490506000611a6c62c88020836126e890919063ffffffff16565b905080421015611ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616e206d696e74206166746572205354414b494e475f4f464653455400000081525060200191505060405180910390fd5b611af73368878678326eac900000612830565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060009055600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008154809291906001900391905055503373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4426040518082815260200191505060405180910390a2505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b338383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16158015611d285750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b80611d8784610a83565b1015611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b611de9338787612427565b3373ffffffffffffffffffffffffffffffffffffffff167f56e1470ce2eb0006abeca028cd6d8115d7610f1174ec0758ccb27ec08bcb9f8a856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611e62578082015181840152602081019050611e47565b50505050905090810190601f168015611e8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050505050565b600080611f376008805480602002602001604051908101604052809291908181526020018280548015611f2c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ee2575b5050505050336123a1565b9150915081611fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656e646572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f74206c6f636b2073757065722061646d696e00000000000000000081525060200191505060405180910390fd5b6001600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908315150217905550505050565b6000808314156120e55760009050612152565b60008284029050828482816120f657fe5b041461214d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612b5c6021913960400191505060405180910390fd5b809150505b92915050565b600061219a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612770565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612ba26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612a4b6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008060008090505b8451811015612414578373ffffffffffffffffffffffffffffffffffffffff168582815181106123d657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415612407576001819250925050612420565b80806001019150506123aa565b50600080809050915091505b9250929050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612b7d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612a286023913960400191505060405180910390fd5b61253e8383836129f7565b6125a981604051806060016040528060268152602001612a6d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127709092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061263c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080828401905083811015612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600083831115829061281d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127e25780820151818401526020810190506127c7565b50505050905090810190601f16801561280f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6128df600083836129f7565b6128f4816002546126e890919063ffffffff16565b60028190555061294b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe72657175697265206163746976652062616c616e63652067726561746572207468616e206465706f73697445524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365726571756972652073656e646572206465706f736974206973206e6f74207a65726f72657175697265206d65746164617461206f662073656e6465722f7265636970656e74206973206e6f74206c6f636b726571756972652073656e646572206465706f7369742067726561746572207468616e20696e64657820616e6420696e646578206973206e6f74207a65726f72657175697265206163746976652062616c616e63652067726561746572207468616e206f7220657175616c20696e70757420616d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373726571756972652073656e6465722074696d657374616d70206973206e6f74207a65726f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220202f4c5686ac6180448d189de0d4f7dbcf08df3332f7a07262759beb72aa32f564736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063901ee757116100de578063b8a3355c11610097578063db006a7511610071578063db006a7514610812578063dd62ed3e14610840578063ea430f84146108b8578063f435f5a71461099d5761018e565b8063b8a3355c146107b8578063cab34c08146107d6578063d81c8e52146107f45761018e565b8063901ee7571461059e578063902d55a51461060157806395d89b411461061f578063a457c2d7146106a2578063a9059cbb14610708578063b0d1d5dc1461076e5761018e565b80632f6c493c1161014b5780633a4b66f1116101255780633a4b66f11461048a5780635c19a95c1461049457806370a08231146104d857806378a09a6e146105305761018e565b80632f6c493c146103bc578063313ce5671461040057806339509351146104245761018e565b806306fdde03146101935780630892cd8b14610216578063095ea7b31461026e57806317a1da3b146102d457806318160ddd1461031857806323b872dd14610336575b600080fd5b61019b6109e1565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101db5780820151818401526020810190506101c0565b50505050905090810190601f1680156102085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102586004803603602081101561022c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a83565b6040518082815260200191505060405180910390f35b6102ba6004803603604081101561028457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b10565b604051808215151515815260200191505060405180910390f35b610316600480360360208110156102ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b2e565b005b610320610ddb565b6040518082815260200191505060405180910390f35b6103a26004803603606081101561034c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de5565b604051808215151515815260200191505060405180910390f35b6103fe600480360360208110156103d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f89565b005b6104086110f3565b604051808260ff1660ff16815260200191505060405180910390f35b6104706004803603604081101561043a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061110a565b604051808215151515815260200191505060405180910390f35b6104926111bd565b005b6104d6600480360360208110156104aa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112f1565b005b61051a600480360360208110156104ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061141a565b6040518082815260200191505060405180910390f35b61055c6004803603602081101561054657600080fd5b8101908080359060200190929190505050611462565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105e0600480360360208110156105b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061149e565b60405180831515151581526020018281526020019250505060405180910390f35b6106096114cf565b6040518082815260200191505060405180910390f35b6106276114d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561066757808201518184015260208101905061064c565b50505050905090810190601f1680156106945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106ee600480360360408110156106b857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611579565b604051808215151515815260200191505060405180910390f35b6107546004803603604081101561071e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611646565b604051808215151515815260200191505060405180910390f35b6107766117c3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c06117e9565b6040518082815260200191505060405180910390f35b6107de6117f0565b6040518082815260200191505060405180910390f35b6107fc6117fd565b6040518082815260200191505060405180910390f35b61083e6004803603602081101561082857600080fd5b810190808035906020019092919050505061180b565b005b6108a26004803603604081101561085657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bf4565b6040518082815260200191505060405180910390f35b61099b600480360360608110156108ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561091557600080fd5b82018360208201111561092757600080fd5b8035906020019184600183028401116401000000008311171561094957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611c7b565b005b6109df600480360360208110156109b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ea4565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b600080610ae5690a968163f0a57b400000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546120d290919063ffffffff16565b90506000610b0482610af68661141a565b61215890919063ffffffff16565b90508092505050919050565b6000610b24610b1d6121a2565b84846121aa565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f53656e646572206973206e6f742073757065722061646d696e0000000000000081525060200191505060405180910390fd5b600080610c846008805480602002602001604051908101604052809291908181526020018280548015610c7957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610c2f575b5050505050846123a1565b915091508115610d6857600860016008805490500381548110610ca357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660088281548110610cdb57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008805480610d2e57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610dd6565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f7375626a656374206973206e6f742061646d696e00000000000000000000000081525060200191505060405180910390fd5b505050565b6000600254905090565b6000838383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16158015610e945750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b610ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b80610ef384610a83565b1015610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b610f55878787612427565b610f7b8733610f7688610f688c33611bf4565b61215890919063ffffffff16565b6121aa565b600193505050509392505050565b60008061101c600880548060200260200160405190810160405280929190818152602001828054801561101157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610fc7575b5050505050336123a1565b9150915081611093576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656e646572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908315150217905550505050565b6000600560009054906101000a900460ff16905090565b60006111b36111176121a2565b846111ae85600160006111286121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6121aa565b6001905092915050565b690a968163f0a57b4000006111d133610a83565b1015611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806129fd602b913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905042816002016000600184600101540181526020019081526020016000208190555080600101600081548092919060010191905055503373ffffffffffffffffffffffffffffffffffffffff167f5e1dd8c4451717d5ca4ffbefdada35e22e0871220b9ed9dd03a351f0938c5ed7426040518082815260200191505060405180910390a250565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f53656e646572206973206e6f742073757065722061646d696e0000000000000081525060200191505060405180910390fd5b6008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6008818154811061146f57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154905082565b6315752a0081565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b5050505050905090565b600061163c6115866121a2565b8461163785604051806060016040528060258152602001612bea60259139600160006115b06121a2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127709092919063ffffffff16565b6121aa565b6001905092915050565b6000338383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161580156116f55750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b61174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b8061175484610a83565b10156117ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b6117b6338787612427565b6001935050505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b62c8802081565b68878678326eac90000081565b690a968163f0a57b40000081565b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541015801561185e575060008114155b6118b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180612ae4603f913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561194f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612a936022913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205414156119fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612bc66024913960400191505060405180910390fd5b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205490506000611a6c62c88020836126e890919063ffffffff16565b905080421015611ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616e206d696e74206166746572205354414b494e475f4f464653455400000081525060200191505060405180910390fd5b611af73368878678326eac900000612830565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060009055600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008154809291906001900391905055503373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4426040518082815260200191505060405180910390a2505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b338383600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16158015611d285750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16155b611d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612ab5602f913960400191505060405180910390fd5b80611d8784610a83565b1015611dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180612b236039913960400191505060405180910390fd5b611de9338787612427565b3373ffffffffffffffffffffffffffffffffffffffff167f56e1470ce2eb0006abeca028cd6d8115d7610f1174ec0758ccb27ec08bcb9f8a856040518080602001828103825283818151815260200191508051906020019080838360005b83811015611e62578082015181840152602081019050611e47565b50505050905090810190601f168015611e8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a2505050505050565b600080611f376008805480602002602001604051908101604052809291908181526020018280548015611f2c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ee2575b5050505050336123a1565b9150915081611fae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53656e646572206973206e6f742061646d696e0000000000000000000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f43616e6e6f74206c6f636b2073757065722061646d696e00000000000000000081525060200191505060405180910390fd5b6001600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908315150217905550505050565b6000808314156120e55760009050612152565b60008284029050828482816120f657fe5b041461214d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612b5c6021913960400191505060405180910390fd5b809150505b92915050565b600061219a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612770565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612ba26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612a4b6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008060008090505b8451811015612414578373ffffffffffffffffffffffffffffffffffffffff168582815181106123d657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415612407576001819250925050612420565b80806001019150506123aa565b50600080809050915091505b9250929050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612b7d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612a286023913960400191505060405180910390fd5b61253e8383836129f7565b6125a981604051806060016040528060268152602001612a6d602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127709092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061263c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080828401905083811015612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600083831115829061281d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127e25780820151818401526020810190506127c7565b50505050905090810190601f16801561280f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6128df600083836129f7565b6128f4816002546126e890919063ffffffff16565b60028190555061294b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126e890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe72657175697265206163746976652062616c616e63652067726561746572207468616e206465706f73697445524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365726571756972652073656e646572206465706f736974206973206e6f74207a65726f72657175697265206d65746164617461206f662073656e6465722f7265636970656e74206973206e6f74206c6f636b726571756972652073656e646572206465706f7369742067726561746572207468616e20696e64657820616e6420696e646578206973206e6f74207a65726f72657175697265206163746976652062616c616e63652067726561746572207468616e206f7220657175616c20696e70757420616d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373726571756972652073656e6465722074696d657374616d70206973206e6f74207a65726f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220202f4c5686ac6180448d189de0d4f7dbcf08df3332f7a07262759beb72aa32f564736f6c63430006020033

Deployed Bytecode Sourcemap

26688:4354:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26688:4354:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17809: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;17809:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29744:225;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29744:225:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19915:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19915:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30209:273;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30209:273:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18884:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28187:294;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28187:294:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30761:101;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30761:101:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18736:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21288:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21288:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28697:303;;;:::i;:::-;;30488:98;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30488:98:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19047:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19047:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27146:24;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27146:24:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27064:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27064:46:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26843:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18011: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;18011:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22009:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22009:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28487:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28487:204:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27115:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26896:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26783:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26721:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29006:732;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29006:732:0;;;;;;;;;;;;;;;;;:::i;:::-;;19617:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19617:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27950:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27950:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;27950:231:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27950:231:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27950:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;27950:231:0;;;;;;;;;;;;;;;:::i;:::-;;30592:163;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30592:163:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17809:83;17846:13;17879:5;17872:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17809:83;:::o;29744:225::-;29806:7;29822:15;29840:38;26755:23;29840:9;:16;29850:5;29840:16;;;;;;;;;;;;;;;:25;;;:29;;:38;;;;:::i;:::-;29822:56;;29885:19;29907:29;29928:7;29907:16;29917:5;29907:9;:16::i;:::-;:20;;:29;;;;:::i;:::-;29885:51;;29952:11;29945:18;;;;29744:225;;;:::o;19915:169::-;19998:4;20015:39;20024:12;:10;:12::i;:::-;20038:7;20047:6;20015:8;:39::i;:::-;20072:4;20065:11;;19915:169;;;;:::o;30209:273::-;27698:11;;;;;;;;;;;27684:25;;:10;:25;;;27676:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30287:10:::1;30299::::0;30313:25:::1;30321:7;30313:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30330:7;30313;:25::i;:::-;30286:52;;;;30350:5;30347:129;;;30383:7;30408:1;30391:7;:14;;;;:18;30383:27;;;;;;;;;;;;;;;;;;;;;;;;;30366:7;30374:5;30366:14;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;30419:7;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30347:129;;;30446:30;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;30347:129;27746:1;;30209:273:::0;:::o;18884:100::-;18937:7;18964:12;;18957:19;;18884:100;:::o;28187:294::-;28331:4;28277:6;28285:8;28295:6;27267:9;:17;27277:6;27267:17;;;;;;;;;;;;;;;:22;;;;;;;;;;;;27266:23;:52;;;;;27294:9;:19;27304:8;27294:19;;;;;;;;;;;;;;;:24;;;;;;;;;;;;27293:25;27266:52;27258:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:6;27385:21;27399:6;27385:13;:21::i;:::-;:31;;27377:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28344:35:::1;28354:6;28362:8;28372:6;28344:9;:35::i;:::-;28386:71;28395:6;28403:10;28415:41;28449:6;28415:29;28425:6;28433:10;28415:9;:29::i;:::-;:33;;:41;;;;:::i;:::-;28386:8;:71::i;:::-;28471:4;28464:11;;28187:294:::0;;;;;;;;:::o;30761:101::-;27526:10;27538;27552:28;27560:7;27552:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27569:10;27552:7;:28::i;:::-;27525:55;;;;27595:5;27587:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30851:5:::1;30825:9;:18;30835:7;30825:18;;;;;;;;;;;;;;;:23;;;:31;;;;;;;;;;;;;;;;;;30761:101:::0;;;:::o;18736:83::-;18777:5;18802:9;;;;;;;;;;;18795:16;;18736:83;:::o;21288:218::-;21376:4;21393:83;21402:12;:10;:12::i;:::-;21416:7;21425:50;21464:10;21425:11;:25;21437:12;:10;:12::i;:::-;21425:25;;;;;;;;;;;;;;;:34;21451:7;21425:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21393:8;:83::i;:::-;21494:4;21487:11;;21288:218;;;;:::o;28697:303::-;26755:23;28739:25;28753:10;28739:13;:25::i;:::-;:36;;28731:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28830:18;28851:9;:21;28861:10;28851:21;;;;;;;;;;;;;;;28830:42;;28911:15;28881:1;:11;;:27;28906:1;28893;:10;;;:14;28881:27;;;;;;;;;;;:45;;;;28933:1;:10;;;:12;;;;;;;;;;;;;28966:10;28959:35;;;28978:15;28959:35;;;;;;;;;;;;;;;;;;28697:303;:::o;30488:98::-;27698:11;;;;;;;;;;;27684:25;;:10;:25;;;27676:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30559:7:::1;30572;30559:21;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;30559:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30488:98:::0;:::o;19047:119::-;19113:7;19140:9;:18;19150:7;19140:18;;;;;;;;;;;;;;;;19133:25;;19047:119;;;:::o;27146:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27064:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26843:48::-;26882:9;26843:48;:::o;18011:87::-;18050:13;18083:7;18076:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18011:87;:::o;22009:269::-;22102:4;22119:129;22128:12;:10;:12::i;:::-;22142:7;22151:96;22190:15;22151:96;;;;;;;;;;;;;;;;;:11;:25;22163:12;:10;:12::i;:::-;22151:25;;;;;;;;;;;;;;;:34;22177:7;22151:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22119:8;:129::i;:::-;22266:4;22259:11;;22009:269;;;;:::o;28487:204::-;28615:4;28557:10;28569:8;28579:6;27267:9;:17;27277:6;27267:17;;;;;;;;;;;;;;;:22;;;;;;;;;;;;27266:23;:52;;;;;27294:9;:19;27304:8;27294:19;;;;;;;;;;;;;;;:24;;;;;;;;;;;;27293:25;27266:52;27258:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:6;27385:21;27399:6;27385:13;:21::i;:::-;:31;;27377:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28628:39:::1;28638:10;28650:8;28660:6;28628:9;:39::i;:::-;28681:4;28674:11;;28487:204:::0;;;;;;;:::o;27115:26::-;;;;;;;;;;;;;:::o;26896:49::-;26937:8;26896:49;:::o;26783:55::-;26816:22;26783:55;:::o;26721:57::-;26755:23;26721:57;:::o;29006:732::-;29096:5;29062:9;:21;29072:10;29062:21;;;;;;;;;;;;;;;:30;;;:39;;:53;;;;;29114:1;29105:5;:10;;29062:53;29054:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29232:1;29198:9;:21;29208:10;29198:21;;;;;;;;;;;;;;;:30;;;:35;;29190:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29329:1;29287:9;:21;29297:10;29287:21;;;;;;;;;;;;;;;:31;;:38;29319:5;29287:38;;;;;;;;;;;;:43;;29279:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29380:14;29397:9;:21;29407:10;29397:21;;;;;;;;;;;;;;;:31;;:38;29429:5;29397:38;;;;;;;;;;;;29380:55;;29442:10;29455:29;26937:8;29455:9;:13;;:29;;;;:::i;:::-;29442:42;;29520:5;29501:15;:24;;29493:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29568:25;29574:10;26816:22;29568:5;:25::i;:::-;29607:9;:21;29617:10;29607:21;;;;;;;;;;;;;;;:31;;:38;29639:5;29607:38;;;;;;;;;;;29600:45;;;29652:9;:21;29662:10;29652:21;;;;;;;;;;;;;;;:30;;;:32;;;;;;;;;;;;;;29702:10;29696:34;;;29714:15;29696:34;;;;;;;;;;;;;;;;;;29006:732;;;:::o;19617:151::-;19706:7;19733:11;:18;19745:5;19733:18;;;;;;;;;;;;;;;:27;19752:7;19733:27;;;;;;;;;;;;;;;;19726:34;;19617:151;;;;:::o;27950:231::-;28050:10;28062:8;28072:6;27267:9;:17;27277:6;27267:17;;;;;;;;;;;;;;;:22;;;;;;;;;;;;27266:23;:52;;;;;27294:9;:19;27304:8;27294:19;;;;;;;;;;;;;;;:24;;;;;;;;;;;;27293:25;27266:52;27258:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:6;27385:21;27399:6;27385:13;:21::i;:::-;:31;;27377:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28097:39:::1;28107:10;28119:8;28129:6;28097:9;:39::i;:::-;28158:10;28150:25;;;28170:4;28150:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;28150:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27950:231:::0;;;;;;:::o;30592:163::-;27526:10;27538;27552:28;27560:7;27552:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27569:10;27552:7;:28::i;:::-;27525:55;;;;27595:5;27587:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30673:11:::1;;;;;;;;;;;30662:22;;:7;:22;;;;30654:58;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30745:4;30719:9;:18;30729:7;30719:18;;;;;;;;;;;;;;;:23;;;:30;;;;;;;;;;;;;;;;;;30592:163:::0;;;:::o;6194:471::-;6252:7;6502:1;6497;:6;6493:47;;;6527:1;6520:8;;;;6493:47;6552:9;6568:1;6564;:5;6552:17;;6597:1;6592;6588;:5;;;;;;:10;6580:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6656:1;6649:8;;;6194:471;;;;;:::o;5304:136::-;5362:7;5389:43;5393:1;5396;5389:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5382:50;;5304:136;;;;:::o;670:106::-;723:15;758:10;751:17;;670:106;:::o;25156:346::-;25275:1;25258:19;;:5;:19;;;;25250:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:1;25337:21;;:7;:21;;;;25329:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25440:6;25410:11;:18;25422:5;25410:18;;;;;;;;;;;;;;;:27;25429:7;25410:27;;;;;;;;;;;;;;;:36;;;;25478:7;25462:32;;25471:5;25462:32;;;25487:6;25462:32;;;;;;;;;;;;;;;;;;25156:346;;;:::o;29975:228::-;30057:4;30063:7;30083:9;30095:1;30083:13;;30079:95;30102:3;:10;30098:1;:14;30079:95;;;30141:7;30131:17;;:3;30135:1;30131:6;;;;;;;;;;;;;;:17;;;30128:38;;;30158:4;30164:1;30150:16;;;;;;;30128:38;30114:3;;;;;;;30079:95;;;;30188:5;30195:1;30180:17;;;;;;;29975:228;;;;;;:::o;22768:539::-;22892:1;22874:20;;:6;:20;;;;22866:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22976:1;22955:23;;:9;:23;;;;22947:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23031:47;23052:6;23060:9;23071:6;23031:20;:47::i;:::-;23111:71;23133:6;23111:71;;;;;;;;;;;;;;;;;:9;:17;23121:6;23111:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23091:9;:17;23101:6;23091:17;;;;;;;;;;;;;;;:91;;;;23216:32;23241:6;23216:9;:20;23226:9;23216:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23193:9;:20;23203:9;23193:20;;;;;;;;;;;;;;;:55;;;;23281:9;23264:35;;23273:6;23264:35;;;23292:6;23264:35;;;;;;;;;;;;;;;;;;22768:539;;;:::o;4840:181::-;4898:7;4918:9;4934:1;4930;:5;4918:17;;4959:1;4954;:6;;4946:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5012:1;5005:8;;;4840:181;;;;:::o;5743:192::-;5829:7;5862:1;5857;:6;;5865:12;5849: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;5849:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5889:9;5905:1;5901;:5;5889:17;;5926:1;5919:8;;;5743:192;;;;;:::o;23588:378::-;23691:1;23672:21;;:7;:21;;;;23664:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:49;23771:1;23775:7;23784:6;23742:20;:49::i;:::-;23819:24;23836:6;23819:12;;:16;;:24;;;;:::i;:::-;23804:12;:39;;;;23875:30;23898:6;23875:9;:18;23885:7;23875:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23854:9;:18;23864:7;23854:18;;;;;;;;;;;;;;;:51;;;;23942:7;23921:37;;23938:1;23921:37;;;23951:6;23921:37;;;;;;;;;;;;;;;;;;23588:378;;:::o;26527:92::-;;;;:::o

Swarm Source

ipfs://202f4c5686ac6180448d189de0d4f7dbcf08df3332f7a07262759beb72aa32f5
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.