ETH Price: $3,066.81 (+2.74%)
Gas: 7 Gwei

Token

Parsiq Token (PRQ)
 

Overview

Max Total Supply

310,256,872 PRQ

Holders

16,052 (0.00%)

Total Transfers

-

Market

Price

$0.13 @ 0.000044 ETH (+4.79%)

Onchain Market Cap

$41,817,351.98

Circulating Supply Market Cap

$35,225,406.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

A Blockchain monitoring and compliance platform.

Market

Volume (24H):$575,849.00
Market Capitalization:$35,225,406.00
Circulating Supply:260,256,872.00 PRQ
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Coinbase Exchange
PRQ-USD$0.1346
0.0000439 Eth
$237,854.00
1,767,115.600 PRQ
41.1783%
2
EXMO
PRQ-USDT$0.1348
0.0000440 Eth
$82,386.00
611,314.814 PRQ
14.2452%
3
OKX
PRQ-USDT$0.1344
0.0000438 Eth
$70,188.00
530,380.566 PRQ
12.3592%
4
EXMO
PRQ-BTC$0.1345
0.0000439 Eth
$67,509.00
501,774.283 PRQ
11.6926%
5
Gate.io
PRQ-USDT$0.1344
0.0000438 Eth
$41,044.00
309,271.112 PRQ
7.2068%
6
KuCoin
PRQ-USDT$0.1349
0.0000440 Eth
$39,356.00
291,711.684 PRQ
6.7976%
7
Bilaxy
PRQ-ETH$0.1227
0.0000400 Eth
$33,416.00
272,424.200 PRQ
6.3482%
8
MEXC
PRQ-USDT$0.146
0.0000476 Eth
$27,613.00
189,137.940 PRQ
4.4074%
9
Uniswap V3 (Ethereum)
0X362BC847A3A9637D3AF6624EEC853618A43ED7D2-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.1339
0.0000437 Eth
$14,720.64
105,846.969 0X362BC847A3A9637D3AF6624EEC853618A43ED7D2
2.4665%
10
LATOKEN
PRQ-USDT$0.1352
0.0000441 Eth
$11,158.62
82,562.484 PRQ
1.9239%
11
Crypto.com Exchange
PRQ-USD$0.1347
0.0000439 Eth
$5,274.18
39,167.000 PRQ
0.9127%
12
CoinEx
PRQ-USDT$0.1352
0.0000441 Eth
$2,934.89
22,041.229 PRQ
0.5136%
13
Uniswap V2 (Ethereum)
0X362BC847A3A9637D3AF6624EEC853618A43ED7D2-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.1346
0.0000439 Eth
$2,798.91
20,478.334 0X362BC847A3A9637D3AF6624EEC853618A43ED7D2
0.4772%
14
HTX
PRQ-USDT$0.1343
0.0000438 Eth
$692.34
5,149.090 PRQ
0.1200%
15
Pancakeswap V3 (BSC)
0XD21D29B38374528675C34936BF7D5DD693D2A577-0X55D398326F99059FF775485246999027B3197955$0.1378
0.0000450 Eth
$617.52
4,589.760 0XD21D29B38374528675C34936BF7D5DD693D2A577
0.1070%
16
Coinmetro
PRQ-EUR$0.136
0.0000444 Eth
$291.44
2,143.437 PRQ
0.0499%
17
BTSE
PRQ-USD$0.1348
0.0000440 Eth
$175.59
1,302.566 PRQ
0.0304%
18
BTSE
PRQ-USDT$0.134
0.0000437 Eth
$149.87
1,118.777 PRQ
0.0261%
19
Poloniex
PRQ-USDT$0.1403
0.0000457 Eth
$1.94
13.816 PRQ
0.0003%
20
Coinmetro
PRQ-USD$0.1359
0.0000443 Eth
$0.00
0.000 PRQ
0.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
ParsiqToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

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



