ETH Price: $3,461.00 (+2.07%)
Gas: 6 Gwei

Token

Versus.cx (Versus)
 

Overview

Max Total Supply

13,750.540141913443601501 Versus

Holders

158

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,466.295352861328030611 Versus

Value
$0.00
0x4fAB0057b5a205Fc6Ff47F8d635e18cc0A2a98C1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Versus

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-10
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/SafeERC20.sol



pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/math/SafeMath.sol



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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol



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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/GSN/Context.sol



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: https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol



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;

    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 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: browser/Versus.sol

pragma solidity ^0.6.6;



contract NyanV2 {
    function getStakedNyanV2LP(address staker) public view returns(uint256) {}
    function lockNyan(address holder) public {}
    function lockNyanLP(address staker) public {}
}

contract Versus is ERC20 {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    address owner;
    address public predictionContract;
    address public versusOld = 0xD29FAbC16cB57511844aE9cbDa3CddF601E1489b;
    address public uniswapRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public versusRewards;
    address public nyan = 0xbF4a9A37EcFc21825011285222c36aB35De51F14;

    struct claimLock {
        uint256 unlockBlock;
        bool hasClaimedNyan;
    }
    mapping(address => claimLock) public userClaimLock;
    uint256 public maxNyanMint = 0;
    uint256 public maxNyanLPMint = 0;
    bool public hasNyanClaimStarted;
    
    event predictionContractSet(address _contract);
    event predictionRewarded(address user, uint256 rewards);
    event versusLocked(address user);
    event nyanClaimStarted(address owner);
    event nyanVersusClaimed(address user);
    event nyanContractsSet(address nyan);
    event versusRewardsContractsSet(address rewardsContract);
    
    constructor() public ERC20("Versus.cx", "Versus") {
        owner = msg.sender;
        uint256 supply = 500;
        _mint(msg.sender, supply.mul(10 ** 18));
        predictionContract = address(0);
    }
    
    function setVersusRewardsContract(address _rewards) public {
        require(msg.sender == owner);
        versusRewards = _rewards;
        emit versusRewardsContractsSet(_rewards);
    }
    
    function setNyanContracts(address _nyan) public {
        require(msg.sender == owner);
        nyan = _nyan;
        emit nyanContractsSet(_nyan);
    }
    
    function setPredictionContract(address predict) public {
        require(msg.sender == owner);
        predictionContract = predict;
        emit predictionContractSet(predict);
    }
    
    function rewardPrediction(address user, uint256 amount) public {
        require(msg.sender == predictionContract);
        _mint(user, amount);
        emit predictionRewarded(user, amount);
    }
    
    function claimAndLock(address user) public {
        require(msg.sender == versusRewards);
        require(userClaimLock[user].unlockBlock < block.number);
        userClaimLock[user].unlockBlock = block.number.add(45500);
        emit versusLocked(user);
    }
    
    function transfer(address _recipient, uint256 _amount) public override returns(bool) {    
        require(userClaimLock[msg.sender].unlockBlock < block.number);
        if (_amount > 0) {
            require(_amount.mul(100).div(totalSupply()) < 5, "You can't own that much Versus");
        }
        return super.transfer(_recipient, _amount);
    }
    
    function transferFrom(address _sender, address _recipient, uint256 _amount) public override returns(bool) {
        require(userClaimLock[_sender].unlockBlock < block.number);
        if (_sender != owner) {
            if (_amount > 0) {
                require(_amount.mul(100).div(totalSupply()) < 5, "You can't own that much Versus");
            }
        }
        return super.transferFrom(_sender, _recipient, _amount);
    }
    
    function startNyanClaim() public {
        require(msg.sender == owner);
        hasNyanClaimStarted = true;
        emit nyanClaimStarted(msg.sender);
    }
    
    function isNyanEligible(address user) public view returns(bool) {
        bool isEligible;
        uint256 nyanHeld = ERC20(nyan).balanceOf(user);
        uint256 nyanLPStaked = NyanV2(nyan).getStakedNyanV2LP(user);
        
        if (nyanHeld > 0) {
            isEligible = true;
            
        }
        if (nyanLPStaked > 0) {
            isEligible = true;
        }
        
        if (userClaimLock[user].hasClaimedNyan) {
            isEligible = false;
        }
        return isEligible;
    }
    
    function claimNyanVersus() public {
        require(hasNyanClaimStarted);
        require(!userClaimLock[msg.sender].hasClaimedNyan);
        uint256 nyanHeld = ERC20(nyan).balanceOf(msg.sender);
        uint256 nyanLPStaked = NyanV2(nyan).getStakedNyanV2LP(msg.sender);
        
        if (nyanHeld > 0) {
            require(maxNyanMint.add(nyanHeld.div(10)) < 3300000000000000000000);
            _mint(msg.sender, nyanHeld.div(10));
            maxNyanMint = maxNyanMint.add(nyanHeld.div(10));
            //lock Nyan movement for 2 weeks
            NyanV2(nyan).lockNyan(msg.sender);
        }
        if (nyanLPStaked > 0) {
            require(maxNyanLPMint.add(nyanLPStaked) < 1500000000000000000000);
            _mint(msg.sender, nyanLPStaked);
            maxNyanLPMint = maxNyanLPMint.add(nyanLPStaked);
            //lock LP unstaking for 2 weeks
            NyanV2(nyan).lockNyanLP(msg.sender);
        }
        
        userClaimLock[msg.sender].hasClaimedNyan = true;
        nyanVersusClaimed(msg.sender);
    }
    
    receive() external payable {
        
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"nyanClaimStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nyan","type":"address"}],"name":"nyanContractsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"nyanVersusClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_contract","type":"address"}],"name":"predictionContractSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewards","type":"uint256"}],"name":"predictionRewarded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"versusLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rewardsContract","type":"address"}],"name":"versusRewardsContractsSet","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"claimAndLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNyanVersus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasNyanClaimStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isNyanEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNyanLPMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNyanMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nyan","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"predictionContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rewardPrediction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nyan","type":"address"}],"name":"setNyanContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"predict","type":"address"}],"name":"setPredictionContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewards","type":"address"}],"name":"setVersusRewardsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNyanClaim","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":"_recipient","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":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userClaimLock","outputs":[{"internalType":"uint256","name":"unlockBlock","type":"uint256"},{"internalType":"bool","name":"hasClaimedNyan","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"versusOld","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"versusRewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273d29fabc16cb57511844ae9cbda3cddf601e1489b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bf4a9a37ecfc21825011285222c36ab35de51f14600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c556000600d553480156200011a57600080fd5b506040518060400160405280600981526020017f5665727375732e637800000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f566572737573000000000000000000000000000000000000000000000000000081525081600390805190602001906200019f92919062000592565b508060049080519060200190620001b892919062000592565b506012600560006101000a81548160ff021916908360ff160217905550505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006101f49050620002523362000246670de0b6b3a7640000846200029b60201b62001ec41790919060201c565b6200032660201b60201c565b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000638565b600080831415620002b0576000905062000320565b6000828402905082848281620002c257fe5b04146200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180620030c56021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003de600083836200050460201b60201c565b620003fa816002546200050960201b62001f4a1790919060201c565b60028190555062000458816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200050960201b62001f4a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005d557805160ff191683800117855562000606565b8280016001018555821562000606579182015b8281111562000605578251825591602001919060010190620005e8565b5b50905062000615919062000619565b5090565b5b80821115620006345760008160009055506001016200061a565b5090565b612a7d80620006486000396000f3fe6080604052600436106101bb5760003560e01c8063843eb710116100ec578063ade310c81161008a578063dd62ed3e11610064578063dd62ed3e146109a1578063e0d015d814610a26578063e548b89914610a3d578063f39510d214610a8e576101c2565b8063ade310c8146108d4578063c6bbcaa5146108ff578063cbb128df14610950576101c2565b80639997d09f116100c65780639997d09f14610770578063a44e6212146107b1578063a457c2d7146107f2578063a9059cbb14610863576101c2565b8063843eb710146106885780638cc91f711461069f57806395d89b41146106e0576101c2565b80632ba7571e116101595780635b30116a116101335780635b30116a1461054e5780636275865c146105b557806370a08231146105e2578063735de9f714610647576101c2565b80632ba7571e14610484578063313ce567146104af57806339509351146104dd576101c2565b8063130dd42011610195578063130dd4201461030957806318160ddd14610377578063193bf2ee146103a257806323b872dd146103f3576101c2565b806306fdde03146101c75780630868cf2514610257578063095ea7b314610298576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610ae9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c610b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102a457600080fd5b506102f1600480360360408110156102bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bb1565b60405180821515815260200191505060405180910390f35b34801561031557600080fd5b506103586004803603602081101561032c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bcf565b6040518083815260200182151581526020019250505060405180910390f35b34801561038357600080fd5b5061038c610c00565b6040518082815260200191505060405180910390f35b3480156103ae57600080fd5b506103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c0a565b005b3480156103ff57600080fd5b5061046c6004803603606081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d5d565b60405180821515815260200191505060405180910390f35b34801561049057600080fd5b50610499610ec3565b6040518082815260200191505060405180910390f35b3480156104bb57600080fd5b506104c4610ec9565b604051808260ff16815260200191505060405180910390f35b3480156104e957600080fd5b506105366004803603604081101561050057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ee0565b60405180821515815260200191505060405180910390f35b34801561055a57600080fd5b5061059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f93565b60405180821515815260200191505060405180910390f35b3480156105c157600080fd5b506105ca6111a7565b60405180821515815260200191505060405180910390f35b3480156105ee57600080fd5b506106316004803603602081101561060557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ba565b6040518082815260200191505060405180910390f35b34801561065357600080fd5b5061065c611202565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069457600080fd5b5061069d611228565b005b3480156106ab57600080fd5b506106b46112ec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106ec57600080fd5b506106f5611312565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073557808201518184015260208101905061071a565b50505050905090810190601f1680156107625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561077c57600080fd5b506107856113b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107bd57600080fd5b506107c66113da565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107fe57600080fd5b5061084b6004803603604081101561081557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611400565b60405180821515815260200191505060405180910390f35b34801561086f57600080fd5b506108bc6004803603604081101561088657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114cd565b60405180821515815260200191505060405180910390f35b3480156108e057600080fd5b506108e96115db565b6040518082815260200191505060405180910390f35b34801561090b57600080fd5b5061094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e1565b005b34801561095c57600080fd5b5061099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cc565b005b3480156109ad57600080fd5b50610a10600480360360408110156109c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117b7565b6040518082815260200191505060405180910390f35b348015610a3257600080fd5b50610a3b61183e565b005b348015610a4957600080fd5b50610a8c60048036036020811015610a6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d1c565b005b348015610a9a57600080fd5b50610ae760048036036040811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e07565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bc5610bbe611fd2565b8484611fda565b6001905092915050565b600b6020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b6000600254905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c6457600080fd5b43600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610cb257600080fd5b610cc761b1bc43611f4a90919063ffffffff16565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055507fc1ffda5934a4fa42d5a1bcb60fbeb745b981a6dc70997f9e7052677d53d8a8e481604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600043600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610dad57600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610eaf576000821115610eae576005610e3a610e18610c00565b610e2c606486611ec490919063ffffffff16565b6121d190919063ffffffff16565b10610ead576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b5b610eba84848461221b565b90509392505050565b600d5481565b6000600560009054906101000a900460ff16905090565b6000610f89610eed611fd2565b84610f848560016000610efe611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b611fda565b6001905092915050565b6000806000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561102157600080fd5b505afa158015611035573d6000803e3d6000fd5b505050506040513d602081101561104b57600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110e957600080fd5b505afa1580156110fd573d6000803e3d6000fd5b505050506040513d602081101561111357600080fd5b81019080805190602001909291905050509050600082111561113457600192505b600081111561114257600192505b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561119c57600092505b829350505050919050565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461128257600080fd5b6001600e60006101000a81548160ff0219169083151502179055507f507c2b330c11e0fb63292da997ad01481ee145aa5c69109717078675fac8caba33604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113aa5780601f1061137f576101008083540402835291602001916113aa565b820191906000526020600020905b81548152906001019060200180831161138d57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114c361140d611fd2565b846114be85604051806060016040528060258152602001612a236025913960016000611437611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b611fda565b6001905092915050565b600043600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061151d57600080fd5b60008211156115c9576005611555611533610c00565b611547606486611ec490919063ffffffff16565b6121d190919063ffffffff16565b106115c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b6115d383836123b4565b905092915050565b600c5481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461163b57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f615c56982904f48da6b13e49f4a288baf92cff27fbe65bdf4c4e92b7535bc43981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172657600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcbc690ac4b0f1ab8cd56d5ab41ea22124538cc64cec6aabd7f6f6ea48d1e1e8581604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e60009054906101000a900460ff1661185757600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16156118b157600080fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d602081101561196657600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a0457600080fd5b505afa158015611a18573d6000803e3d6000fd5b505050506040513d6020811015611a2e57600080fd5b810190808051906020019092919050505090506000821115611b755768b2e4b323d9c5100000611a7c611a6b600a856121d190919063ffffffff16565b600c54611f4a90919063ffffffff16565b10611a8657600080fd5b611aa333611a9e600a856121d190919063ffffffff16565b6123d2565b611acb611aba600a846121d190919063ffffffff16565b600c54611f4a90919063ffffffff16565b600c81905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325c58be6336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611b5c57600080fd5b505af1158015611b70573d6000803e3d6000fd5b505050505b6000811115611c7057685150ae84a8cdf00000611b9d82600d54611f4a90919063ffffffff16565b10611ba757600080fd5b611bb133826123d2565b611bc681600d54611f4a90919063ffffffff16565b600d81905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378bef74c336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611c5757600080fd5b505af1158015611c6b573d6000803e3d6000fd5b505050505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507ffcaa437b96b2e59ebe8fc82eabcf33c1c1b293890e19153f7f16afc79cbf6c4333604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d7657600080fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbf4eed20d8b2a8b90711fc0a8b70aef4c38eeffa02feeade589dde4ecc00fa6981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6157600080fd5b611e6b82826123d2565b7f1d9b078f005da41858185cb5983c6666d3aa0465546ffd90bf357116b22b68478282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600080831415611ed75760009050611f44565b6000828402905082848281611ee857fe5b0414611f3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129916021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015611fc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129ff6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129496022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061221383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612599565b905092915050565b600061222884848461265f565b6122e984612234611fd2565b6122e4856040518060600160405280602881526020016129b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061229a611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b611fda565b600190509392505050565b60008383111582906123a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561236657808201518184015260208101905061234b565b50505050905090810190601f1680156123935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006123c86123c1611fd2565b848461265f565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61248160008383612920565b61249681600254611f4a90919063ffffffff16565b6002819055506124ed816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612645576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561260a5780820151818401526020810190506125ef565b50505050905090810190601f1680156126375780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161265157fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129da6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129266023913960400191505060405180910390fd5b612776838383612920565b6127e18160405180606001604052806026815260200161296b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612874816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204581931566ce052c553fce07ceec79971dadfcf19a3d36980ce270df637fe80664736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063843eb710116100ec578063ade310c81161008a578063dd62ed3e11610064578063dd62ed3e146109a1578063e0d015d814610a26578063e548b89914610a3d578063f39510d214610a8e576101c2565b8063ade310c8146108d4578063c6bbcaa5146108ff578063cbb128df14610950576101c2565b80639997d09f116100c65780639997d09f14610770578063a44e6212146107b1578063a457c2d7146107f2578063a9059cbb14610863576101c2565b8063843eb710146106885780638cc91f711461069f57806395d89b41146106e0576101c2565b80632ba7571e116101595780635b30116a116101335780635b30116a1461054e5780636275865c146105b557806370a08231146105e2578063735de9f714610647576101c2565b80632ba7571e14610484578063313ce567146104af57806339509351146104dd576101c2565b8063130dd42011610195578063130dd4201461030957806318160ddd14610377578063193bf2ee146103a257806323b872dd146103f3576101c2565b806306fdde03146101c75780630868cf2514610257578063095ea7b314610298576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc610ae9565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b5061026c610b8b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102a457600080fd5b506102f1600480360360408110156102bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bb1565b60405180821515815260200191505060405180910390f35b34801561031557600080fd5b506103586004803603602081101561032c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bcf565b6040518083815260200182151581526020019250505060405180910390f35b34801561038357600080fd5b5061038c610c00565b6040518082815260200191505060405180910390f35b3480156103ae57600080fd5b506103f1600480360360208110156103c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c0a565b005b3480156103ff57600080fd5b5061046c6004803603606081101561041657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d5d565b60405180821515815260200191505060405180910390f35b34801561049057600080fd5b50610499610ec3565b6040518082815260200191505060405180910390f35b3480156104bb57600080fd5b506104c4610ec9565b604051808260ff16815260200191505060405180910390f35b3480156104e957600080fd5b506105366004803603604081101561050057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ee0565b60405180821515815260200191505060405180910390f35b34801561055a57600080fd5b5061059d6004803603602081101561057157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f93565b60405180821515815260200191505060405180910390f35b3480156105c157600080fd5b506105ca6111a7565b60405180821515815260200191505060405180910390f35b3480156105ee57600080fd5b506106316004803603602081101561060557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ba565b6040518082815260200191505060405180910390f35b34801561065357600080fd5b5061065c611202565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069457600080fd5b5061069d611228565b005b3480156106ab57600080fd5b506106b46112ec565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106ec57600080fd5b506106f5611312565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073557808201518184015260208101905061071a565b50505050905090810190601f1680156107625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561077c57600080fd5b506107856113b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107bd57600080fd5b506107c66113da565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107fe57600080fd5b5061084b6004803603604081101561081557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611400565b60405180821515815260200191505060405180910390f35b34801561086f57600080fd5b506108bc6004803603604081101561088657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114cd565b60405180821515815260200191505060405180910390f35b3480156108e057600080fd5b506108e96115db565b6040518082815260200191505060405180910390f35b34801561090b57600080fd5b5061094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e1565b005b34801561095c57600080fd5b5061099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cc565b005b3480156109ad57600080fd5b50610a10600480360360408110156109c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117b7565b6040518082815260200191505060405180910390f35b348015610a3257600080fd5b50610a3b61183e565b005b348015610a4957600080fd5b50610a8c60048036036020811015610a6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d1c565b005b348015610a9a57600080fd5b50610ae760048036036040811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e07565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b815780601f10610b5657610100808354040283529160200191610b81565b820191906000526020600020905b815481529060010190602001808311610b6457829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bc5610bbe611fd2565b8484611fda565b6001905092915050565b600b6020528060005260406000206000915090508060000154908060010160009054906101000a900460ff16905082565b6000600254905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c6457600080fd5b43600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610cb257600080fd5b610cc761b1bc43611f4a90919063ffffffff16565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055507fc1ffda5934a4fa42d5a1bcb60fbeb745b981a6dc70997f9e7052677d53d8a8e481604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600043600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015410610dad57600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610eaf576000821115610eae576005610e3a610e18610c00565b610e2c606486611ec490919063ffffffff16565b6121d190919063ffffffff16565b10610ead576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b5b610eba84848461221b565b90509392505050565b600d5481565b6000600560009054906101000a900460ff16905090565b6000610f89610eed611fd2565b84610f848560016000610efe611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b611fda565b6001905092915050565b6000806000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561102157600080fd5b505afa158015611035573d6000803e3d6000fd5b505050506040513d602081101561104b57600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110e957600080fd5b505afa1580156110fd573d6000803e3d6000fd5b505050506040513d602081101561111357600080fd5b81019080805190602001909291905050509050600082111561113457600192505b600081111561114257600192505b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff161561119c57600092505b829350505050919050565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461128257600080fd5b6001600e60006101000a81548160ff0219169083151502179055507f507c2b330c11e0fb63292da997ad01481ee145aa5c69109717078675fac8caba33604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113aa5780601f1061137f576101008083540402835291602001916113aa565b820191906000526020600020905b81548152906001019060200180831161138d57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114c361140d611fd2565b846114be85604051806060016040528060258152602001612a236025913960016000611437611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b611fda565b6001905092915050565b600043600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541061151d57600080fd5b60008211156115c9576005611555611533610c00565b611547606486611ec490919063ffffffff16565b6121d190919063ffffffff16565b106115c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f596f752063616e2774206f776e2074686174206d75636820566572737573000081525060200191505060405180910390fd5b5b6115d383836123b4565b905092915050565b600c5481565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461163b57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f615c56982904f48da6b13e49f4a288baf92cff27fbe65bdf4c4e92b7535bc43981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172657600080fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcbc690ac4b0f1ab8cd56d5ab41ea22124538cc64cec6aabd7f6f6ea48d1e1e8581604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e60009054906101000a900460ff1661185757600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16156118b157600080fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d602081101561196657600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634baadd47336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a0457600080fd5b505afa158015611a18573d6000803e3d6000fd5b505050506040513d6020811015611a2e57600080fd5b810190808051906020019092919050505090506000821115611b755768b2e4b323d9c5100000611a7c611a6b600a856121d190919063ffffffff16565b600c54611f4a90919063ffffffff16565b10611a8657600080fd5b611aa333611a9e600a856121d190919063ffffffff16565b6123d2565b611acb611aba600a846121d190919063ffffffff16565b600c54611f4a90919063ffffffff16565b600c81905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325c58be6336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611b5c57600080fd5b505af1158015611b70573d6000803e3d6000fd5b505050505b6000811115611c7057685150ae84a8cdf00000611b9d82600d54611f4a90919063ffffffff16565b10611ba757600080fd5b611bb133826123d2565b611bc681600d54611f4a90919063ffffffff16565b600d81905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378bef74c336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b158015611c5757600080fd5b505af1158015611c6b573d6000803e3d6000fd5b505050505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507ffcaa437b96b2e59ebe8fc82eabcf33c1c1b293890e19153f7f16afc79cbf6c4333604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d7657600080fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbf4eed20d8b2a8b90711fc0a8b70aef4c38eeffa02feeade589dde4ecc00fa6981604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6157600080fd5b611e6b82826123d2565b7f1d9b078f005da41858185cb5983c6666d3aa0465546ffd90bf357116b22b68478282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600080831415611ed75760009050611f44565b6000828402905082848281611ee857fe5b0414611f3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806129916021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015611fc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612060576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129ff6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129496022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061221383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612599565b905092915050565b600061222884848461265f565b6122e984612234611fd2565b6122e4856040518060600160405280602881526020016129b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061229a611fd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b611fda565b600190509392505050565b60008383111582906123a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561236657808201518184015260208101905061234b565b50505050905090810190601f1680156123935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006123c86123c1611fd2565b848461265f565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61248160008383612920565b61249681600254611f4a90919063ffffffff16565b6002819055506124ed816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290612645576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561260a5780820151818401526020810190506125ef565b50505050905090810190601f1680156126375780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161265157fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806129da6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806129266023913960400191505060405180910390fd5b612776838383612920565b6127e18160405180606001604052806026815260200161296b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122f49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612874816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204581931566ce052c553fce07ceec79971dadfcf19a3d36980ce270df637fe80664736f6c634300060c0033

Deployed Bytecode Sourcemap

32448:4981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23357:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32762:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25463:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32961:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;24432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34499:266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35147:441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33055:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24284:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26844:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35773:530;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33094:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24595:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32682:73;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35600:161;;;;;;;;;;;;;:::i;:::-;;32797:64;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23559:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32566:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32606:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27565:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34777:358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33018:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34087:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33714:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25165:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36315:1054;;;;;;;;;;;;;:::i;:::-;;33918:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34286:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23357:83;23394:13;23427:5;23420:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23357:83;:::o;32762:28::-;;;;;;;;;;;;;:::o;25463:169::-;25546:4;25563:39;25572:12;:10;:12::i;:::-;25586:7;25595:6;25563:8;:39::i;:::-;25620:4;25613:11;;25463:169;;;;:::o;32961:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24432:100::-;24485:7;24512:12;;24505:19;;24432:100;:::o;34499:266::-;34575:13;;;;;;;;;;;34561:27;;:10;:27;;;34553:36;;;;;;34642:12;34608:13;:19;34622:4;34608:19;;;;;;;;;;;;;;;:31;;;:46;34600:55;;;;;;34700:23;34717:5;34700:12;:16;;:23;;;;:::i;:::-;34666:13;:19;34680:4;34666:19;;;;;;;;;;;;;;;:31;;:57;;;;34739:18;34752:4;34739:18;;;;;;;;;;;;;;;;;;;;34499:266;:::o;35147:441::-;35247:4;35309:12;35272:13;:22;35286:7;35272:22;;;;;;;;;;;;;;;:34;;;:49;35264:58;;;;;;35348:5;;;;;;;;;;;35337:16;;:7;:16;;;35333:182;;35384:1;35374:7;:11;35370:134;;;35452:1;35414:35;35435:13;:11;:13::i;:::-;35414:16;35426:3;35414:7;:11;;:16;;;;:::i;:::-;:20;;:35;;;;:::i;:::-;:39;35406:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35370:134;35333:182;35532:48;35551:7;35560:10;35572:7;35532:18;:48::i;:::-;35525:55;;35147:441;;;;;:::o;33055:32::-;;;;:::o;24284:83::-;24325:5;24350:9;;;;;;;;;;;24343:16;;24284:83;:::o;26844:218::-;26932:4;26949:83;26958:12;:10;:12::i;:::-;26972:7;26981:50;27020:10;26981:11;:25;26993:12;:10;:12::i;:::-;26981:25;;;;;;;;;;;;;;;:34;27007:7;26981:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26949:8;:83::i;:::-;27050:4;27043:11;;26844:218;;;;:::o;35773:530::-;35831:4;35848:15;35874:16;35899:4;;;;;;;;;;;35893:21;;;35915:4;35893:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35874:46;;35931:20;35961:4;;;;;;;;;;;35954:30;;;35985:4;35954:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35931:59;;36026:1;36015:8;:12;36011:76;;;36057:4;36044:17;;36011:76;36116:1;36101:12;:16;36097:66;;;36147:4;36134:17;;36097:66;36187:13;:19;36201:4;36187:19;;;;;;;;;;;;;;;:34;;;;;;;;;;;;36183:85;;;36251:5;36238:18;;36183:85;36285:10;36278:17;;;;;35773:530;;;:::o;33094:31::-;;;;;;;;;;;;;:::o;24595:119::-;24661:7;24688:9;:18;24698:7;24688:18;;;;;;;;;;;;;;;;24681:25;;24595:119;;;:::o;32682:73::-;;;;;;;;;;;;;:::o;35600:161::-;35666:5;;;;;;;;;;;35652:19;;:10;:19;;;35644:28;;;;;;35705:4;35683:19;;:26;;;;;;;;;;;;;;;;;;35725:28;35742:10;35725:28;;;;;;;;;;;;;;;;;;;;35600:161::o;32797:64::-;;;;;;;;;;;;;:::o;23559:87::-;23598:13;23631:7;23624:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23559:87;:::o;32566:33::-;;;;;;;;;;;;;:::o;32606:69::-;;;;;;;;;;;;;:::o;27565:269::-;27658:4;27675:129;27684:12;:10;:12::i;:::-;27698:7;27707:96;27746:15;27707:96;;;;;;;;;;;;;;;;;:11;:25;27719:12;:10;:12::i;:::-;27707:25;;;;;;;;;;;;;;;:34;27733:7;27707:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27675:8;:129::i;:::-;27822:4;27815:11;;27565:269;;;;:::o;34777:358::-;34856:4;34925:12;34885:13;:25;34899:10;34885:25;;;;;;;;;;;;;;;:37;;;:52;34877:61;;;;;;34963:1;34953:7;:11;34949:126;;;35027:1;34989:35;35010:13;:11;:13::i;:::-;34989:16;35001:3;34989:7;:11;;:16;;;;:::i;:::-;:20;;:35;;;;:::i;:::-;:39;34981:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34949:126;35092:35;35107:10;35119:7;35092:14;:35::i;:::-;35085:42;;34777:358;;;;:::o;33018:30::-;;;;:::o;34087:187::-;34175:5;;;;;;;;;;;34161:19;;:10;:19;;;34153:28;;;;;;34213:7;34192:18;;:28;;;;;;;;;;;;;;;;;;34236:30;34258:7;34236:30;;;;;;;;;;;;;;;;;;;;34087:187;:::o;33714:192::-;33806:5;;;;;;;;;;;33792:19;;:10;:19;;;33784:28;;;;;;33839:8;33823:13;;:24;;;;;;;;;;;;;;;;;;33863:35;33889:8;33863:35;;;;;;;;;;;;;;;;;;;;33714:192;:::o;25165:151::-;25254:7;25281:11;:18;25293:5;25281:18;;;;;;;;;;;;;;;:27;25300:7;25281:27;;;;;;;;;;;;;;;;25274:34;;25165:151;;;;:::o;36315:1054::-;36368:19;;;;;;;;;;;36360:28;;;;;;36408:13;:25;36422:10;36408:25;;;;;;;;;;;;;;;:40;;;;;;;;;;;;36407:41;36399:50;;;;;;36460:16;36485:4;;;;;;;;;;;36479:21;;;36501:10;36479:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36460:52;;36523:20;36553:4;;;;;;;;;;;36546:30;;;36577:10;36546:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36523:65;;36624:1;36613:8;:12;36609:318;;;36686:22;36650:33;36666:16;36679:2;36666:8;:12;;:16;;;;:::i;:::-;36650:11;;:15;;:33;;;;:::i;:::-;:58;36642:67;;;;;;36724:35;36730:10;36742:16;36755:2;36742:8;:12;;:16;;;;:::i;:::-;36724:5;:35::i;:::-;36788:33;36804:16;36817:2;36804:8;:12;;:16;;;;:::i;:::-;36788:11;;:15;;:33;;;;:::i;:::-;36774:11;:47;;;;36889:4;;;;;;;;;;;36882:21;;;36904:10;36882:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36609:318;36956:1;36941:12;:16;36937:317;;;37016:22;36982:31;37000:12;36982:13;;:17;;:31;;;;:::i;:::-;:56;36974:65;;;;;;37054:31;37060:10;37072:12;37054:5;:31::i;:::-;37116;37134:12;37116:13;;:17;;:31;;;;:::i;:::-;37100:13;:47;;;;37214:4;;;;;;;;;;;37207:23;;;37231:10;37207:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36937:317;37317:4;37274:13;:25;37288:10;37274:25;;;;;;;;;;;;;;;:40;;;:47;;;;;;;;;;;;;;;;;;37332:29;37350:10;37332:29;;;;;;;;;;;;;;;;;;;;36315:1054;;:::o;33918:157::-;33999:5;;;;;;;;;;;33985:19;;:10;:19;;;33977:28;;;;;;34023:5;34016:4;;:12;;;;;;;;;;;;;;;;;;34044:23;34061:5;34044:23;;;;;;;;;;;;;;;;;;;;33918:157;:::o;34286:201::-;34382:18;;;;;;;;;;;34368:32;;:10;:32;;;34360:41;;;;;;34412:19;34418:4;34424:6;34412:5;:19::i;:::-;34447:32;34466:4;34472:6;34447:32;;;;;;;;;;;;;;;;;;;;;;;;;;34286:201;;:::o;14189:471::-;14247:7;14497:1;14492;:6;14488:47;;;14522:1;14515:8;;;;14488:47;14547:9;14563:1;14559;:5;14547:17;;14592:1;14587;14583;:5;;;;;;:10;14575:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14651:1;14644:8;;;14189:471;;;;;:::o;12835:181::-;12893:7;12913:9;12929:1;12925;:5;12913:17;;12954:1;12949;:6;;12941:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13007:1;13000:8;;;12835:181;;;;:::o;20806:106::-;20859:15;20894:10;20887:17;;20806:106;:::o;30712:346::-;30831:1;30814:19;;:5;:19;;;;30806:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30912:1;30893:21;;:7;:21;;;;30885:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30996:6;30966:11;:18;30978:5;30966:18;;;;;;;;;;;;;;;:27;30985:7;30966:27;;;;;;;;;;;;;;;:36;;;;31034:7;31018:32;;31027:5;31018:32;;;31043:6;31018:32;;;;;;;;;;;;;;;;;;30712:346;;;:::o;15136:132::-;15194:7;15221:39;15225:1;15228;15221:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;15214:46;;15136:132;;;;:::o;26114:321::-;26220:4;26237:36;26247:6;26255:9;26266:6;26237:9;:36::i;:::-;26284:121;26293:6;26301:12;:10;:12::i;:::-;26315:89;26353:6;26315:89;;;;;;;;;;;;;;;;;:11;:19;26327:6;26315:19;;;;;;;;;;;;;;;:33;26335:12;:10;:12::i;:::-;26315:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26284:8;:121::i;:::-;26423:4;26416:11;;26114:321;;;;;:::o;13738:192::-;13824:7;13857:1;13852;:6;;13860:12;13844:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13884:9;13900:1;13896;:5;13884:17;;13921:1;13914:8;;;13738:192;;;;;:::o;24927:175::-;25013:4;25030:42;25040:12;:10;:12::i;:::-;25054:9;25065:6;25030:9;:42::i;:::-;25090:4;25083:11;;24927:175;;;;:::o;29145:378::-;29248:1;29229:21;;:7;:21;;;;29221:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29299:49;29328:1;29332:7;29341:6;29299:20;:49::i;:::-;29376:24;29393:6;29376:12;;:16;;:24;;;;:::i;:::-;29361:12;:39;;;;29432:30;29455:6;29432:9;:18;29442:7;29432:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;29411:9;:18;29421:7;29411:18;;;;;;;;;;;;;;;:51;;;;29499:7;29478:37;;29495:1;29478:37;;;29508:6;29478:37;;;;;;;;;;;;;;;;;;29145:378;;:::o;15764:278::-;15850:7;15882:1;15878;:5;15885:12;15870:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15909:9;15925:1;15921;:5;;;;;;15909:17;;16033:1;16026:8;;;15764:278;;;;;:::o;28324:539::-;28448:1;28430:20;;:6;:20;;;;28422:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532:1;28511:23;;:9;:23;;;;28503:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28587:47;28608:6;28616:9;28627:6;28587:20;:47::i;:::-;28667:71;28689:6;28667:71;;;;;;;;;;;;;;;;;:9;:17;28677:6;28667:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28647:9;:17;28657:6;28647:17;;;;;;;;;;;;;;;:91;;;;28772:32;28797:6;28772:9;:20;28782:9;28772:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;28749:9;:20;28759:9;28749:20;;;;;;;;;;;;;;;:55;;;;28837:9;28820:35;;28829:6;28820:35;;;28848:6;28820:35;;;;;;;;;;;;;;;;;;28324:539;;;:::o;32083:92::-;;;;:::o

Swarm Source

ipfs://4581931566ce052c553fce07ceec79971dadfcf19a3d36980ce270df637fe806
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.