ETH Price: $3,215.41 (+1.66%)

Contract

0xa211F450Ce88deb31D3F12Ae3C1EBf6b0e55A5d9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve209967612024-10-19 2:54:3526 days ago1729306475IN
0xa211F450...b0e55A5d9
0 ETH0.000290859.44549479
Approve209861742024-10-17 15:26:5927 days ago1729178819IN
0xa211F450...b0e55A5d9
0 ETH0.0007132821.75119598
Approve209861322024-10-17 15:18:3527 days ago1729178315IN
0xa211F450...b0e55A5d9
0 ETH0.0008184226.57824787
Permit209558362024-10-13 9:44:1131 days ago1728812651IN
0xa211F450...b0e55A5d9
0 ETH0.000525928.35770347
Transfer208829872024-10-03 5:46:2342 days ago1727934383IN
0xa211F450...b0e55A5d9
0 ETH0.000215374.03155468
Permit208417472024-09-27 11:45:2347 days ago1727437523IN
0xa211F450...b0e55A5d9
0 ETH0.0006767310.75421921
Transfer208303822024-09-25 21:44:1149 days ago1727300651IN
0xa211F450...b0e55A5d9
0 ETH0.0024370141.86521708
Transfer207737862024-09-18 0:05:1157 days ago1726617911IN
0xa211F450...b0e55A5d9
0 ETH0.000411377.06544764
Approve206047852024-08-25 9:43:3580 days ago1724579015IN
0xa211F450...b0e55A5d9
0 ETH0.00002830.91928987
Approve205987192024-08-24 13:21:1181 days ago1724505671IN
0xa211F450...b0e55A5d9
0 ETH0.000033031.07275387
Transfer205434602024-08-16 20:04:3589 days ago1723838675IN
0xa211F450...b0e55A5d9
0 ETH0.000081941.53396764
Approve204466202024-08-03 7:48:23103 days ago1722671303IN
0xa211F450...b0e55A5d9
0 ETH0.000079521.5
Transfer204154402024-07-29 23:13:59107 days ago1722294839IN
0xa211F450...b0e55A5d9
0 ETH0.000042061.15845203
Transfer204092862024-07-29 2:38:23108 days ago1722220703IN
0xa211F450...b0e55A5d9
0 ETH0.00004651.28044611
Transfer204092852024-07-29 2:38:11108 days ago1722220691IN
0xa211F450...b0e55A5d9
0 ETH0.000070571.3210001
Transfer201603002024-06-24 8:18:11143 days ago1719217091IN
0xa211F450...b0e55A5d9
0 ETH0.000274747.56393138
Approve201574322024-06-23 22:41:23143 days ago1719182483IN
0xa211F450...b0e55A5d9
0 ETH0.00009561.80131383
Transfer201572072024-06-23 21:55:59143 days ago1719179759IN
0xa211F450...b0e55A5d9
0 ETH0.00010422.86884214
Transfer201572012024-06-23 21:54:47143 days ago1719179687IN
0xa211F450...b0e55A5d9
0 ETH0.000109093.00356839
Transfer201571992024-06-23 21:54:23143 days ago1719179663IN
0xa211F450...b0e55A5d9
0 ETH0.00010893.00033025
Transfer201571972024-06-23 21:53:59143 days ago1719179639IN
0xa211F450...b0e55A5d9
0 ETH0.000103762.85669882
Transfer201571962024-06-23 21:53:47143 days ago1719179627IN
0xa211F450...b0e55A5d9
0 ETH0.000097482.68389059
Transfer201571952024-06-23 21:53:35143 days ago1719179615IN
0xa211F450...b0e55A5d9
0 ETH0.000156322.92626753
Approve201219212024-06-18 23:28:47148 days ago1718753327IN
0xa211F450...b0e55A5d9
0 ETH0.000170793.23465258
Approve199514632024-05-26 3:47:47172 days ago1716695267IN
0xa211F450...b0e55A5d9
0 ETH0.00013832.62174456
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ParsiqBoost

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-11-03
*/

// 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 ParsiqBoost is IERC20 {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 constant private MAX_UINT256 = ~uint256(0);
    string constant public name = "Parsiq Boost";
    string constant public symbol = "PRQBOOST";
    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 = 100000000e18; // 100 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"}]