/**
 * @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 in 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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

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

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

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

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


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

contract ParsiqToken is IERC20 {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 constant private MAX_UINT256 = ~uint256(0);
    string constant public name = "Parsiq Token";
    string constant public symbol = "PRQ";
    uint8 constant public decimals = 18;

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

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint256) public nonces;
    
    mapping(address => uint256) public reviewPeriods;
    mapping(address => uint256) public decisionPeriods;
    uint256 public reviewPeriod = 86400; // 1 day
    uint256 public decisionPeriod = 86400; // 1 day after review period
    address public governanceBoard;
    address public pendingGovernanceBoard;
    bool public paused = true;

    event Paused();
    event Unpaused();
    event Reviewing(address indexed account, uint256 reviewUntil, uint256 decideUntil);
    event Resolved(address indexed account);
    event ReviewPeriodChanged(uint256 reviewPeriod);
    event DecisionPeriodChanged(uint256 decisionPeriod);
    event GovernanceBoardChanged(address indexed from, address indexed to);
    event GovernedTransfer(address indexed from, address indexed to, uint256 amount);

    modifier whenNotPaused() {
        require(!paused || msg.sender == governanceBoard, "Pausable: paused");
        _;
    }

    modifier onlyGovernanceBoard() {
        require(msg.sender == governanceBoard, "Sender is not governance board");
        _;
    }

    modifier onlyPendingGovernanceBoard() {
        require(msg.sender == pendingGovernanceBoard, "Sender is not the pending governance board");
        _;
    }

    modifier onlyResolved(address account) {
        require(decisionPeriods[account] < block.timestamp, "Account is being reviewed");
        _;
    }

    constructor () public {
        _setGovernanceBoard(msg.sender);
        _totalSupply = 500000000e18; // 500 000 000 tokens

        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);

        uint256 chainId;
        assembly {
            chainId := chainid()
        }

        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                keccak256(bytes(name)),
                keccak256(bytes('1')),
                chainId,
                address(this)
            )
        );
    }

    function pause() public onlyGovernanceBoard {
        require(!paused, "Pausable: paused");
        paused = true;
        emit Paused();
    }

    function unpause() public onlyGovernanceBoard {
        require(paused, "Pausable: unpaused");
        paused = false;
        emit Unpaused();
    }

    function review(address account) public onlyGovernanceBoard {
        _review(account);
    }

    function resolve(address account) public onlyGovernanceBoard {
        _resolve(account);
    }

    function electGovernanceBoard(address newGovernanceBoard) public onlyGovernanceBoard {
        pendingGovernanceBoard = newGovernanceBoard;
    }

    function takeGovernance() public onlyPendingGovernanceBoard {
        _setGovernanceBoard(pendingGovernanceBoard);
        pendingGovernanceBoard = address(0);
    }

    function _setGovernanceBoard(address newGovernanceBoard) internal {
        emit GovernanceBoardChanged(governanceBoard, newGovernanceBoard);
        governanceBoard = newGovernanceBoard;
    }

    /**
     * @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 override 
        onlyResolved(msg.sender)
        onlyResolved(recipient)
        whenNotPaused
        returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view 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 override
        onlyResolved(msg.sender)
        onlyResolved(spender)
        whenNotPaused
        returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override
        onlyResolved(msg.sender)
        onlyResolved(sender)
        onlyResolved(recipient)
        whenNotPaused
        returns (bool) {
        _transfer(sender, recipient, amount);
        if (_allowances[sender][msg.sender] < MAX_UINT256) { // treat MAX_UINT256 approve as infinite approval
            _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        }
        return true;
    }

    /**
     * @dev Allows governance board to transfer funds.
     *
     * This allows to transfer tokens after review period have elapsed, 
     * but before decision period is expired. So, basically governanceBoard have a time-window
     * to move tokens from reviewed account. 
     * After decision period have been expired remaining tokens are unlocked.
     */
    function governedTransfer(address from, address to, uint256 value) public onlyGovernanceBoard         
        returns (bool) {
        require(block.timestamp >  reviewPeriods[from], "Review period is not elapsed");
        require(block.timestamp <= decisionPeriods[from], "Decision period expired");

        _transfer(from, to, value);
        emit GovernedTransfer(from, to, value);
        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 
        onlyResolved(msg.sender)
        onlyResolved(spender)
        whenNotPaused
        returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public 
        onlyResolved(msg.sender)
        onlyResolved(spender)
        whenNotPaused
        returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

    function transferMany(address[] calldata recipients, uint256[] calldata amounts)
        onlyResolved(msg.sender)
        whenNotPaused
        external {
        require(recipients.length == amounts.length, "ParsiqToken: Wrong array length");

        uint256 total = 0;
        for (uint256 i = 0; i < amounts.length; i++) {
            total = total.add(amounts[i]);
        }

        _balances[msg.sender] = _balances[msg.sender].sub(total, "ERC20: transfer amount exceeds balance");

        for (uint256 i = 0; i < recipients.length; i++) {
            address recipient = recipients[i];
            uint256 amount = amounts[i];
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(decisionPeriods[recipient] < block.timestamp, "Account is being reviewed");

            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(msg.sender, recipient, amount);
        }
    }

    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external {
        // Need to unwrap modifiers to eliminate Stack too deep error
        require(decisionPeriods[owner] < block.timestamp, "Account is being reviewed");
        require(decisionPeriods[spender] < block.timestamp, "Account is being reviewed");
        require(!paused || msg.sender == governanceBoard, "Pausable: paused");
        require(deadline >= block.timestamp, 'ParsiqToken: EXPIRED');    
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );

        address recoveredAddress = ecrecover(digest, v, r, s);

        require(recoveredAddress != address(0) && recoveredAddress == owner, 'ParsiqToken: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }

    function setReviewPeriod(uint256 _reviewPeriod) public onlyGovernanceBoard {
        reviewPeriod = _reviewPeriod;
        emit ReviewPeriodChanged(reviewPeriod);
    }

    function setDecisionPeriod(uint256 _decisionPeriod) public onlyGovernanceBoard {
        decisionPeriod = _decisionPeriod;
        emit DecisionPeriodChanged(decisionPeriod);
    }

    function recoverTokens(IERC20 token, address to, uint256 amount) public onlyGovernanceBoard {
        uint256 balance = token.balanceOf(address(this));
        require(balance >= amount, "ERC20: Insufficient balance");
        token.safeTransfer(to, amount);
    }

    function _review(address account) internal {
        uint256 reviewUntil = block.timestamp.add(reviewPeriod);
        uint256 decideUntil = block.timestamp.add(reviewPeriod.add(decisionPeriod));
        reviewPeriods[account] = reviewUntil;
        decisionPeriods[account] = decideUntil;
        emit Reviewing(account, reviewUntil, decideUntil);
    }

    function _resolve(address account) internal {
        reviewPeriods[account] = 0;
        decisionPeriods[account] = 0;
        emit Resolved(account);
    }
}

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":false,"internalType":"uint256","name":"decisionPeriod","type":"uint256"}],"name":"DecisionPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"GovernanceBoardChanged","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":"amount","type":"uint256"}],"name":"GovernedTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Resolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reviewPeriod","type":"uint256"}],"name":"ReviewPeriodChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"reviewUntil","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"decideUntil","type":"uint256"}],"name":"Reviewing","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":[],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decisionPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"decisionPeriods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGovernanceBoard","type":"address"}],"name":"electGovernanceBoard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governanceBoard","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"governedTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernanceBoard","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"review","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reviewPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reviewPeriods","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_decisionPeriod","type":"uint256"}],"name":"setDecisionPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reviewPeriod","type":"uint256"}],"name":"setReviewPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeGovernance","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620151806007819055600855600a805460ff60a01b1916600160a01b17905534801561002f57600080fd5b506100393361016a565b6b019d971e4fe8401e74000000600281905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3604080518082018252600c81526b2830b939b4b8902a37b5b2b760a11b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fc3ae2895041de5821edcd23015c5aae210712b8574f915aa12823ff27a7d4fd8818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c090910190925281519101206003556101c6565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b612916806101d56000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106e4578063e72cfcb814610712578063ee7429d51461073857610226565b8063b7fc6612146105d1578063d505accf1461069357610226565b8063a457c2d71461054b578063a9059cbb14610577578063b48edbb4146105a3578063b706dc73146105c957610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b4114610526578063a1a586b31461052e57610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b61023361075e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108c4565b60408051918252519081900360200190f35b61030e6108d6565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108dc565b61030e610ae6565b61036e610b0a565b6040805160ff9092168252519081900360200190f35b61030e610b0f565b610394610b15565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b24565b61030e610c70565b6103ec610c76565b005b6103ec6004803603602081101561040457600080fd5b5035610d6b565b6103ec610e31565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610eae565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f19565b6102d46110b4565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110c4565b61030e600480360360208110156104c357600080fd5b50356001600160a01b031661120f565b61030e61122a565b6103ec600480360360208110156104f157600080fd5b5035611230565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112ca565b6103ec6112dc565b6102336113cb565b6103ec6004803603602081101561054457600080fd5b5035611404565b6102d46004803603604081101561056157600080fd5b506001600160a01b03813516906020013561149e565b6102d46004803603604081101561058d57600080fd5b506001600160a01b038135169060200135611602565b6103ec600480360360208110156105b957600080fd5b50356001600160a01b0316611724565b6103946117b2565b6103ec600480360360408110156105e757600080fd5b81019060208101813564010000000081111561060257600080fd5b82018360208201111561061457600080fd5b8035906020019184602083028401116401000000008311171561063657600080fd5b91939092909160208101903564010000000081111561065457600080fd5b82018360208201111561066657600080fd5b8035906020019184602083028401116401000000008311171561068857600080fd5b5090925090506117c1565b6103ec600480360360e08110156106a957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611aba565b61030e600480360360408110156106fa57600080fd5b506001600160a01b0381358116916020013516611dfd565b61030e6004803603602081101561072857600080fd5b50356001600160a01b0316611e28565b6103ec6004803603602081101561074e57600080fd5b50356001600160a01b0316611e3a565b6040518060400160405280600c81526020017f50617273697120546f6b656e000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107eb576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610847576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086a57506009546001600160a01b031633145b6108ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611ea2565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610930576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152600660205260409020548590421161098c576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e8576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0b57506009546001600160a01b031633145b610a4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a5a878787611f8e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad957610ad98733610ad488604051806060016040528060288152602001612800602891396001600160a01b038d16600090815260016020908152604080832033845290915290205491906120de565b611ea2565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b78576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bd4576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bf757506009546001600160a01b031633145b610c3b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b991908790610ad49088612175565b60075481565b6009546001600160a01b03163314610cd5576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d33576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610dbc576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610ddf57506009546001600160a01b031633145b610e23576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e2d33836121d6565b5050565b600a546001600160a01b03163314610e7a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127d6602a913960400191505060405180910390fd5b600a54610e8f906001600160a01b03166122c6565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f0d576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f168161232f565b50565b6009546000906001600160a01b03163314610f7b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fe7576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054421115611054576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b61105f848484611f8e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060019392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561117257600080fd5b505afa158015611186573d6000803e3d6000fd5b505050506040513d602081101561119c57600080fd5b50519050818110156111f5576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112096001600160a01b0385168484612380565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b0316331461128f576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b0316331461133b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff161561138d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6040518060400160405280600381526020017f505251000000000000000000000000000000000000000000000000000000000081525081565b6009546001600160a01b03163314611463576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114f2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161154e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061157157506009546001600160a01b031633145b6115b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b93386610ad4876040518060600160405280602581526020016128bc602591393360009081526001602090815260408083206001600160a01b038f16845290915290205491906120de565b336000818152600660205260408120549091904211611656576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054849042116116b2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806116d557506009546001600160a01b031633145b611719576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611f8e565b6009546001600160a01b03163314611783576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b336000818152600660205260409020544211611812576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061183557506009546001600160a01b031633145b611879576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8382146118cd576040805162461bcd60e51b815260206004820152601f60248201527f506172736971546f6b656e3a2057726f6e67206172726179206c656e67746800604482015290519081900360640190fd5b6000805b83811015611908576118fe8585838181106118e857fe5b905060200201358361217590919063ffffffff16565b91506001016118d1565b5061193d816040518060600160405280602681526020016127b0602691393360009081526020819052604090205491906120de565b336000908152602081905260408120919091555b85811015611ab157600087878381811061196757fe5b905060200201356001600160a01b03169050600086868481811061198757fe5b60200291909101359150506001600160a01b0382166119d75760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b6001600160a01b0382166000908152600660205260409020544211611a31576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a549082612175565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611951565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611b14576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b6e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b9157506009546001600160a01b031633145b611bd5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611c2a576040805162461bcd60e51b815260206004820152601460248201527f506172736971546f6b656e3a2045585049524544000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d60573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d965750886001600160a01b0316816001600160a01b0316145b611de7576040805162461bcd60e51b815260206004820152601e60248201527f506172736971546f6b656e3a20494e56414c49445f5349474e41545552450000604482015290519081900360640190fd5b611df2898989611ea2565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e99576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f1681612405565b6001600160a01b038316611ee75760405162461bcd60e51b815260040180806020018281038252602481526020018061286e6024913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b815260040180806020018281038252602281526020018061276e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611fd35760405162461bcd60e51b81526004018080602001828103825260258152602001806128496025913960400191505060405180910390fd5b6001600160a01b0382166120185760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b612055816040518060600160405280602681526020016127b0602691396001600160a01b03861660009081526020819052604090205491906120de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120849082612175565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561216d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213257818101518382015260200161211a565b50505050905090810190601f16801561215f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156121cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661221b5760405162461bcd60e51b81526004018080602001828103825260218152602001806128286021913960400191505060405180910390fd5b6122588160405180606001604052806022815260200161274c602291396001600160a01b03851660009081526020819052604090205491906120de565b6001600160a01b03831660009081526020819052604090205560025461227e90826124ab565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526124009084906124ed565b505050565b600061241c6007544261217590919063ffffffff16565b9050600061244161243a60085460075461217590919063ffffffff16565b4290612175565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b60006121cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b6060612542826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661259e9092919063ffffffff16565b8051909150156124005780806020019051602081101561256157600080fd5b50516124005760405162461bcd60e51b815260040180806020018281038252602a815260200180612892602a913960400191505060405180910390fd5b60606125ad84846000856125b5565b949350505050565b60606125c085612722565b612611576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126505780518252601f199092019160209182019101612631565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509150915081156126cb5791506125ad9050565b8051156126db5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561213257818101518382015260200161211a565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006e869dc2a4196b967f538eb79311534b5849a2d657bc73a970f2f252fe5a7d164736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106e4578063e72cfcb814610712578063ee7429d51461073857610226565b8063b7fc6612146105d1578063d505accf1461069357610226565b8063a457c2d71461054b578063a9059cbb14610577578063b48edbb4146105a3578063b706dc73146105c957610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b4114610526578063a1a586b31461052e57610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b61023361075e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108c4565b60408051918252519081900360200190f35b61030e6108d6565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108dc565b61030e610ae6565b61036e610b0a565b6040805160ff9092168252519081900360200190f35b61030e610b0f565b610394610b15565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b24565b61030e610c70565b6103ec610c76565b005b6103ec6004803603602081101561040457600080fd5b5035610d6b565b6103ec610e31565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610eae565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f19565b6102d46110b4565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110c4565b61030e600480360360208110156104c357600080fd5b50356001600160a01b031661120f565b61030e61122a565b6103ec600480360360208110156104f157600080fd5b5035611230565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112ca565b6103ec6112dc565b6102336113cb565b6103ec6004803603602081101561054457600080fd5b5035611404565b6102d46004803603604081101561056157600080fd5b506001600160a01b03813516906020013561149e565b6102d46004803603604081101561058d57600080fd5b506001600160a01b038135169060200135611602565b6103ec600480360360208110156105b957600080fd5b50356001600160a01b0316611724565b6103946117b2565b6103ec600480360360408110156105e757600080fd5b81019060208101813564010000000081111561060257600080fd5b82018360208201111561061457600080fd5b8035906020019184602083028401116401000000008311171561063657600080fd5b91939092909160208101903564010000000081111561065457600080fd5b82018360208201111561066657600080fd5b8035906020019184602083028401116401000000008311171561068857600080fd5b5090925090506117c1565b6103ec600480360360e08110156106a957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611aba565b61030e600480360360408110156106fa57600080fd5b506001600160a01b0381358116916020013516611dfd565b61030e6004803603602081101561072857600080fd5b50356001600160a01b0316611e28565b6103ec6004803603602081101561074e57600080fd5b50356001600160a01b0316611e3a565b6040518060400160405280600c81526020017f50617273697120546f6b656e000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107eb576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610847576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086a57506009546001600160a01b031633145b6108ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611ea2565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610930576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152600660205260409020548590421161098c576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e8576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0b57506009546001600160a01b031633145b610a4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a5a878787611f8e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad957610ad98733610ad488604051806060016040528060288152602001612800602891396001600160a01b038d16600090815260016020908152604080832033845290915290205491906120de565b611ea2565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b78576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bd4576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bf757506009546001600160a01b031633145b610c3b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b991908790610ad49088612175565b60075481565b6009546001600160a01b03163314610cd5576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d33576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610dbc576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610ddf57506009546001600160a01b031633145b610e23576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e2d33836121d6565b5050565b600a546001600160a01b03163314610e7a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127d6602a913960400191505060405180910390fd5b600a54610e8f906001600160a01b03166122c6565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f0d576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f168161232f565b50565b6009546000906001600160a01b03163314610f7b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fe7576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054421115611054576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b61105f848484611f8e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060019392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561117257600080fd5b505afa158015611186573d6000803e3d6000fd5b505050506040513d602081101561119c57600080fd5b50519050818110156111f5576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112096001600160a01b0385168484612380565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b0316331461128f576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b0316331461133b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff161561138d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6040518060400160405280600381526020017f505251000000000000000000000000000000000000000000000000000000000081525081565b6009546001600160a01b03163314611463576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114f2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161154e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061157157506009546001600160a01b031633145b6115b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b93386610ad4876040518060600160405280602581526020016128bc602591393360009081526001602090815260408083206001600160a01b038f16845290915290205491906120de565b336000818152600660205260408120549091904211611656576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054849042116116b2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806116d557506009546001600160a01b031633145b611719576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611f8e565b6009546001600160a01b03163314611783576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b336000818152600660205260409020544211611812576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061183557506009546001600160a01b031633145b611879576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8382146118cd576040805162461bcd60e51b815260206004820152601f60248201527f506172736971546f6b656e3a2057726f6e67206172726179206c656e67746800604482015290519081900360640190fd5b6000805b83811015611908576118fe8585838181106118e857fe5b905060200201358361217590919063ffffffff16565b91506001016118d1565b5061193d816040518060600160405280602681526020016127b0602691393360009081526020819052604090205491906120de565b336000908152602081905260408120919091555b85811015611ab157600087878381811061196757fe5b905060200201356001600160a01b03169050600086868481811061198757fe5b60200291909101359150506001600160a01b0382166119d75760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b6001600160a01b0382166000908152600660205260409020544211611a31576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a549082612175565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611951565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611b14576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b6e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b9157506009546001600160a01b031633145b611bd5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611c2a576040805162461bcd60e51b815260206004820152601460248201527f506172736971546f6b656e3a2045585049524544000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d60573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d965750886001600160a01b0316816001600160a01b0316145b611de7576040805162461bcd60e51b815260206004820152601e60248201527f506172736971546f6b656e3a20494e56414c49445f5349474e41545552450000604482015290519081900360640190fd5b611df2898989611ea2565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e99576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f1681612405565b6001600160a01b038316611ee75760405162461bcd60e51b815260040180806020018281038252602481526020018061286e6024913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b815260040180806020018281038252602281526020018061276e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611fd35760405162461bcd60e51b81526004018080602001828103825260258152602001806128496025913960400191505060405180910390fd5b6001600160a01b0382166120185760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b612055816040518060600160405280602681526020016127b0602691396001600160a01b03861660009081526020819052604090205491906120de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120849082612175565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561216d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213257818101518382015260200161211a565b50505050905090810190601f16801561215f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156121cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661221b5760405162461bcd60e51b81526004018080602001828103825260218152602001806128286021913960400191505060405180910390fd5b6122588160405180606001604052806022815260200161274c602291396001600160a01b03851660009081526020819052604090205491906120de565b6001600160a01b03831660009081526020819052604090205560025461227e90826124ab565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526124009084906124ed565b505050565b600061241c6007544261217590919063ffffffff16565b9050600061244161243a60085460075461217590919063ffffffff16565b4290612175565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b60006121cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b6060612542826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661259e9092919063ffffffff16565b8051909150156124005780806020019051602081101561256157600080fd5b50516124005760405162461bcd60e51b815260040180806020018281038252602a815260200180612892602a913960400191505060405180910390fd5b60606125ad84846000856125b5565b949350505050565b60606125c085612722565b612611576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126505780518252601f199092019160209182019101612631565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509150915081156126cb5791506125ad9050565b8051156126db5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561213257818101518382015260200161211a565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006e869dc2a4196b967f538eb79311534b5849a2d657bc73a970f2f252fe5a7d164736f6c634300060c0033