6080604052620151806007819055600855600a805460ff60a01b1916600160a01b17905534801561002f57600080fd5b5061003933610169565b6a52b7d2dcc80cd2e4000000600281905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3604080518082018252600c81526b14185c9cda5c48109bdbdcdd60a21b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527ff509f2bb7d7a315a99fa6870c94da1c7b6a2a6ea6f6e1c85220c47fb72324f70818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c090910190925281519101206003556101c5565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b612916806101d46000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106e4578063e72cfcb814610712578063ee7429d51461073857610226565b8063b7fc6612146105d1578063d505accf1461069357610226565b8063a457c2d71461054b578063a9059cbb14610577578063b48edbb4146105a3578063b706dc73146105c957610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b4114610526578063a1a586b31461052e57610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b61023361075e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108c4565b60408051918252519081900360200190f35b61030e6108d6565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108dc565b61030e610ae6565b61036e610b0a565b6040805160ff9092168252519081900360200190f35b61030e610b0f565b610394610b15565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b24565b61030e610c70565b6103ec610c76565b005b6103ec6004803603602081101561040457600080fd5b5035610d6b565b6103ec610e31565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610eae565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f19565b6102d46110b4565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110c4565b61030e600480360360208110156104c357600080fd5b50356001600160a01b031661120f565b61030e61122a565b6103ec600480360360208110156104f157600080fd5b5035611230565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112ca565b6103ec6112dc565b6102336113cb565b6103ec6004803603602081101561054457600080fd5b5035611404565b6102d46004803603604081101561056157600080fd5b506001600160a01b03813516906020013561149e565b6102d46004803603604081101561058d57600080fd5b506001600160a01b038135169060200135611602565b6103ec600480360360208110156105b957600080fd5b50356001600160a01b0316611724565b6103946117b2565b6103ec600480360360408110156105e757600080fd5b81019060208101813564010000000081111561060257600080fd5b82018360208201111561061457600080fd5b8035906020019184602083028401116401000000008311171561063657600080fd5b91939092909160208101903564010000000081111561065457600080fd5b82018360208201111561066657600080fd5b8035906020019184602083028401116401000000008311171561068857600080fd5b5090925090506117c1565b6103ec600480360360e08110156106a957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611aba565b61030e600480360360408110156106fa57600080fd5b506001600160a01b0381358116916020013516611dfd565b61030e6004803603602081101561072857600080fd5b50356001600160a01b0316611e28565b6103ec6004803603602081101561074e57600080fd5b50356001600160a01b0316611e3a565b6040518060400160405280600c81526020017f50617273697120426f6f7374000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107eb576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610847576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086a57506009546001600160a01b031633145b6108ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611ea2565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610930576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152600660205260409020548590421161098c576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e8576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0b57506009546001600160a01b031633145b610a4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a5a878787611f8e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad957610ad98733610ad488604051806060016040528060288152602001612800602891396001600160a01b038d16600090815260016020908152604080832033845290915290205491906120de565b611ea2565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b78576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bd4576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bf757506009546001600160a01b031633145b610c3b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b991908790610ad49088612175565b60075481565b6009546001600160a01b03163314610cd5576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d33576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610dbc576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610ddf57506009546001600160a01b031633145b610e23576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e2d33836121d6565b5050565b600a546001600160a01b03163314610e7a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127d6602a913960400191505060405180910390fd5b600a54610e8f906001600160a01b03166122c6565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f0d576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f168161232f565b50565b6009546000906001600160a01b03163314610f7b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fe7576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054421115611054576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b61105f848484611f8e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060019392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561117257600080fd5b505afa158015611186573d6000803e3d6000fd5b505050506040513d602081101561119c57600080fd5b50519050818110156111f5576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112096001600160a01b0385168484612380565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b0316331461128f576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b0316331461133b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff161561138d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6040518060400160405280600881526020017f505251424f4f535400000000000000000000000000000000000000000000000081525081565b6009546001600160a01b03163314611463576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114f2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161154e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061157157506009546001600160a01b031633145b6115b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b93386610ad4876040518060600160405280602581526020016128bc602591393360009081526001602090815260408083206001600160a01b038f16845290915290205491906120de565b336000818152600660205260408120549091904211611656576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054849042116116b2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806116d557506009546001600160a01b031633145b611719576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611f8e565b6009546001600160a01b03163314611783576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b336000818152600660205260409020544211611812576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061183557506009546001600160a01b031633145b611879576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8382146118cd576040805162461bcd60e51b815260206004820152601f60248201527f506172736971546f6b656e3a2057726f6e67206172726179206c656e67746800604482015290519081900360640190fd5b6000805b83811015611908576118fe8585838181106118e857fe5b905060200201358361217590919063ffffffff16565b91506001016118d1565b5061193d816040518060600160405280602681526020016127b0602691393360009081526020819052604090205491906120de565b336000908152602081905260408120919091555b85811015611ab157600087878381811061196757fe5b905060200201356001600160a01b03169050600086868481811061198757fe5b60200291909101359150506001600160a01b0382166119d75760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b6001600160a01b0382166000908152600660205260409020544211611a31576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a549082612175565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611951565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611b14576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b6e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b9157506009546001600160a01b031633145b611bd5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611c2a576040805162461bcd60e51b815260206004820152601460248201527f506172736971546f6b656e3a2045585049524544000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d60573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d965750886001600160a01b0316816001600160a01b0316145b611de7576040805162461bcd60e51b815260206004820152601e60248201527f506172736971546f6b656e3a20494e56414c49445f5349474e41545552450000604482015290519081900360640190fd5b611df2898989611ea2565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e99576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f1681612405565b6001600160a01b038316611ee75760405162461bcd60e51b815260040180806020018281038252602481526020018061286e6024913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b815260040180806020018281038252602281526020018061276e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611fd35760405162461bcd60e51b81526004018080602001828103825260258152602001806128496025913960400191505060405180910390fd5b6001600160a01b0382166120185760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b612055816040518060600160405280602681526020016127b0602691396001600160a01b03861660009081526020819052604090205491906120de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120849082612175565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561216d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213257818101518382015260200161211a565b50505050905090810190601f16801561215f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156121cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661221b5760405162461bcd60e51b81526004018080602001828103825260218152602001806128286021913960400191505060405180910390fd5b6122588160405180606001604052806022815260200161274c602291396001600160a01b03851660009081526020819052604090205491906120de565b6001600160a01b03831660009081526020819052604090205560025461227e90826124ab565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526124009084906124ed565b505050565b600061241c6007544261217590919063ffffffff16565b9050600061244161243a60085460075461217590919063ffffffff16565b4290612175565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b60006121cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b6060612542826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661259e9092919063ffffffff16565b8051909150156124005780806020019051602081101561256157600080fd5b50516124005760405162461bcd60e51b815260040180806020018281038252602a815260200180612892602a913960400191505060405180910390fd5b60606125ad84846000856125b5565b949350505050565b60606125c085612722565b612611576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126505780518252601f199092019160209182019101612631565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509150915081156126cb5791506125ad9050565b8051156126db5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561213257818101518382015260200161211a565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122057d18017ba0371a59dfddaa18505c952001721ad0b751945bda17f2f26c1818e64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c80635f3e849f1161012a578063a457c2d7116100bd578063b7fc66121161008c578063dd62ed3e11610071578063dd62ed3e146106e4578063e72cfcb814610712578063ee7429d51461073857610226565b8063b7fc6612146105d1578063d505accf1461069357610226565b8063a457c2d71461054b578063a9059cbb14610577578063b48edbb4146105a3578063b706dc73146105c957610226565b80637ecebe00116100f95780637ecebe00146104f85780638456cb591461051e57806395d89b4114610526578063a1a586b31461052e57610226565b80635f3e849f1461047757806370a08231146104ad57806379556d74146104d35780637db1096f146104db57610226565b8063382a3332116101bd57806342966c681161018c57806355ea6c471161017157806355ea6c4714610413578063588ecffd146104395780635c975abb1461046f57610226565b806342966c68146103ee578063453f4e7e1461040b57610226565b8063382a33321461038c57806339509351146103b05780633b249810146103dc5780633f4ba83a146103e457610226565b806323b872dd116101f957806323b872dd1461032857806330adf81f1461035e578063313ce567146103665780633644e5151461038457610226565b806306fdde031461022b578063095ea7b3146102a85780630bb7663a146102e857806318160ddd14610320575b600080fd5b61023361075e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026d578181015183820152602001610255565b50505050905090810190601f16801561029a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d4600480360360408110156102be57600080fd5b506001600160a01b038135169060200135610797565b604080519115158252519081900360200190f35b61030e600480360360208110156102fe57600080fd5b50356001600160a01b03166108c4565b60408051918252519081900360200190f35b61030e6108d6565b6102d46004803603606081101561033e57600080fd5b506001600160a01b038135811691602081013590911690604001356108dc565b61030e610ae6565b61036e610b0a565b6040805160ff9092168252519081900360200190f35b61030e610b0f565b610394610b15565b604080516001600160a01b039092168252519081900360200190f35b6102d4600480360360408110156103c657600080fd5b506001600160a01b038135169060200135610b24565b61030e610c70565b6103ec610c76565b005b6103ec6004803603602081101561040457600080fd5b5035610d6b565b6103ec610e31565b6103ec6004803603602081101561042957600080fd5b50356001600160a01b0316610eae565b6102d46004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610f19565b6102d46110b4565b6103ec6004803603606081101561048d57600080fd5b506001600160a01b038135811691602081013590911690604001356110c4565b61030e600480360360208110156104c357600080fd5b50356001600160a01b031661120f565b61030e61122a565b6103ec600480360360208110156104f157600080fd5b5035611230565b61030e6004803603602081101561050e57600080fd5b50356001600160a01b03166112ca565b6103ec6112dc565b6102336113cb565b6103ec6004803603602081101561054457600080fd5b5035611404565b6102d46004803603604081101561056157600080fd5b506001600160a01b03813516906020013561149e565b6102d46004803603604081101561058d57600080fd5b506001600160a01b038135169060200135611602565b6103ec600480360360208110156105b957600080fd5b50356001600160a01b0316611724565b6103946117b2565b6103ec600480360360408110156105e757600080fd5b81019060208101813564010000000081111561060257600080fd5b82018360208201111561061457600080fd5b8035906020019184602083028401116401000000008311171561063657600080fd5b91939092909160208101903564010000000081111561065457600080fd5b82018360208201111561066657600080fd5b8035906020019184602083028401116401000000008311171561068857600080fd5b5090925090506117c1565b6103ec600480360360e08110156106a957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611aba565b61030e600480360360408110156106fa57600080fd5b506001600160a01b0381358116916020013516611dfd565b61030e6004803603602081101561072857600080fd5b50356001600160a01b0316611e28565b6103ec6004803603602081101561074e57600080fd5b50356001600160a01b0316611e3a565b6040518060400160405280600c81526020017f50617273697120426f6f7374000000000000000000000000000000000000000081525081565b3360008181526006602052604081205490919042116107eb576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610847576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061086a57506009546001600160a01b031633145b6108ae576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611ea2565b506001949350505050565b60066020526000908152604090205481565b60025490565b336000818152600660205260408120549091904211610930576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0385166000908152600660205260409020548590421161098c576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260066020526040902054859042116109e8576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610a0b57506009546001600160a01b031633145b610a4f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610a5a878787611f8e565b6001600160a01b03871660009081526001602090815260408083203384529091529020546000191115610ad957610ad98733610ad488604051806060016040528060288152602001612800602891396001600160a01b038d16600090815260016020908152604080832033845290915290205491906120de565b611ea2565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6009546001600160a01b031681565b336000818152600660205260408120549091904211610b78576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b03841660009081526006602052604090205484904211610bd4576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610bf757506009546001600160a01b031633145b610c3b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b3360008181526001602090815260408083206001600160a01b038a1684529091529020546108b991908790610ad49088612175565b60075481565b6009546001600160a01b03163314610cd5576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff16610d33576040805162461bcd60e51b815260206004820152601260248201527f5061757361626c653a20756e7061757365640000000000000000000000000000604482015290519081900360640190fd5b600a805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b336000818152600660205260409020544211610dbc576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580610ddf57506009546001600160a01b031633145b610e23576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610e2d33836121d6565b5050565b600a546001600160a01b03163314610e7a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127d6602a913960400191505060405180910390fd5b600a54610e8f906001600160a01b03166122c6565b600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b6009546001600160a01b03163314610f0d576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f168161232f565b50565b6009546000906001600160a01b03163314610f7b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6001600160a01b0384166000908152600560205260409020544211610fe7576040805162461bcd60e51b815260206004820152601c60248201527f52657669657720706572696f64206973206e6f7420656c617073656400000000604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054421115611054576040805162461bcd60e51b815260206004820152601760248201527f4465636973696f6e20706572696f642065787069726564000000000000000000604482015290519081900360640190fd5b61105f848484611f8e565b826001600160a01b0316846001600160a01b03167ff0ce2c03e8c22e6c0a5077f1eccd528a2f03da3a15bf354d599bfe0910a9c9a1846040518082815260200191505060405180910390a35060019392505050565b600a54600160a01b900460ff1681565b6009546001600160a01b03163314611123576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561117257600080fd5b505afa158015611186573d6000803e3d6000fd5b505050506040513d602081101561119c57600080fd5b50519050818110156111f5576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a20496e73756666696369656e742062616c616e63650000000000604482015290519081900360640190fd5b6112096001600160a01b0385168484612380565b50505050565b6001600160a01b031660009081526020819052604090205490565b60085481565b6009546001600160a01b0316331461128f576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60078190556040805182815290517feee6e94da6dbe8c539efcc3dd80f0420aea22e590aad7005b127bd855d6107529181900360200190a150565b60046020526000908152604090205481565b6009546001600160a01b0316331461133b576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a54600160a01b900460ff161561138d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600a805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6040518060400160405280600881526020017f505251424f4f535400000000000000000000000000000000000000000000000081525081565b6009546001600160a01b03163314611463576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b60088190556040805182815290517f10809cc5ca185b137f7fbda0e2e2791a6b1b5d66fe86d51c10c69c805c9118019181900360200190a150565b3360008181526006602052604081205490919042116114f2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0384166000908152600660205260409020548490421161154e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061157157506009546001600160a01b031633145b6115b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b93386610ad4876040518060600160405280602581526020016128bc602591393360009081526001602090815260408083206001600160a01b038f16845290915290205491906120de565b336000818152600660205260408120549091904211611656576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260066020526040902054849042116116b2576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff1615806116d557506009546001600160a01b031633145b611719576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6108b9338686611f8e565b6009546001600160a01b03163314611783576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600a546001600160a01b031681565b336000818152600660205260409020544211611812576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff16158061183557506009546001600160a01b031633145b611879576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b8382146118cd576040805162461bcd60e51b815260206004820152601f60248201527f506172736971546f6b656e3a2057726f6e67206172726179206c656e67746800604482015290519081900360640190fd5b6000805b83811015611908576118fe8585838181106118e857fe5b905060200201358361217590919063ffffffff16565b91506001016118d1565b5061193d816040518060600160405280602681526020016127b0602691393360009081526020819052604090205491906120de565b336000908152602081905260408120919091555b85811015611ab157600087878381811061196757fe5b905060200201356001600160a01b03169050600086868481811061198757fe5b60200291909101359150506001600160a01b0382166119d75760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b6001600160a01b0382166000908152600660205260409020544211611a31576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b038216600090815260208190526040902054611a549082612175565b6001600160a01b038316600081815260208181526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050600101611951565b50505050505050565b6001600160a01b0387166000908152600660205260409020544211611b14576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b6001600160a01b0386166000908152600660205260409020544211611b6e576040805162461bcd60e51b81526020600482015260196024820152600080516020612790833981519152604482015290519081900360640190fd5b600a54600160a01b900460ff161580611b9157506009546001600160a01b031633145b611bd5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b42841015611c2a576040805162461bcd60e51b815260206004820152601460248201527f506172736971546f6b656e3a2045585049524544000000000000000000000000604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611d60573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611d965750886001600160a01b0316816001600160a01b0316145b611de7576040805162461bcd60e51b815260206004820152601e60248201527f506172736971546f6b656e3a20494e56414c49445f5349474e41545552450000604482015290519081900360640190fd5b611df2898989611ea2565b505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60056020526000908152604090205481565b6009546001600160a01b03163314611e99576040805162461bcd60e51b815260206004820152601e60248201527f53656e646572206973206e6f7420676f7665726e616e636520626f6172640000604482015290519081900360640190fd5b610f1681612405565b6001600160a01b038316611ee75760405162461bcd60e51b815260040180806020018281038252602481526020018061286e6024913960400191505060405180910390fd5b6001600160a01b038216611f2c5760405162461bcd60e51b815260040180806020018281038252602281526020018061276e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611fd35760405162461bcd60e51b81526004018080602001828103825260258152602001806128496025913960400191505060405180910390fd5b6001600160a01b0382166120185760405162461bcd60e51b81526004018080602001828103825260238152602001806127296023913960400191505060405180910390fd5b612055816040518060600160405280602681526020016127b0602691396001600160a01b03861660009081526020819052604090205491906120de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120849082612175565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561216d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213257818101518382015260200161211a565b50505050905090810190601f16801561215f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156121cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661221b5760405162461bcd60e51b81526004018080602001828103825260218152602001806128286021913960400191505060405180910390fd5b6122588160405180606001604052806022815260200161274c602291396001600160a01b03851660009081526020819052604090205491906120de565b6001600160a01b03831660009081526020819052604090205560025461227e90826124ab565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6009546040516001600160a01b038084169216907fc9236e88ccc318dbded95bbdbed52565112e581abe78292b12344574cd3a267b90600090a36009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b03811660008181526005602090815260408083208390556006909152808220829055517fd7f9e268a7b73266b018e33a21334c62cd762d663acc0f052eb872992da319db9190a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526124009084906124ed565b505050565b600061241c6007544261217590919063ffffffff16565b9050600061244161243a60085460075461217590919063ffffffff16565b4290612175565b6001600160a01b038416600081815260056020908152604080832087905560068252918290208490558151868152908101849052815193945091927f5496407254a0eb60bfb0684ce13af563d549d67de6b58eca5805aed0eab2806b9281900390910190a2505050565b60006121cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120de565b6060612542826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661259e9092919063ffffffff16565b8051909150156124005780806020019051602081101561256157600080fd5b50516124005760405162461bcd60e51b815260040180806020018281038252602a815260200180612892602a913960400191505060405180910390fd5b60606125ad84846000856125b5565b949350505050565b60606125c085612722565b612611576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106126505780518252601f199092019160209182019101612631565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b509150915081156126cb5791506125ad9050565b8051156126db5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561213257818101518382015260200161211a565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573734163636f756e74206973206265696e672072657669657765640000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572206973206e6f74207468652070656e64696e6720676f7665726e616e636520626f61726445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122057d18017ba0371a59dfddaa18505c952001721ad0b751945bda17f2f26c1818e64736f6c634300060c0033

Deployed Bytecode Sourcemap

17675:14669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17838:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22787:256;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22787:256:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18515:50;;;;;;;;;;;;;;;;-1:-1:-1;18515:50:0;-1:-1:-1;;;;;18515:50:0;;:::i;:::-;;;;;;;;;;;;;;;;21674:100;;;:::i;23517:565::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23517:565:0;;;;;;;;;;;;;;;;;:::i;18291:108::-;;;:::i;17938:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18148:31;;;:::i;18696:30::-;;;:::i;:::-;;;;-1:-1:-1;;;;;18696:30:0;;;;;;;;;;;;;;25299:304;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25299:304:0;;;;;;;;:::i;18572:35::-;;;:::i;20713:153::-;;;:::i;:::-;;28994:144;;;;;;;;;;;;;;;;-1:-1:-1;28994:144:0;;:::i;21237:168::-;;;:::i;20977:97::-;;;;;;;;;;;;;;;;-1:-1:-1;20977:97:0;-1:-1:-1;;;;;20977:97:0;;:::i;24468:422::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24468:422:0;;;;;;;;;;;;;;;;;:::i;18777:25::-;;;:::i;31537:268::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31537:268:0;;;;;;;;;;;;;;;;;:::i;21837:119::-;;;;;;;;;;;;;;;;-1:-1:-1;21837:119:0;-1:-1:-1;;;;;21837:119:0;;:::i;18623:37::-;;;:::i;31167:171::-;;;;;;;;;;;;;;;;-1:-1:-1;31167:171:0;;:::i;18406:41::-;;;;;;;;;;;;;;;;-1:-1:-1;18406:41:0;-1:-1:-1;;;;;18406:41:0;;:::i;20558:147::-;;;:::i;17889:42::-;;;:::i;31346:183::-;;;;;;;;;;;;;;;;-1:-1:-1;31346:183:0;;:::i;26106:355::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26106:355:0;;;;;;;;:::i;22169:265::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22169:265:0;;;;;;;;:::i;21082:147::-;;;;;;;;;;;;;;;;-1:-1:-1;21082:147:0;-1:-1:-1;;;;;21082:147:0;;:::i;18733:37::-;;;:::i;29146:982::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29146:982:0;;-1:-1:-1;29146:982:0;-1:-1:-1;29146:982:0;:::i;30136:1023::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30136:1023:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22497:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22497:143:0;;;;;;;;;;:::i;18460:48::-;;;;;;;;;;;;;;;;-1:-1:-1;18460:48:0;-1:-1:-1;;;;;18460:48:0;;:::i;20874:95::-;;;;;;;;;;;;;;;;-1:-1:-1;20874:95:0;-1:-1:-1;;;;;20874:95:0;;:::i;17838:44::-;;;;;;;;;;;;;;;;;;;:::o;22787:256::-;22875:10;22959:4;19769:24;;;:15;:24;;;;;;22959:4;;22875:10;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19769:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;22909:7;;19796:15:::1;-1:-1:-1::0;19761:80:0::1;;;::::0;;-1:-1:-1;;;19761:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::1;;19313:6:::2;::::0;-1:-1:-1;;;19313:6:0;::::2;;;19312:7;::::0;:40:::2;;-1:-1:-1::0;19337:15:0::2;::::0;-1:-1:-1;;;;;19337:15:0::2;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::2;;22976:37:::3;22985:10;22997:7;23006:6;22976:8;:37::i;:::-;-1:-1:-1::0;23031:4:0::3;::::0;22787:256;-1:-1:-1;;;;22787:256:0:o;18515:50::-;;;;;;;;;;;;;:::o;21674:100::-;21754:12;;21674:100;:::o;23517:565::-;23628:10;23744:4;19769:24;;;:15;:24;;;;;;23744:4;;23628:10;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19769:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;23662:6;;19796:15:::1;-1:-1:-1::0;19761:80:0::1;;;::::0;;-1:-1:-1;;;19761:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;19769:24:0;::::2;;::::0;;;:15:::2;:24;::::0;;;;;23692:9;;19796:15:::2;-1:-1:-1::0;19761:80:0::2;;;::::0;;-1:-1:-1;;;19761:80:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::2;;19313:6:::3;::::0;-1:-1:-1;;;19313:6:0;::::3;;;19312:7;::::0;:40:::3;;-1:-1:-1::0;19337:15:0::3;::::0;-1:-1:-1;;;;;19337:15:0::3;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::3;;23761:36:::4;23771:6;23779:9;23790:6;23761:9;:36::i;:::-;-1:-1:-1::0;;;;;23812:19:0;::::4;17829:1;23812:19:::0;;;:11:::4;:19;::::0;;;;;;;23832:10:::4;23812:31:::0;;;;;;;;-1:-1:-1;;;23808:245:0::4;;;23924:117;23933:6;23941:10;23953:87;23989:6;23953:87;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;23953:19:0;::::4;;::::0;;;:11:::4;:19;::::0;;;;;;;23973:10:::4;23953:31:::0;;;;;;;;;:87;:35:::4;:87::i;:::-;23924:8;:117::i;:::-;-1:-1:-1::0;24070:4:0::4;::::0;23517:565;-1:-1:-1;;;;;;23517:565:0:o;18291:108::-;18333:66;18291:108;:::o;17938:35::-;17971:2;17938:35;:::o;18148:31::-;;;;:::o;18696:30::-;;;-1:-1:-1;;;;;18696:30:0;;:::o;25299:304::-;25393:10;25477:4;19769:24;;;:15;:24;;;;;;25477:4;;25393:10;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19769:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;25427:7;;19796:15:::1;-1:-1:-1::0;19761:80:0::1;;;::::0;;-1:-1:-1;;;19761:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::1;;19313:6:::2;::::0;-1:-1:-1;;;19313:6:0;::::2;;;19312:7;::::0;:40:::2;;-1:-1:-1::0;19337:15:0::2;::::0;-1:-1:-1;;;;;19337:15:0::2;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::2;;25503:10:::3;25524:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;25524:32:0;::::3;::::0;;;;;;;;25494:79:::3;::::0;25503:10;25515:7;;25524:48:::3;::::0;25561:10;25524:36:::3;:48::i;18572:35::-:0;;;;:::o;20713:153::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20778:6:::1;::::0;-1:-1:-1;;;20778:6:0;::::1;;;20770:37;;;::::0;;-1:-1:-1;;;20770:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20818:6;:14:::0;;-1:-1:-1;;;;20818:14:0::1;::::0;;20848:10:::1;::::0;::::1;::::0;20827:5:::1;::::0;20848:10:::1;20713:153::o:0;28994:144::-;29054:10;19769:24;;;;:15;:24;;;;;;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;19313:6:::1;::::0;-1:-1:-1;;;19313:6:0;::::1;;;19312:7;::::0;:40:::1;;-1:-1:-1::0;19337:15:0::1;::::0;-1:-1:-1;;;;;19337:15:0::1;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::1;;29105:25:::2;29111:10;29123:6;29105:5;:25::i;:::-;28994:144:::0;;:::o;21237:168::-;19614:22;;-1:-1:-1;;;;;19614:22:0;19600:10;:36;19592:91;;;;-1:-1:-1;;;19592:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21328:22:::1;::::0;21308:43:::1;::::0;-1:-1:-1;;;;;21328:22:0::1;21308:19;:43::i;:::-;21362:22;:35:::0;;-1:-1:-1;;21362:35:0::1;::::0;;21237:168::o;20977:97::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21049:17:::1;21058:7;21049:8;:17::i;:::-;20977:97:::0;:::o;24468:422::-;19465:15;;24589:4;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24633:19:0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;24614:15:::1;:38;24606:79;;;::::0;;-1:-1:-1;;;24606:79:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24723:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;;24704:15:::1;:40;;24696:76;;;::::0;;-1:-1:-1;;;24696:76:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;24785:26;24795:4;24801:2;24805:5;24785:9;:26::i;:::-;24850:2;-1:-1:-1::0;;;;;24827:33:0::1;24844:4;-1:-1:-1::0;;;;;24827:33:0::1;;24854:5;24827:33;;;;;;;;;;;;;;;;;;-1:-1:-1::0;24878:4:0::1;24468:422:::0;;;;;:::o;18777:25::-;;;-1:-1:-1;;;18777:25:0;;;;;:::o;31537:268::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31640:15:::1;31658:5;-1:-1:-1::0;;;;;31658:15:0::1;;31682:4;31658:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;31658:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;31658:30:0;;-1:-1:-1;31707:17:0;;::::1;;31699:57;;;::::0;;-1:-1:-1;;;31699:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31767:30;-1:-1:-1::0;;;;;31767:18:0;::::1;31786:2:::0;31790:6;31767:18:::1;:30::i;:::-;19526:1;31537:268:::0;;;:::o;21837:119::-;-1:-1:-1;;;;;21930:18:0;21903:7;21930:18;;;;;;;;;;;;21837:119::o;18623:37::-;;;;:::o;31167:171::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31253:12:::1;:28:::0;;;31297:33:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;31167:171:::0;:::o;18406:41::-;;;;;;;;;;;;;:::o;20558:147::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20622:6:::1;::::0;-1:-1:-1;;;20622:6:0;::::1;;;20621:7;20613:36;;;::::0;;-1:-1:-1;;;20613:36:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20613:36:0;;;;;;;;;;;;;::::1;;20660:6;:13:::0;;-1:-1:-1;;;;20660:13:0::1;-1:-1:-1::0;;;20660:13:0::1;::::0;;20689:8:::1;::::0;::::1;::::0;20660:13;;20689:8:::1;20558:147::o:0;17889:42::-;;;;;;;;;;;;;;;;;;;:::o;31346:183::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31436:14:::1;:32:::0;;;31484:37:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;31346:183:::0;:::o;26106:355::-;26205:10;26289:4;19769:24;;;:15;:24;;;;;;26289:4;;26205:10;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19769:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;26239:7;;19796:15:::1;-1:-1:-1::0;19761:80:0::1;;;::::0;;-1:-1:-1;;;19761:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::1;;19313:6:::2;::::0;-1:-1:-1;;;19313:6:0;::::2;;;19312:7;::::0;:40:::2;;-1:-1:-1::0;19337:15:0::2;::::0;-1:-1:-1;;;;;19337:15:0::2;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::2;;26306:125:::3;26315:10;26327:7;26336:94;26373:15;26336:94;;;;;;;;;;;;;;;;;26348:10;26336:23;::::0;;;:11:::3;:23;::::0;;;;;;;-1:-1:-1;;;;;26336:32:0;::::3;::::0;;;;;;;;;:94;:36:::3;:94::i;22169:265::-:0;22261:10;22347:4;19769:24;;;:15;:24;;;;;;22347:4;;22261:10;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19769:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;22295:9;;19796:15:::1;-1:-1:-1::0;19761:80:0::1;;;::::0;;-1:-1:-1;;;19761:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;::::1;;19313:6:::2;::::0;-1:-1:-1;;;19313:6:0;::::2;;;19312:7;::::0;:40:::2;;-1:-1:-1::0;19337:15:0::2;::::0;-1:-1:-1;;;;;19337:15:0::2;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::2;;22364:40:::3;22374:10;22386:9;22397:6;22364:9;:40::i;21082:147::-:0;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21178:22:::1;:43:::0;;-1:-1:-1;;21178:43:0::1;-1:-1:-1::0;;;;;21178:43:0;;;::::1;::::0;;;::::1;::::0;;21082:147::o;18733:37::-;;;-1:-1:-1;;;;;18733:37:0;;:::o;29146:982::-;29249:10;19769:24;;;;:15;:24;;;;;;19796:15;-1:-1:-1;19761:80:0;;;;;-1:-1:-1;;;19761:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19761:80:0;;;;;;;;;;;;;;;19313:6:::1;::::0;-1:-1:-1;;;19313:6:0;::::1;;;19312:7;::::0;:40:::1;;-1:-1:-1::0;19337:15:0::1;::::0;-1:-1:-1;;;;;19337:15:0::1;19323:10;:29;19312:40;19304:69;;;::::0;;-1:-1:-1;;;19304:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;19304:69:0;;;;;;;;;;;;;::::1;;29321:35:::0;;::::2;29313:79;;;::::0;;-1:-1:-1;;;29313:79:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;29405:13;29438:9:::0;29433:101:::2;29453:18:::0;;::::2;29433:101;;;29501:21;29511:7;;29519:1;29511:10;;;;;;;;;;;;;29501:5;:9;;:21;;;;:::i;:::-;29493:29:::0;-1:-1:-1;29473:3:0::2;;29433:101;;;;29570:74;29596:5;29570:74;;;;;;;;;;;;;;;;;29580:10;29570:9;:21:::0;;;::::2;::::0;;;;;;;;:74;:25:::2;:74::i;:::-;29556:10;29546:9;:21:::0;;;::::2;::::0;;;;;;:98;;;;29657:464:::2;29677:21:::0;;::::2;29657:464;;;29720:17;29740:10;;29751:1;29740:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;29740:13:0::2;29720:33;;29768:14;29785:7;;29793:1;29785:10;;;;;;;;;::::0;;;::::2;;::::0;-1:-1:-1;;;;;;;29818:23:0;::::2;29810:71;;;;-1:-1:-1::0;;;29810:71:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29904:26:0;::::2;;::::0;;;:15:::2;:26;::::0;;;;;29933:15:::2;-1:-1:-1::0;29896:82:0::2;;;::::0;;-1:-1:-1;;;29896:82:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;;;;;;;29896:82:0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;30018:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;:32:::2;::::0;30043:6;30018:24:::2;:32::i;:::-;-1:-1:-1::0;;;;;29995:20:0;::::2;:9;:20:::0;;;::::2;::::0;;;;;;;;:55;;;;30070:39;;;;;;;29995:20;;30079:10:::2;::::0;30070:39:::2;::::0;;;;;;;;::::2;-1:-1:-1::0;;29700:3:0::2;;29657:464;;;;19384:1;29146:982:::0;;;;;:::o;30136:1023::-;-1:-1:-1;;;;;30347:22:0;;;;;;:15;:22;;;;;;30372:15;-1:-1:-1;30339:78:0;;;;;-1:-1:-1;;;30339:78:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30339:78:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30436:24:0;;;;;;:15;:24;;;;;;30463:15;-1:-1:-1;30428:80:0;;;;;-1:-1:-1;;;30428:80:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;30428:80:0;;;;;;;;;;;;;;;30528:6;;-1:-1:-1;;;30528:6:0;;;;30527:7;;:40;;-1:-1:-1;30552:15:0;;-1:-1:-1;;;;;30552:15:0;30538:10;:29;30527:40;30519:69;;;;;-1:-1:-1;;;30519:69:0;;;;;;;;;;;;-1:-1:-1;;;30519:69:0;;;;;;;;;;;;;;;30619:15;30607:8;:27;;30599:60;;;;;-1:-1:-1;;;30599:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30779:16;;-1:-1:-1;;;;;30875:13:0;;;30674:14;30875:13;;;:6;:13;;;;;;;;:15;;;;;;;;;30824:77;;18333:66;30824:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30814:88;;;;;;30715:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30691:237;;;;;;;;;30968:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30674:14;;30875:15;30968:26;;;;;-1:-1:-1;;30968:26:0;;;;;;;;;;30875:15;30968:26;;;;;;;;;;;;;;;-1:-1:-1;;30968:26:0;;-1:-1:-1;;30968:26:0;;;-1:-1:-1;;;;;;;31015:30:0;;;;;;:59;;;31069:5;-1:-1:-1;;;;;31049:25:0;:16;-1:-1:-1;;;;;31049:25:0;;31015:59;31007:102;;;;;-1:-1:-1;;;31007:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31120:31;31129:5;31136:7;31145:5;31120:8;:31::i;:::-;30136:1023;;;;;;;;;:::o;22497:143::-;-1:-1:-1;;;;;22605:18:0;;;22578:7;22605:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22497:143::o;18460:48::-;;;;;;;;;;;;;:::o;20874:95::-;19465:15;;-1:-1:-1;;;;;19465:15:0;19451:10;:29;19443:72;;;;;-1:-1:-1;;;19443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20945:16:::1;20953:7;20945;:16::i;28540:338::-:0;-1:-1:-1;;;;;28634:19:0;;28626:68;;;;-1:-1:-1;;;28626:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28713:21:0;;28705:68;;;;-1:-1:-1;;;28705:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28786:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28838:32;;;;;;;;;;;;;;;;;28540:338;;;:::o;26951:471::-;-1:-1:-1;;;;;27049:20:0;;27041:70;;;;-1:-1:-1;;;27041:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27130:23:0;;27122:71;;;;-1:-1:-1;;;27122:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27226;27248:6;27226:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27226:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;27206:17:0;;;:9;:17;;;;;;;;;;;:91;;;;27331:20;;;;;;;:32;;27356:6;27331:24;:32::i;:::-;-1:-1:-1;;;;;27308:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27379:35;;;;;;;27308:20;;27379:35;;;;;;;;;;;;;26951: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;27754:348::-;-1:-1:-1;;;;;27830:21:0;;27822:67;;;;-1:-1:-1;;;27822:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27923:68;27946:6;27923:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27923:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;27902:18:0;;:9;:18;;;;;;;;;;:89;28017:12;;:24;;28034:6;28017:16;:24::i;:::-;28002:12;:39;28057:37;;;;;;;;28083:1;;-1:-1:-1;;;;;28057:37:0;;;;;;;;;;;;27754:348;;:::o;21413:196::-;21518:15;;21495:59;;-1:-1:-1;;;;;21495:59:0;;;;21518:15;;21495:59;;21518:15;;21495:59;21565:15;:36;;-1:-1:-1;;21565:36:0;-1:-1:-1;;;;;21565:36:0;;;;;;;;;;21413:196::o;32180:161::-;-1:-1:-1;;;;;32235:22:0;;32260:1;32235:22;;;:13;:22;;;;;;;;:26;;;32272:15;:24;;;;;;:28;;;32316:17;;;32260:1;32316:17;32180: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;31813:359::-;31867:19;31889:33;31909:12;;31889:15;:19;;:33;;;;:::i;:::-;31867:55;;31933:19;31955:53;31975:32;31992:14;;31975:12;;:16;;:32;;;;:::i;:::-;31955:15;;:19;:53::i;:::-;-1:-1:-1;;;;;32019:22:0;;;;;;:13;:22;;;;;;;;:36;;;32066:15;:24;;;;;;:38;;;32120:44;;;;;;;;;;;;;31933:75;;-1:-1:-1;32019:22:0;;32120:44;;;;;;;;;;31813: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://57d18017ba0371a59dfddaa18505c952001721ad0b751945bda17f2f26c1818e

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.