Deployed Bytecode Sourcemap

17673:14664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17836:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22780:256;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22780:256:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18508:50;;;;;;;;;;;;;;;;-1:-1:-1;18508:50:0;-1:-1:-1;;;;;18508:50:0;;:::i;:::-;;;;;;;;;;;;;;;;21667:100;;;:::i;23510:565::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23510:565:0;;;;;;;;;;;;;;;;;:::i;18284:108::-;;;:::i;17931:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18141:31;;;:::i;18689:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;18689:30:0;;;;;;;;;;;;;;25292:304;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25292:304:0;;;;;;;;:::i;18565:35::-;;;:::i;20706:153::-;;;:::i;:::-;;28987:144;;;;;;;;;;;;;;;;-1:-1:-1;28987:144:0;;:::i;21230:168::-;;;:::i;20970:97::-;;;;;;;;;;;;;;;;-1:-1:-1;20970:97:0;-1:-1:-1;;;;;20970:97:0;;:::i;24461:422::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24461:422:0;;;;;;;;;;;;;;;;;:::i;18770:25::-;;;:::i;31530:268::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31530:268:0;;;;;;;;;;;;;;;;;:::i;21830:119::-;;;;;;;;;;;;;;;;-1:-1:-1;21830:119:0;-1:-1:-1;;;;;21830:119:0;;:::i;18616:37::-;;;:::i;31160:171::-;;;;;;;;;;;;;;;;-1:-1:-1;31160:171:0;;:::i;18399:41::-;;;;;;;;;;;;;;;;-1:-1:-1;18399:41:0;-1:-1:-1;;;;;18399:41:0;;:::i;20551:147::-;;;:::i;17887:37::-;;;:::i;31339:183::-;;;;;;;;;;;;;;;;-1:-1:-1;31339:183:0;;:::i;26099:355::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26099:355:0;;;;;;;;:::i;22162:265::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22162:265:0;;;;;;;;:::i;21075:147::-;;;;;;;;;;;;;;;;-1:-1:-1;21075:147:0;-1:-1:-1;;;;;21075:147:0;;:::i;18726:37::-;;;:::i;29139:982::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29139:982:0;;-1:-1:-1;29139:982:0;-1:-1:-1;29139:982:0;:::i;30129:1023::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30129:1023:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22490:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22490:143:0;;;;;;;;;;:::i;18453:48::-;;;;;;;;;;;;;;;;-1:-1:-1;18453:48:0;-1:-1:-1;;;;;18453:48:0;;:::i;20867:95::-;;;;;;;;;;;;;;;;-1:-1:-1;20867:95:0;-1:-1:-1;;;;;20867:95:0;;:::i;17836:44::-;;;;;;;;;;;;;;;;;;;:::o;22780:256::-;22868:10;22952:4;19762:24;;;:15;:24;;;;;;22952:4;;22868:10;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;22902:7;;19789:15:::1;-1:-1:-1::0;19754:80:0::1;;;::::0;;-1:-1:-1;;;19754:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::1;;19306:6:::2;::::0;-1:-1:-1;;;19306:6:0;::::2;;;19305:7;::::0;:40:::2;;-1:-1:-1::0;19330:15:0::2;::::0;-1:-1:-1;;;;;19330:15:0::2;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::2;;22969:37:::3;22978:10;22990:7;22999:6;22969:8;:37::i;:::-;-1:-1:-1::0;23024:4:0::3;::::0;22780:256;-1:-1:-1;;;;22780:256:0:o;18508:50::-;;;;;;;;;;;;;:::o;21667:100::-;21747:12;;21667:100;:::o;23510:565::-;23621:10;23737:4;19762:24;;;:15;:24;;;;;;23737:4;;23621:10;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;23655:6;;19789:15:::1;-1:-1:-1::0;19754:80:0::1;;;::::0;;-1:-1:-1;;;19754:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;19762:24:0;::::2;;::::0;;;:15:::2;:24;::::0;;;;;23685:9;;19789:15:::2;-1:-1:-1::0;19754:80:0::2;;;::::0;;-1:-1:-1;;;19754:80:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::2;;19306:6:::3;::::0;-1:-1:-1;;;19306:6:0;::::3;;;19305:7;::::0;:40:::3;;-1:-1:-1::0;19330:15:0::3;::::0;-1:-1:-1;;;;;19330:15:0::3;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::3;;23754:36:::4;23764:6;23772:9;23783:6;23754:9;:36::i;:::-;-1:-1:-1::0;;;;;23805:19:0;::::4;17827:1;23805:19:::0;;;:11:::4;:19;::::0;;;;;;;23825:10:::4;23805:31:::0;;;;;;;;-1:-1:-1;;;23801:245:0::4;;;23917:117;23926:6;23934:10;23946:87;23982:6;23946:87;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;23946:19:0;::::4;;::::0;;;:11:::4;:19;::::0;;;;;;;23966:10:::4;23946:31:::0;;;;;;;;;:87;:35:::4;:87::i;:::-;23917:8;:117::i;:::-;-1:-1:-1::0;24063:4:0::4;::::0;23510:565;-1:-1:-1;;;;;;23510:565:0:o;18284:108::-;18326:66;18284:108;:::o;17931:35::-;17964:2;17931:35;:::o;18141:31::-;;;;:::o;18689:30::-;;;-1:-1:-1;;;;;18689:30:0;;:::o;25292:304::-;25386:10;25470:4;19762:24;;;:15;:24;;;;;;25470:4;;25386:10;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;25420:7;;19789:15:::1;-1:-1:-1::0;19754:80:0::1;;;::::0;;-1:-1:-1;;;19754:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::1;;19306:6:::2;::::0;-1:-1:-1;;;19306:6:0;::::2;;;19305:7;::::0;:40:::2;;-1:-1:-1::0;19330:15:0::2;::::0;-1:-1:-1;;;;;19330:15:0::2;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::2;;25496:10:::3;25517:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;25517:32:0;::::3;::::0;;;;;;;;25487:79:::3;::::0;25496:10;25508:7;;25517:48:::3;::::0;25554:10;25517:36:::3;:48::i;18565:35::-:0;;;;:::o;20706:153::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20771:6:::1;::::0;-1:-1:-1;;;20771:6:0;::::1;;;20763:37;;;::::0;;-1:-1:-1;;;20763:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20811:6;:14:::0;;-1:-1:-1;;;;20811:14:0::1;::::0;;20841:10:::1;::::0;::::1;::::0;20820:5:::1;::::0;20841:10:::1;20706:153::o:0;28987:144::-;29047:10;19762:24;;;;:15;:24;;;;;;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;19306:6:::1;::::0;-1:-1:-1;;;19306:6:0;::::1;;;19305:7;::::0;:40:::1;;-1:-1:-1::0;19330:15:0::1;::::0;-1:-1:-1;;;;;19330:15:0::1;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::1;;29098:25:::2;29104:10;29116:6;29098:5;:25::i;:::-;28987:144:::0;;:::o;21230:168::-;19607:22;;-1:-1:-1;;;;;19607:22:0;19593:10;:36;19585:91;;;;-1:-1:-1;;;19585:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21321:22:::1;::::0;21301:43:::1;::::0;-1:-1:-1;;;;;21321:22:0::1;21301:19;:43::i;:::-;21355:22;:35:::0;;-1:-1:-1;;21355:35:0::1;::::0;;21230:168::o;20970:97::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21042:17:::1;21051:7;21042:8;:17::i;:::-;20970:97:::0;:::o;24461:422::-;19458:15;;24582:4;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24626:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;24607:15:::1;:38;24599:79;;;::::0;;-1:-1:-1;;;24599:79:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24716:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;;24697:15:::1;:40;;24689:76;;;::::0;;-1:-1:-1;;;24689:76:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;24778:26;24788:4;24794:2;24798:5;24778:9;:26::i;:::-;24843:2;-1:-1:-1::0;;;;;24820:33:0::1;24837:4;-1:-1:-1::0;;;;;24820:33:0::1;;24847:5;24820:33;;;;;;;;;;;;;;;;;;-1:-1:-1::0;24871:4:0::1;24461:422:::0;;;;;:::o;18770:25::-;;;-1:-1:-1;;;18770:25:0;;;;;:::o;31530:268::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31633:15:::1;31651:5;-1:-1:-1::0;;;;;31651:15:0::1;;31675:4;31651:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;31651:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;31651:30:0;;-1:-1:-1;31700:17:0;;::::1;;31692:57;;;::::0;;-1:-1:-1;;;31692:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31760:30;-1:-1:-1::0;;;;;31760:18:0;::::1;31779:2:::0;31783:6;31760:18:::1;:30::i;:::-;19519:1;31530:268:::0;;;:::o;21830:119::-;-1:-1:-1;;;;;21923:18:0;21896:7;21923:18;;;;;;;;;;;;21830:119::o;18616:37::-;;;;:::o;31160:171::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31246:12:::1;:28:::0;;;31290:33:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;31160:171:::0;:::o;18399:41::-;;;;;;;;;;;;;:::o;20551:147::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20615:6:::1;::::0;-1:-1:-1;;;20615:6:0;::::1;;;20614:7;20606:36;;;::::0;;-1:-1:-1;;;20606:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20606:36:0;;;;;;;;;;;;;::::1;;20653:6;:13:::0;;-1:-1:-1;;;;20653:13:0::1;-1:-1:-1::0;;;20653:13:0::1;::::0;;20682:8:::1;::::0;::::1;::::0;20653:13;;20682:8:::1;20551:147::o:0;17887:37::-;;;;;;;;;;;;;;;;;;;:::o;31339:183::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31429:14:::1;:32:::0;;;31477:37:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;31339:183:::0;:::o;26099:355::-;26198:10;26282:4;19762:24;;;:15;:24;;;;;;26282:4;;26198:10;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;26232:7;;19789:15:::1;-1:-1:-1::0;19754:80:0::1;;;::::0;;-1:-1:-1;;;19754:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::1;;19306:6:::2;::::0;-1:-1:-1;;;19306:6:0;::::2;;;19305:7;::::0;:40:::2;;-1:-1:-1::0;19330:15:0::2;::::0;-1:-1:-1;;;;;19330:15:0::2;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::2;;26299:125:::3;26308:10;26320:7;26329:94;26366:15;26329:94;;;;;;;;;;;;;;;;;26341:10;26329:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;26329:32:0;::::3;::::0;;;;;;;;;:94;:36:::3;:94::i;22162:265::-:0;22254:10;22340:4;19762:24;;;:15;:24;;;;;;22340:4;;22254:10;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19762:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;22288:9;;19789:15:::1;-1:-1:-1::0;19754:80:0::1;;;::::0;;-1:-1:-1;;;19754:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;::::1;;19306:6:::2;::::0;-1:-1:-1;;;19306:6:0;::::2;;;19305:7;::::0;:40:::2;;-1:-1:-1::0;19330:15:0::2;::::0;-1:-1:-1;;;;;19330:15:0::2;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::2;;22357:40:::3;22367:10;22379:9;22390:6;22357:9;:40::i;21075:147::-:0;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21171:22:::1;:43:::0;;-1:-1:-1;;21171:43:0::1;-1:-1:-1::0;;;;;21171:43:0;;;::::1;::::0;;;::::1;::::0;;21075:147::o;18726:37::-;;;-1:-1:-1;;;;;18726:37:0;;:::o;29139:982::-;29242:10;19762:24;;;;:15;:24;;;;;;19789:15;-1:-1:-1;19754:80:0;;;;;-1:-1:-1;;;19754:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19754:80:0;;;;;;;;;;;;;;;19306:6:::1;::::0;-1:-1:-1;;;19306:6:0;::::1;;;19305:7;::::0;:40:::1;;-1:-1:-1::0;19330:15:0::1;::::0;-1:-1:-1;;;;;19330:15:0::1;19316:10;:29;19305:40;19297:69;;;::::0;;-1:-1:-1;;;19297:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19297:69:0;;;;;;;;;;;;;::::1;;29314:35:::0;;::::2;29306:79;;;::::0;;-1:-1:-1;;;29306:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;29398:13;29431:9:::0;29426:101:::2;29446:18:::0;;::::2;29426:101;;;29494:21;29504:7;;29512:1;29504:10;;;;;;;;;;;;;29494:5;:9;;:21;;;;:::i;:::-;29486:29:::0;-1:-1:-1;29466:3:0::2;;29426:101;;;;29563:74;29589:5;29563:74;;;;;;;;;;;;;;;;;29573:10;29563:9;:21:::0;;;::::2;::::0;;;;;;;;:74;:25:::2;:74::i;:::-;29549:10;29539:9;:21:::0;;;::::2;::::0;;;;;;:98;;;;29650:464:::2;29670:21:::0;;::::2;29650:464;;;29713:17;29733:10;;29744:1;29733:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;29733:13:0::2;29713:33;;29761:14;29778:7;;29786:1;29778:10;;;;;;;;;::::0;;;::::2;;::::0;-1:-1:-1;;;;;;;29811:23:0;::::2;29803:71;;;;-1:-1:-1::0;;;29803:71:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29897:26:0;::::2;;::::0;;;:15:::2;:26;::::0;;;;;29926:15:::2;-1:-1:-1::0;29889:82:0::2;;;::::0;;-1:-1:-1;;;29889:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;29889:82:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;30011:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;:32:::2;::::0;30036:6;30011:24:::2;:32::i;:::-;-1:-1:-1::0;;;;;29988:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;;:55;;;;30063:39;;;;;;;29988:20;;30072:10:::2;::::0;30063:39:::2;::::0;;;;;;;;::::2;-1:-1:-1::0;;29693:3:0::2;;29650:464;;;;19377:1;29139:982:::0;;;;;:::o;30129:1023::-;-1:-1:-1;;;;;30340:22:0;;;;;;:15;:22;;;;;;30365:15;-1:-1:-1;30332:78:0;;;;;-1:-1:-1;;;30332:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30332:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30429:24:0;;;;;;:15;:24;;;;;;30456:15;-1:-1:-1;30421:80:0;;;;;-1:-1:-1;;;30421:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30421:80:0;;;;;;;;;;;;;;;30521:6;;-1:-1:-1;;;30521:6:0;;;;30520:7;;:40;;-1:-1:-1;30545:15:0;;-1:-1:-1;;;;;30545:15:0;30531:10;:29;30520:40;30512:69;;;;;-1:-1:-1;;;30512:69:0;;;;;;;;;;;;-1:-1:-1;;;30512:69:0;;;;;;;;;;;;;;;30612:15;30600:8;:27;;30592:60;;;;;-1:-1:-1;;;30592:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30772:16;;-1:-1:-1;;;;;30868:13:0;;;30667:14;30868:13;;;:6;:13;;;;;;;;:15;;;;;;;;;30817:77;;18326:66;30817:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30807:88;;;;;;30708:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30684:237;;;;;;;;;30961:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30667:14;;30868:15;30961:26;;;;;-1:-1:-1;;30961:26:0;;;;;;;;;;30868:15;30961:26;;;;;;;;;;;;;;;-1:-1:-1;;30961:26:0;;-1:-1:-1;;30961:26:0;;;-1:-1:-1;;;;;;;31008:30:0;;;;;;:59;;;31062:5;-1:-1:-1;;;;;31042:25:0;:16;-1:-1:-1;;;;;31042:25:0;;31008:59;31000:102;;;;;-1:-1:-1;;;31000:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31113:31;31122:5;31129:7;31138:5;31113:8;:31::i;:::-;30129:1023;;;;;;;;;:::o;22490:143::-;-1:-1:-1;;;;;22598:18:0;;;22571:7;22598:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22490:143::o;18453:48::-;;;;;;;;;;;;;:::o;20867:95::-;19458:15;;-1:-1:-1;;;;;19458:15:0;19444:10;:29;19436:72;;;;;-1:-1:-1;;;19436:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20938:16:::1;20946:7;20938;:16::i;28533:338::-:0;-1:-1:-1;;;;;28627:19:0;;28619:68;;;;-1:-1:-1;;;28619:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28706:21:0;;28698:68;;;;-1:-1:-1;;;28698:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28779:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28831:32;;;;;;;;;;;;;;;;;28533:338;;;:::o;26944:471::-;-1:-1:-1;;;;;27042:20:0;;27034:70;;;;-1:-1:-1;;;27034:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27123:23:0;;27115:71;;;;-1:-1:-1;;;27115:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27219;27241:6;27219:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27219:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;27199:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27324:20;;;;;;;:32;;27349:6;27324:24;:32::i;:::-;-1:-1:-1;;;;;27301:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27372:35;;;;;;;27301:20;;27372:35;;;;;;;;;;;;;26944:471;;;:::o;1803:192::-;1889:7;1925:12;1917:6;;;;1909:29;;;;-1:-1:-1;;;1909:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1961:5:0;;;1803:192::o;900:181::-;958:7;990:5;;;1014:6;;;;1006:46;;;;;-1:-1:-1;;;1006:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1072:1;900:181;-1:-1:-1;;;900:181:0:o;27747:348::-;-1:-1:-1;;;;;27823:21:0;;27815:67;;;;-1:-1:-1;;;27815:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27916:68;27939:6;27916:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27916:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;27895:18:0;;:9;:18;;;;;;;;;;:89;28010:12;;:24;;28027:6;28010:16;:24::i;:::-;27995:12;:39;28050:37;;;;;;;;28076:1;;-1:-1:-1;;;;;28050:37:0;;;;;;;;;;;;27747:348;;:::o;21406:196::-;21511:15;;21488:59;;-1:-1:-1;;;;;21488:59:0;;;;21511:15;;21488:59;;21511:15;;21488:59;21558:15;:36;;-1:-1:-1;;21558:36:0;-1:-1:-1;;;;;21558:36:0;;;;;;;;;;21406:196::o;32173:161::-;-1:-1:-1;;;;;32228:22:0;;32253:1;32228:22;;;:13;:22;;;;;;;;:26;;;32265:15;:24;;;;;;:28;;;32309:17;;;32253:1;32309:17;32173:161;:::o;11885:177::-;11995:58;;;-1:-1:-1;;;;;11995:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12018:23;11995:58;;;11968:86;;11988:5;;11968:19;:86::i;:::-;11885:177;;;:::o;31806:359::-;31860:19;31882:33;31902:12;;31882:15;:19;;:33;;;;:::i;:::-;31860:55;;31926:19;31948:53;31968:32;31985:14;;31968:12;;:16;;:32;;;;:::i;:::-;31948:15;;:19;:53::i;:::-;-1:-1:-1;;;;;32012:22:0;;;;;;:13;:22;;;;;;;;:36;;;32059:15;:24;;;;;;:38;;;32113:44;;;;;;;;;;;;;31926:75;;-1:-1:-1;32012:22:0;;32113:44;;;;;;;;;;31806:359;;;:::o;1364:136::-;1422:7;1449:43;1453:1;1456;1449:43;;;;;;;;;;;;;;;;;:3;:43::i;14190:761::-;14614:23;14640:69;14668:4;14640:69;;;;;;;;;;;;;;;;;14648:5;-1:-1:-1;;;;;14640:27:0;;;:69;;;;;:::i;:::-;14724:17;;14614:95;;-1:-1:-1;14724:21:0;14720:224;;14866:10;14855:30;;;;;;;;;;;;;;;-1:-1:-1;14855:30:0;14847:85;;;;-1:-1:-1;;;14847:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8963:196;9066:12;9098:53;9121:6;9129:4;9135:1;9138:12;9098:22;:53::i;:::-;9091:60;8963:196;-1:-1:-1;;;;8963:196:0:o;10340:979::-;10470:12;10503:18;10514:6;10503:10;:18::i;:::-;10495:60;;;;;-1:-1:-1;;;10495:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10629:12;10643:23;10670:6;-1:-1:-1;;;;;10670:11:0;10690:8;10701:4;10670:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10670:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10628:78;;;;10721:7;10717:595;;;10752:10;-1:-1:-1;10745:17:0;;-1:-1:-1;10745:17:0;10717:595;10866:17;;:21;10862:439;;11129:10;11123:17;11190:15;11177:10;11173:2;11169:19;11162:44;11077:148;11265:20;;-1:-1:-1;;;11265:20:0;;;;;;;;;;;;;;;;;11272:12;;11265:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6045:422;6412:20;6451:8;;;6045:422::o

Swarm Source

ipfs://06e869dc2a4196b967f538eb79311534b5849a2d657bc73a970f2f252fe5a7d1
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.