ETH Price: $1,571.93 (+3.16%)
 
Transaction Hash
Method
Block
From
To
Channel Add Fund...221797312025-04-02 7:28:119 days ago1743578891IN
0x5e592F9b...C48284f4e
0 ETH0.00001720.59192469
Deposit221795372025-04-02 6:49:119 days ago1743576551IN
0x5e592F9b...C48284f4e
0 ETH0.000042290.61925018
Channel Add Fund...221795212025-04-02 6:45:599 days ago1743576359IN
0x5e592F9b...C48284f4e
0 ETH0.000016190.55736433
Deposit221795192025-04-02 6:45:359 days ago1743576335IN
0x5e592F9b...C48284f4e
0 ETH0.000038290.56076528
Channel Add Fund...221795052025-04-02 6:42:479 days ago1743576167IN
0x5e592F9b...C48284f4e
0 ETH0.000015590.53680346
Deposit221795032025-04-02 6:42:239 days ago1743576143IN
0x5e592F9b...C48284f4e
0 ETH0.000038830.56869728
Channel Extend A...221478152025-03-28 20:32:4714 days ago1743193967IN
0x5e592F9b...C48284f4e
0 ETH0.000014450.40890478
Deposit221478142025-03-28 20:32:3514 days ago1743193955IN
0x5e592F9b...C48284f4e
0 ETH0.000028250.41376772
Deposit And Open...221478002025-03-28 20:29:4714 days ago1743193787IN
0x5e592F9b...C48284f4e
0 ETH0.000083540.42893589
Open Channel220869602025-03-20 8:44:5922 days ago1742460299IN
0x5e592F9b...C48284f4e
0 ETH0.000095610.55412711
Channel Add Fund...220669082025-03-17 13:27:5925 days ago1742218079IN
0x5e592F9b...C48284f4e
0 ETH0.000050131.47948552
Channel Add Fund...220668532025-03-17 13:16:5925 days ago1742217419IN
0x5e592F9b...C48284f4e
0 ETH0.000055061.62523211
Open Channel By ...220667072025-03-17 12:47:4725 days ago1742215667IN
0x5e592F9b...C48284f4e
0 ETH0.000337851.68261519
Open Channel220661242025-03-17 10:50:1125 days ago1742208611IN
0x5e592F9b...C48284f4e
0 ETH0.000073480.42587451
Withdraw220660972025-03-17 10:44:4725 days ago1742208287IN
0x5e592F9b...C48284f4e
0 ETH0.000019990.41020451
Channel Add Fund...220141922025-03-10 4:49:5932 days ago1741582199IN
0x5e592F9b...C48284f4e
0 ETH0.000024360.7197799
Channel Extend A...220141872025-03-10 4:48:5932 days ago1741582139IN
0x5e592F9b...C48284f4e
0 ETH0.000030760.71718547
Channel Add Fund...219906082025-03-06 21:43:4736 days ago1741297427IN
0x5e592F9b...C48284f4e
0 ETH0.00003991.17799978
Channel Claim Ti...219904512025-03-06 21:12:2336 days ago1741295543IN
0x5e592F9b...C48284f4e
0 ETH0.000067181.24556224
Withdraw219904362025-03-06 21:09:2336 days ago1741295363IN
0x5e592F9b...C48284f4e
0 ETH0.000058671.20410145
Withdraw219903902025-03-06 21:00:1136 days ago1741294811IN
0x5e592F9b...C48284f4e
0 ETH0.000054791.12465136
Open Channel219903212025-03-06 20:46:1136 days ago1741293971IN
0x5e592F9b...C48284f4e
0 ETH0.00019161.11037294
Open Channel219902752025-03-06 20:36:5936 days ago1741293419IN
0x5e592F9b...C48284f4e
0 ETH0.000205731.19229388
Channel Extend A...219900322025-03-06 19:47:5936 days ago1741290479IN
0x5e592F9b...C48284f4e
0 ETH0.000032560.75892351
Open Channel219898202025-03-06 19:05:3536 days ago1741287935IN
0x5e592F9b...C48284f4e
0 ETH0.00013570.78645181
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:
MultiPartyEscrow

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-11
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // 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);
            }
        }
    }
}

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

// File: contracts\MultiPartyEscrow.sol

pragma solidity ^0.6.0;



contract MultiPartyEscrow {
    
    using SafeMath for uint256;
    
    //TODO: we could use uint64 for value, nonce and expiration (it could be cheaper to store but more expensive to operate with)
    //the full ID of "atomic" payment channel = "[this, channelId, nonce]"
    struct PaymentChannel {
        uint256 nonce;       // "nonce" of the channel (by changing nonce we effectivly close the old channel ([this, channelId, oldNonce])
                             //  and open the new channel [this, channelId, newNonce])
                             //!!! nonce also prevents race conditon between channelClaim and channelExtendAndAddFunds
        address sender;      // The account sending payments.
        address signer;      // signer on behalf of sender
        address recipient;   // The account receiving the payments.
        bytes32 groupId;     // id of group of replicas who share the same payment channel
                             // You should generate groupId randomly in order to prevent
                             // two PaymentChannel with the same [recipient, groupId]
        uint256 value;       // Total amount of tokens deposited to the channel. 
        uint256 expiration;  // Timeout (in block numbers) in case the recipient never closes.
                             // if block.number > expiration then sender can call channelClaimTimeout
    }


    mapping (uint256 => PaymentChannel) public channels;
    mapping (address => uint256)        public balances; //tokens which have been deposit but haven't been escrowed in the channels
   
    uint256 public nextChannelId; //id of the next channel (and size of channels)
 
    ERC20 public token; // Address of token contract
    
    //already used messages for openChannelByThirdParty in order to prevent replay attack
    mapping (bytes32 => bool) public usedMessages; 

    // Events
    event ChannelOpen(uint256 channelId, uint256 nonce, address indexed sender, address signer, address indexed recipient, bytes32 indexed groupId, uint256 amount, uint256 expiration);
    event ChannelClaim(uint256 indexed channelId, uint256 nonce, address indexed recipient, uint256 claimAmount, uint256 plannedAmount, uint256 sendBackAmount, uint256 keepAmount);
    event ChannelSenderClaim(uint256 indexed channelId, uint256 nonce, uint256 claimAmount);
    event ChannelExtend(uint256 indexed channelId, uint256 newExpiration);
    event ChannelAddFunds(uint256 indexed channelId, uint256 additionalFunds);
    event DepositFunds(address indexed sender, uint256 amount);
    event WithdrawFunds(address indexed sender, uint256 amount);
    event TransferFunds(address indexed sender, address indexed receiver, uint256 amount);

    constructor (address _token)
    public
    {
        token = ERC20(_token);
    }
  
    function deposit(uint256 value) 
    public
    returns(bool) 
    {
        require(token.transferFrom(msg.sender, address(this), value), "Unable to transfer token to the contract."); 
        balances[msg.sender] = balances[msg.sender].add(value);
        emit DepositFunds(msg.sender, value);
        return true;
    }
    
    function withdraw(uint256 value)
    public
    returns(bool)
    {
        require(balances[msg.sender] >= value, "Insufficient balance in the contract.");
        require(token.transfer(msg.sender, value), "Unable to transfer token to the contract.");
        balances[msg.sender] = balances[msg.sender].sub(value);
        emit WithdrawFunds(msg.sender, value);
        return true;
    }
    
    function transfer(address receiver, uint256 value)
    public
    returns(bool)
    {
        require(balances[msg.sender] >= value, "Insufficient balance in the contract");
        balances[msg.sender] = balances[msg.sender].sub(value);
        balances[receiver] = balances[receiver].add(value);

        emit TransferFunds(msg.sender, receiver, value);
        return true;
    }
    
    
    //open a channel, token should be already being deposit
    //openChannel should be run only once for given sender, recipient, groupId
    //channel can be reused even after channelClaim(..., isSendback=true)
    function openChannel(address signer, address recipient, bytes32 groupId, uint256 value, uint256 expiration)
    public
    returns(bool)
    {
        require(balances[msg.sender] >= value, "Insufficient balance in the contract.");
        require(signer != address(0));

        require(_openChannel(msg.sender, signer, recipient, groupId, value, expiration), "Unable to open channel");
        return true;
    }
    
    //open a channel on behalf of the user. Sender should send the signed permission to open the channel
    function openChannelByThirdParty(address sender, address signer, address recipient, bytes32 groupId, uint256 value, uint256 expiration, uint256 messageNonce, uint8 v, bytes32 r, bytes32 s) 
    public
    returns(bool) 
    {
        require(balances[msg.sender] >= value, "Insufficient balance");

        // Blocks seems to take variable time based on network congestion for now removing it. Message nounce will be a blocknumber
        //require(messageNonce >= block.number-5 && messageNonce <= block.number+5, "Invalid message nonce");

        //compose the message which was signed
        bytes32 message = prefixed(keccak256(abi.encodePacked("__openChannelByThirdParty", this, msg.sender, signer, recipient, groupId, value, expiration, messageNonce)));
        
        //check for replay attack (message can be used only once)
        require( ! usedMessages[message], "Signature has already been used");
        usedMessages[message] = true;

        // check that the signature is from the "sender"
        require(ecrecover(message, v, r, s) == sender, "Invalid signature");

        require(_openChannel(sender, signer, recipient, groupId, value, expiration), "Unable to open channel");
        
        return true;
    }

    function _openChannel(address sender, address signer, address recipient, bytes32 groupId, uint256 value, uint256 expiration)
    private
    returns(bool)
    {
        channels[nextChannelId] = PaymentChannel({
            nonce        : 0,
            sender       : sender,
            signer       : signer,
            recipient    : recipient,
            groupId      : groupId,
            value        : value,
            expiration   : expiration
        });
      
        balances[msg.sender] = balances[msg.sender].sub(value);
        emit ChannelOpen(nextChannelId, 0, sender, signer, recipient, groupId, value, expiration);
        nextChannelId += 1;
        return true;
    }

    function depositAndOpenChannel(address signer, address recipient, bytes32 groupId, uint256 value, uint256 expiration)
    public
    returns(bool)
    {
        require(deposit(value), "Unable to deposit token to the contract.");
        require(openChannel(signer, recipient, groupId, value, expiration), "Unable to open channel.");
        return true;
    }


    function _channelSendbackAndReopenSuspended(uint256 channelId)
    private
    {
        PaymentChannel storage channel = channels[channelId];

        balances[channel.sender] = balances[channel.sender].add(channel.value); 
        channel.value            = 0;
        channel.nonce           += 1;
        channel.expiration       = 0;
    }

    /**
     * @dev function to claim multiple channels at a time. Needs to send limited channels per call
     * @param channelIds list of channel Ids
     * @param actualAmounts list of actual amounts should be aligned with channel ids index
     * @param plannedAmounts list of planned amounts should be aligned with channel ids index
     * @param isSendbacks list of sendbacks flags
     * @param v channel senders signatures in V R S for each channel
     * @param r channel senders signatures in V R S for each channel
     * @param s channel senders signatures in V R S for each channel
     */
    function multiChannelClaim(uint256[] memory channelIds, uint256[] memory actualAmounts, uint256[] memory plannedAmounts, bool[] memory isSendbacks, uint8[] memory v, bytes32[] memory r, bytes32[] memory s) 
    public 
    {
        uint256 len = channelIds.length;
        
        require(plannedAmounts.length == len && actualAmounts.length == len && isSendbacks.length == len && v.length == len && r.length == len && s.length == len, "Invalid function parameters.");
        for(uint256 i=0; i<len ; i++) {
            channelClaim(channelIds[i], actualAmounts[i], plannedAmounts[i], v[i], r[i], s[i], isSendbacks[i]);
        }
        
    }

    function channelClaim(uint256 channelId, uint256 actualAmount, uint256 plannedAmount, uint8 v, bytes32 r, bytes32 s, bool isSendback) 
    public 
    {
        PaymentChannel storage channel = channels[channelId];
        require(actualAmount <= channel.value, "Insufficient channel amount");
        require(msg.sender == channel.recipient, "Invalid recipient");
        require(actualAmount <= plannedAmount, "Invalid actual amount");
        
        //compose the message which was signed
        bytes32 message = prefixed(keccak256(abi.encodePacked("__MPE_claim_message", this, channelId, channel.nonce, plannedAmount)));
        // check that the signature is from the signer
        address signAddress = ecrecover(message, v, r, s);
        require(signAddress == channel.signer || signAddress == channel.sender, "Invalid signature");
        
        //transfer amount from the channel to the sender
        channel.value        =        channel.value.sub(actualAmount);
        balances[msg.sender] = balances[msg.sender].add(actualAmount);
   
        if (isSendback)    
            {
                _channelSendbackAndReopenSuspended(channelId);
                emit ChannelClaim(channelId, channel.nonce, msg.sender, actualAmount, plannedAmount, channel.value, 0);
            }
            else
            {
                //reopen new "channel", without sending back funds to "sender"        
                channel.nonce += 1;
                emit ChannelClaim(channelId, channel.nonce, msg.sender, actualAmount, plannedAmount, 0, channel.value);
            }
    }



    /// the sender can extend the expiration at any time
    function channelExtend(uint256 channelId, uint256 newExpiration) 
    public 
    returns(bool)
    {
        PaymentChannel storage channel = channels[channelId];

        require(msg.sender == channel.sender, "Sender not authorized");
        require(newExpiration >= channel.expiration, "Invalid expiration.");

        channels[channelId].expiration = newExpiration;
        
        emit ChannelExtend(channelId, newExpiration);
        return true;
    }
    
    /// the sender could add funds to the channel at any time
    /// any one can fund the channel irrespective of the sender
    function channelAddFunds(uint256 channelId, uint256 amount)
    public
    returns(bool)
    {
        require(balances[msg.sender] >= amount, "Insufficient balance in the contract");

        //tranfser amount from sender to the channel
        balances[msg.sender]      = balances[msg.sender].sub     (amount);
        channels[channelId].value = channels[channelId].value.add(amount);
        
        emit ChannelAddFunds(channelId, amount);
        return true;
    }

    function channelExtendAndAddFunds(uint256 channelId, uint256 newExpiration, uint256 amount)
    public
    {
        require(channelExtend(channelId, newExpiration), "Unable to extend the channel.");
        require(channelAddFunds(channelId, amount), "Unable to add funds to channel.");
    }
    
    // sender can claim refund if the timeout is reached 
    function channelClaimTimeout(uint256 channelId) 
    public 
    {
        require(msg.sender == channels[channelId].sender, "Sender not authorized.");
        require(block.number >= channels[channelId].expiration, "Claim called too early.");
        _channelSendbackAndReopenSuspended(channelId);
        
        emit ChannelSenderClaim(channelId, channels[channelId].nonce, channels[channelId].value);
    }


    /// builds a prefixed hash to mimic the behavior of ethSign.
    function prefixed(bytes32 hash) internal pure returns (bytes32) 
    {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }
    
    
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"channelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"additionalFunds","type":"uint256"}],"name":"ChannelAddFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"channelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"plannedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sendBackAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"keepAmount","type":"uint256"}],"name":"ChannelClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"channelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newExpiration","type":"uint256"}],"name":"ChannelExtend","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"channelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"signer","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"bytes32","name":"groupId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expiration","type":"uint256"}],"name":"ChannelOpen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"channelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"ChannelSenderClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DepositFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawFunds","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"channelId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"channelAddFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"channelId","type":"uint256"},{"internalType":"uint256","name":"actualAmount","type":"uint256"},{"internalType":"uint256","name":"plannedAmount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"bool","name":"isSendback","type":"bool"}],"name":"channelClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"channelId","type":"uint256"}],"name":"channelClaimTimeout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"channelId","type":"uint256"},{"internalType":"uint256","name":"newExpiration","type":"uint256"}],"name":"channelExtend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"channelId","type":"uint256"},{"internalType":"uint256","name":"newExpiration","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"channelExtendAndAddFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"channels","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"groupId","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"groupId","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"}],"name":"depositAndOpenChannel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"channelIds","type":"uint256[]"},{"internalType":"uint256[]","name":"actualAmounts","type":"uint256[]"},{"internalType":"uint256[]","name":"plannedAmounts","type":"uint256[]"},{"internalType":"bool[]","name":"isSendbacks","type":"bool[]"},{"internalType":"uint8[]","name":"v","type":"uint8[]"},{"internalType":"bytes32[]","name":"r","type":"bytes32[]"},{"internalType":"bytes32[]","name":"s","type":"bytes32[]"}],"name":"multiChannelClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nextChannelId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"groupId","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"}],"name":"openChannel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"groupId","type":"bytes32"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"expiration","type":"uint256"},{"internalType":"uint256","name":"messageNonce","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"openChannelByThirdParty","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedMessages","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051611d56380380611d568339818101604052602081101561003357600080fd5b5051600380546001600160a01b0319166001600160a01b03909216919091179055611cf3806100636000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063aa5f510a116100a2578063da2a5b4f11610071578063da2a5b4f146106e5578063e3b3925014610708578063e5949b5d1461074a578063f4606f00146107ae578063fc0c546a146107b65761010b565b8063aa5f510a14610298578063b6b55f2514610645578063b8da092214610662578063baea65b5146106c85761010b565b80632e1a7d4d116100de5780632e1a7d4d1461020f57806345059a5d1461022c5780635a0284001461024f578063a9059cbb1461026c5761010b565b8063047df8f9146101105780630c19d0ec146101665780631d41f87c1461019157806327e235e3146101d7575b600080fd5b610152600480360360a081101561012657600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356107da565b604080519115158252519081900360200190f35b61018f6004803603606081101561017c57600080fd5b508035906020810135906040013561088a565b005b61018f600480360360e08110156101a757600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a08101359060c001351515610945565b6101fd600480360360208110156101ed57600080fd5b50356001600160a01b0316610cbc565b60408051918252519081900360200190f35b6101526004803603602081101561022557600080fd5b5035610cce565b6101526004803603604081101561024257600080fd5b5080359060200135610e48565b6101526004803603602081101561026557600080fd5b5035610f50565b6101526004803603604081101561028257600080fd5b506001600160a01b038135169060200135610f65565b61018f600480360360e08110156102ae57600080fd5b810190602081018135600160201b8111156102c857600080fd5b8201836020820111156102da57600080fd5b803590602001918460208302840111600160201b831117156102fb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561034a57600080fd5b82018360208201111561035c57600080fd5b803590602001918460208302840111600160201b8311171561037d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103cc57600080fd5b8201836020820111156103de57600080fd5b803590602001918460208302840111600160201b831117156103ff57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561044e57600080fd5b82018360208201111561046057600080fd5b803590602001918460208302840111600160201b8311171561048157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104d057600080fd5b8201836020820111156104e257600080fd5b803590602001918460208302840111600160201b8311171561050357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055257600080fd5b82018360208201111561056457600080fd5b803590602001918460208302840111600160201b8311171561058557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105d457600080fd5b8201836020820111156105e657600080fd5b803590602001918460208302840111600160201b8311171561060757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611063945050505050565b6101526004803603602081101561065b57600080fd5b50356111a8565b610152600480360361014081101561067957600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060808101359060a08101359060c08101359060ff60e082013516906101008101359061012001356112d9565b61018f600480360360208110156106de57600080fd5b5035611595565b610152600480360360408110156106fb57600080fd5b50803590602001356116be565b610152600480360360a081101561071e57600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356117ae565b6107676004803603602081101561076057600080fd5b5035611867565b604080519788526001600160a01b03968716602089015294861687860152929094166060860152608085015260a084019290925260c0830191909152519081900360e00190f35b6101fd6118b2565b6107be6118b8565b604080516001600160a01b039092168252519081900360200190f35b60006107e5836111a8565b6108205760405162461bcd60e51b8152600401808060200182810382526028815260200180611c4d6028913960400191505060405180910390fd5b61082d86868686866117ae565b61087e576040805162461bcd60e51b815260206004820152601760248201527f556e61626c6520746f206f70656e206368616e6e656c2e000000000000000000604482015290519081900360640190fd5b50600195945050505050565b6108948383610e48565b6108e5576040805162461bcd60e51b815260206004820152601d60248201527f556e61626c6520746f20657874656e6420746865206368616e6e656c2e000000604482015290519081900360640190fd5b6108ef83826116be565b610940576040805162461bcd60e51b815260206004820152601f60248201527f556e61626c6520746f206164642066756e647320746f206368616e6e656c2e00604482015290519081900360640190fd5b505050565b600087815260208190526040902060058101548711156109ac576040805162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74206368616e6e656c20616d6f756e740000000000604482015290519081900360640190fd5b60038101546001600160a01b03163314610a01576040805162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081c9958da5c1a595b9d607a1b604482015290519081900360640190fd5b85871115610a4e576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a59081858dd1d585b08185b5bdd5b9d605a1b604482015290519081900360640190fd5b805460408051725f5f4d50455f636c61696d5f6d65737361676560681b6020808301919091523060601b6033830152604782018c9052606782019390935260878082018a90528251808303909101815260a79091019091528051910120600090610ab7906118c7565b9050600060018288888860405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610b18573d6000803e3d6000fd5b5050604051601f19015160028501549092506001600160a01b03808416911614905080610b54575060018301546001600160a01b038281169116145b610b99576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6005830154610bae908a63ffffffff61191816565b600584015533600090815260016020526040902054610bd3908a63ffffffff61196116565b336000908152600160205260409020558315610c5057610bf28a6119bb565b8254600584015460408051928352602083018c90528281018b90526060830191909152600060808301525133918c917f77c3504a57863d978ba4c28ea297490f1f4814365f5ed32b35cbf5b695db003c9181900360a00190a3610cb0565b8254600101808455600584015460408051928352602083018c90528281018b90526000606084015260808301919091525133918c917f77c3504a57863d978ba4c28ea297490f1f4814365f5ed32b35cbf5b695db003c9181900360a00190a35b50505050505050505050565b60016020526000908152604090205481565b33600090815260016020526040812054821115610d1c5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c756025913960400191505060405180910390fd5b6003546040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015610d7057600080fd5b505af1158015610d84573d6000803e3d6000fd5b505050506040513d6020811015610d9a57600080fd5b5051610dd75760405162461bcd60e51b8152600401808060200182810382526029815260200180611c246029913960400191505060405180910390fd5b33600090815260016020526040902054610df7908363ffffffff61191816565b33600081815260016020908152604091829020939093558051858152905191927f21901fa892c430ea8bd38b9390225ac8e67eac75ee10ffba16feefc539a288f992918290030190a2506001919050565b600082815260208190526040812060018101546001600160a01b03163314610eaf576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b8060060154831015610efe576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b21032bc3834b930ba34b7b71760691b604482015290519081900360640190fd5b600084815260208181526040918290206006018590558151858152915186927ff8d4e64f6b2b3db6aaf38b319e259285a48ecd0c5bc0115c9928aba297c7342092908290030190a25060019392505050565b60046020526000908152604090205460ff1681565b33600090815260016020526040812054821115610fb35760405162461bcd60e51b8152600401808060200182810382526024815260200180611c9a6024913960400191505060405180910390fd5b33600090815260016020526040902054610fd3908363ffffffff61191816565b33600090815260016020526040808220929092556001600160a01b03851681522054611005908363ffffffff61196116565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927f5a0155838afb0f859197785e575b9ad1afeb456c6e522b6f632ee8465941315e9281900390910190a350600192915050565b86518551811480156110755750808751145b80156110815750808551145b801561108d5750808451145b80156110995750808351145b80156110a55750808251145b6110f6576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642066756e6374696f6e20706172616d65746572732e00000000604482015290519081900360640190fd5b60005b8181101561119d5761119589828151811061111057fe5b602002602001015189838151811061112457fe5b602002602001015189848151811061113857fe5b602002602001015188858151811061114c57fe5b602002602001015188868151811061116057fe5b602002602001015188878151811061117457fe5b60200260200101518c888151811061118857fe5b6020026020010151610945565b6001016110f9565b505050505050505050565b600354604080516323b872dd60e01b81523360048201523060248201526044810184905290516000926001600160a01b0316916323b872dd91606480830192602092919082900301818787803b15801561120157600080fd5b505af1158015611215573d6000803e3d6000fd5b505050506040513d602081101561122b57600080fd5b50516112685760405162461bcd60e51b8152600401808060200182810382526029815260200180611c246029913960400191505060405180910390fd5b33600090815260016020526040902054611288908363ffffffff61196116565b33600081815260016020908152604091829020939093558051858152905191927fd241e73300212f6df233a8e6d3146b88a9d4964e06621d54b5ff6afeba7b1b8892918290030190a2506001919050565b33600090815260016020526040812054871115611334576040805162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b604080517f5f5f6f70656e4368616e6e656c4279546869726450617274790000000000000060208083019190915230606090811b603984015233811b604d8401526bffffffffffffffffffffffff198e821b81166061850152908d901b166075830152608982018b905260a982018a905260c9820189905260e98083018990528351808403909101815261010990920190925280519101206000906113d8906118c7565b60008181526004602052604090205490915060ff161561143f576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b60016004600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508b6001600160a01b031660018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156114d2573d6000803e3d6000fd5b505050602060405103516001600160a01b03161461152b576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6115398c8c8c8c8c8c611a2b565b611583576040805162461bcd60e51b8152602060048201526016602482015275155b98589b19481d1bc81bdc195b8818da185b9b995b60521b604482015290519081900360640190fd5b5060019b9a5050505050505050505050565b6000818152602081905260409020600101546001600160a01b031633146115fc576040805162461bcd60e51b815260206004820152601660248201527529b2b73232b9103737ba1030baba3437b934bd32b21760511b604482015290519081900360640190fd5b600081815260208190526040902060060154431015611662576040805162461bcd60e51b815260206004820152601760248201527f436c61696d2063616c6c656420746f6f206561726c792e000000000000000000604482015290519081900360640190fd5b61166b816119bb565b600081815260208181526040918290208054600590910154835191825291810191909152815183927f592ba8545b0ef2ef56ac54c4db27df2bdbb2a60acc1c5a4ac134eccc20cb8096928290030190a250565b3360009081526001602052604081205482111561170c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c9a6024913960400191505060405180910390fd5b3360009081526001602052604090205461172c908363ffffffff61191816565b33600090815260016020908152604080832093909355858252819052206005015461175d908363ffffffff61196116565b60008481526020818152604091829020600501929092558051848152905185927fb0e2286f86435d8f98d9cf1c908b693792eb905dd03cd40d2b1d23a3e5311a40928290030190a250600192915050565b336000908152600160205260408120548311156117fc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c756025913960400191505060405180910390fd5b6001600160a01b03861661180f57600080fd5b61181d338787878787611a2b565b61087e576040805162461bcd60e51b8152602060048201526016602482015275155b98589b19481d1bc81bdc195b8818da185b9b995b60521b604482015290519081900360640190fd5b600060208190529081526040902080546001820154600283015460038401546004850154600586015460069096015494956001600160a01b0394851695938516949092169290919087565b60025481565b6003546001600160a01b031681565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600061195a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8c565b9392505050565b60008282018381101561195a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008181526020818152604080832060058101546001808301546001600160a01b031686529093529220546119f59163ffffffff61196116565b6001828101546001600160a01b031660009081526020829052604081209290925560058301829055825401825560069091015550565b6040805160e08101825260008082526001600160a01b03808a1660208085019182528a83168587019081528a841660608701908152608087018b815260a088018b815260c089018b8152600280548a528987528b8a209a518b5596516001808c018054928b166001600160a01b03199384161790559551978b018054988a1698821698909817909755925160038a01805491909816961695909517909555935160048701559151600586015591516006909401939093553382529190915290812054611afd908463ffffffff61191816565b336000908152600160209081526040808320939093556002548351908152908101919091526001600160a01b038881168284015260608201869052608082018590529151869288811692908b16917f172899db3034d5e4e68a2873998cc66a59bad4610fa6319a51f31f75e84452b79181900360a00190a4506002805460019081019091559695505050505050565b60008184841115611c1b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be0578181015183820152602001611bc8565b50505050905090810190601f168015611c0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe556e61626c6520746f207472616e7366657220746f6b656e20746f2074686520636f6e74726163742e556e61626c6520746f206465706f73697420746f6b656e20746f2074686520636f6e74726163742e496e73756666696369656e742062616c616e636520696e2074686520636f6e74726163742e496e73756666696369656e742062616c616e636520696e2074686520636f6e7472616374a2646970667358221220cff22c9e6287b881a51a9f49de0bee58907447bdedbf6765d8901045b802bded64736f6c634300060200330000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063aa5f510a116100a2578063da2a5b4f11610071578063da2a5b4f146106e5578063e3b3925014610708578063e5949b5d1461074a578063f4606f00146107ae578063fc0c546a146107b65761010b565b8063aa5f510a14610298578063b6b55f2514610645578063b8da092214610662578063baea65b5146106c85761010b565b80632e1a7d4d116100de5780632e1a7d4d1461020f57806345059a5d1461022c5780635a0284001461024f578063a9059cbb1461026c5761010b565b8063047df8f9146101105780630c19d0ec146101665780631d41f87c1461019157806327e235e3146101d7575b600080fd5b610152600480360360a081101561012657600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356107da565b604080519115158252519081900360200190f35b61018f6004803603606081101561017c57600080fd5b508035906020810135906040013561088a565b005b61018f600480360360e08110156101a757600080fd5b5080359060208101359060408101359060ff6060820135169060808101359060a08101359060c001351515610945565b6101fd600480360360208110156101ed57600080fd5b50356001600160a01b0316610cbc565b60408051918252519081900360200190f35b6101526004803603602081101561022557600080fd5b5035610cce565b6101526004803603604081101561024257600080fd5b5080359060200135610e48565b6101526004803603602081101561026557600080fd5b5035610f50565b6101526004803603604081101561028257600080fd5b506001600160a01b038135169060200135610f65565b61018f600480360360e08110156102ae57600080fd5b810190602081018135600160201b8111156102c857600080fd5b8201836020820111156102da57600080fd5b803590602001918460208302840111600160201b831117156102fb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561034a57600080fd5b82018360208201111561035c57600080fd5b803590602001918460208302840111600160201b8311171561037d57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156103cc57600080fd5b8201836020820111156103de57600080fd5b803590602001918460208302840111600160201b831117156103ff57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561044e57600080fd5b82018360208201111561046057600080fd5b803590602001918460208302840111600160201b8311171561048157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156104d057600080fd5b8201836020820111156104e257600080fd5b803590602001918460208302840111600160201b8311171561050357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561055257600080fd5b82018360208201111561056457600080fd5b803590602001918460208302840111600160201b8311171561058557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156105d457600080fd5b8201836020820111156105e657600080fd5b803590602001918460208302840111600160201b8311171561060757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611063945050505050565b6101526004803603602081101561065b57600080fd5b50356111a8565b610152600480360361014081101561067957600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060808101359060a08101359060c08101359060ff60e082013516906101008101359061012001356112d9565b61018f600480360360208110156106de57600080fd5b5035611595565b610152600480360360408110156106fb57600080fd5b50803590602001356116be565b610152600480360360a081101561071e57600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356117ae565b6107676004803603602081101561076057600080fd5b5035611867565b604080519788526001600160a01b03968716602089015294861687860152929094166060860152608085015260a084019290925260c0830191909152519081900360e00190f35b6101fd6118b2565b6107be6118b8565b604080516001600160a01b039092168252519081900360200190f35b60006107e5836111a8565b6108205760405162461bcd60e51b8152600401808060200182810382526028815260200180611c4d6028913960400191505060405180910390fd5b61082d86868686866117ae565b61087e576040805162461bcd60e51b815260206004820152601760248201527f556e61626c6520746f206f70656e206368616e6e656c2e000000000000000000604482015290519081900360640190fd5b50600195945050505050565b6108948383610e48565b6108e5576040805162461bcd60e51b815260206004820152601d60248201527f556e61626c6520746f20657874656e6420746865206368616e6e656c2e000000604482015290519081900360640190fd5b6108ef83826116be565b610940576040805162461bcd60e51b815260206004820152601f60248201527f556e61626c6520746f206164642066756e647320746f206368616e6e656c2e00604482015290519081900360640190fd5b505050565b600087815260208190526040902060058101548711156109ac576040805162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e74206368616e6e656c20616d6f756e740000000000604482015290519081900360640190fd5b60038101546001600160a01b03163314610a01576040805162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081c9958da5c1a595b9d607a1b604482015290519081900360640190fd5b85871115610a4e576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a59081858dd1d585b08185b5bdd5b9d605a1b604482015290519081900360640190fd5b805460408051725f5f4d50455f636c61696d5f6d65737361676560681b6020808301919091523060601b6033830152604782018c9052606782019390935260878082018a90528251808303909101815260a79091019091528051910120600090610ab7906118c7565b9050600060018288888860405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015610b18573d6000803e3d6000fd5b5050604051601f19015160028501549092506001600160a01b03808416911614905080610b54575060018301546001600160a01b038281169116145b610b99576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6005830154610bae908a63ffffffff61191816565b600584015533600090815260016020526040902054610bd3908a63ffffffff61196116565b336000908152600160205260409020558315610c5057610bf28a6119bb565b8254600584015460408051928352602083018c90528281018b90526060830191909152600060808301525133918c917f77c3504a57863d978ba4c28ea297490f1f4814365f5ed32b35cbf5b695db003c9181900360a00190a3610cb0565b8254600101808455600584015460408051928352602083018c90528281018b90526000606084015260808301919091525133918c917f77c3504a57863d978ba4c28ea297490f1f4814365f5ed32b35cbf5b695db003c9181900360a00190a35b50505050505050505050565b60016020526000908152604090205481565b33600090815260016020526040812054821115610d1c5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c756025913960400191505060405180910390fd5b6003546040805163a9059cbb60e01b81523360048201526024810185905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015610d7057600080fd5b505af1158015610d84573d6000803e3d6000fd5b505050506040513d6020811015610d9a57600080fd5b5051610dd75760405162461bcd60e51b8152600401808060200182810382526029815260200180611c246029913960400191505060405180910390fd5b33600090815260016020526040902054610df7908363ffffffff61191816565b33600081815260016020908152604091829020939093558051858152905191927f21901fa892c430ea8bd38b9390225ac8e67eac75ee10ffba16feefc539a288f992918290030190a2506001919050565b600082815260208190526040812060018101546001600160a01b03163314610eaf576040805162461bcd60e51b815260206004820152601560248201527414d95b99195c881b9bdd08185d5d1a1bdc9a5e9959605a1b604482015290519081900360640190fd5b8060060154831015610efe576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b21032bc3834b930ba34b7b71760691b604482015290519081900360640190fd5b600084815260208181526040918290206006018590558151858152915186927ff8d4e64f6b2b3db6aaf38b319e259285a48ecd0c5bc0115c9928aba297c7342092908290030190a25060019392505050565b60046020526000908152604090205460ff1681565b33600090815260016020526040812054821115610fb35760405162461bcd60e51b8152600401808060200182810382526024815260200180611c9a6024913960400191505060405180910390fd5b33600090815260016020526040902054610fd3908363ffffffff61191816565b33600090815260016020526040808220929092556001600160a01b03851681522054611005908363ffffffff61196116565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927f5a0155838afb0f859197785e575b9ad1afeb456c6e522b6f632ee8465941315e9281900390910190a350600192915050565b86518551811480156110755750808751145b80156110815750808551145b801561108d5750808451145b80156110995750808351145b80156110a55750808251145b6110f6576040805162461bcd60e51b815260206004820152601c60248201527f496e76616c69642066756e6374696f6e20706172616d65746572732e00000000604482015290519081900360640190fd5b60005b8181101561119d5761119589828151811061111057fe5b602002602001015189838151811061112457fe5b602002602001015189848151811061113857fe5b602002602001015188858151811061114c57fe5b602002602001015188868151811061116057fe5b602002602001015188878151811061117457fe5b60200260200101518c888151811061118857fe5b6020026020010151610945565b6001016110f9565b505050505050505050565b600354604080516323b872dd60e01b81523360048201523060248201526044810184905290516000926001600160a01b0316916323b872dd91606480830192602092919082900301818787803b15801561120157600080fd5b505af1158015611215573d6000803e3d6000fd5b505050506040513d602081101561122b57600080fd5b50516112685760405162461bcd60e51b8152600401808060200182810382526029815260200180611c246029913960400191505060405180910390fd5b33600090815260016020526040902054611288908363ffffffff61196116565b33600081815260016020908152604091829020939093558051858152905191927fd241e73300212f6df233a8e6d3146b88a9d4964e06621d54b5ff6afeba7b1b8892918290030190a2506001919050565b33600090815260016020526040812054871115611334576040805162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b604080517f5f5f6f70656e4368616e6e656c4279546869726450617274790000000000000060208083019190915230606090811b603984015233811b604d8401526bffffffffffffffffffffffff198e821b81166061850152908d901b166075830152608982018b905260a982018a905260c9820189905260e98083018990528351808403909101815261010990920190925280519101206000906113d8906118c7565b60008181526004602052604090205490915060ff161561143f576040805162461bcd60e51b815260206004820152601f60248201527f5369676e61747572652068617320616c7265616479206265656e207573656400604482015290519081900360640190fd5b60016004600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508b6001600160a01b031660018287878760405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156114d2573d6000803e3d6000fd5b505050602060405103516001600160a01b03161461152b576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6115398c8c8c8c8c8c611a2b565b611583576040805162461bcd60e51b8152602060048201526016602482015275155b98589b19481d1bc81bdc195b8818da185b9b995b60521b604482015290519081900360640190fd5b5060019b9a5050505050505050505050565b6000818152602081905260409020600101546001600160a01b031633146115fc576040805162461bcd60e51b815260206004820152601660248201527529b2b73232b9103737ba1030baba3437b934bd32b21760511b604482015290519081900360640190fd5b600081815260208190526040902060060154431015611662576040805162461bcd60e51b815260206004820152601760248201527f436c61696d2063616c6c656420746f6f206561726c792e000000000000000000604482015290519081900360640190fd5b61166b816119bb565b600081815260208181526040918290208054600590910154835191825291810191909152815183927f592ba8545b0ef2ef56ac54c4db27df2bdbb2a60acc1c5a4ac134eccc20cb8096928290030190a250565b3360009081526001602052604081205482111561170c5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c9a6024913960400191505060405180910390fd5b3360009081526001602052604090205461172c908363ffffffff61191816565b33600090815260016020908152604080832093909355858252819052206005015461175d908363ffffffff61196116565b60008481526020818152604091829020600501929092558051848152905185927fb0e2286f86435d8f98d9cf1c908b693792eb905dd03cd40d2b1d23a3e5311a40928290030190a250600192915050565b336000908152600160205260408120548311156117fc5760405162461bcd60e51b8152600401808060200182810382526025815260200180611c756025913960400191505060405180910390fd5b6001600160a01b03861661180f57600080fd5b61181d338787878787611a2b565b61087e576040805162461bcd60e51b8152602060048201526016602482015275155b98589b19481d1bc81bdc195b8818da185b9b995b60521b604482015290519081900360640190fd5b600060208190529081526040902080546001820154600283015460038401546004850154600586015460069096015494956001600160a01b0394851695938516949092169290919087565b60025481565b6003546001600160a01b031681565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b600061195a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8c565b9392505050565b60008282018381101561195a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008181526020818152604080832060058101546001808301546001600160a01b031686529093529220546119f59163ffffffff61196116565b6001828101546001600160a01b031660009081526020829052604081209290925560058301829055825401825560069091015550565b6040805160e08101825260008082526001600160a01b03808a1660208085019182528a83168587019081528a841660608701908152608087018b815260a088018b815260c089018b8152600280548a528987528b8a209a518b5596516001808c018054928b166001600160a01b03199384161790559551978b018054988a1698821698909817909755925160038a01805491909816961695909517909555935160048701559151600586015591516006909401939093553382529190915290812054611afd908463ffffffff61191816565b336000908152600160209081526040808320939093556002548351908152908101919091526001600160a01b038881168284015260608201869052608082018590529151869288811692908b16917f172899db3034d5e4e68a2873998cc66a59bad4610fa6319a51f31f75e84452b79181900360a00190a4506002805460019081019091559695505050505050565b60008184841115611c1b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be0578181015183820152602001611bc8565b50505050905090810190601f168015611c0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe556e61626c6520746f207472616e7366657220746f6b656e20746f2074686520636f6e74726163742e556e61626c6520746f206465706f73697420746f6b656e20746f2074686520636f6e74726163742e496e73756666696369656e742062616c616e636520696e2074686520636f6e74726163742e496e73756666696369656e742062616c616e636520696e2074686520636f6e7472616374a2646970667358221220cff22c9e6287b881a51a9f49de0bee58907447bdedbf6765d8901045b802bded64736f6c63430006020033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542

-----Decoded View---------------
Arg [0] : _token (address): 0x5B7533812759B45C2B44C19e320ba2cD2681b542

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b7533812759b45c2b44c19e320ba2cd2681b542


Deployed Bytecode Sourcemap

26501:12619:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26501:12619:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33267:367;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;33267:367:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38076:298;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38076:298:0;;;;;;;;;;;;:::i;:::-;;35283:1618;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;35283:1618:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;27976:51::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27976:51:0;-1:-1:-1;;;;;27976:51:0;;:::i;:::-;;;;;;;;;;;;;;;;29702:400;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29702:400:0;;:::i;36971:473::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36971:473:0;;;;;;;:::i;28351:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28351:45:0;;:::i;30114:392::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30114:392:0;;;;;;;;:::i;34618:657::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;34618:657:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;;;;;;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;34618:657:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34618:657:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;34618:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;34618:657:0;;-1:-1:-1;34618:657:0;;-1:-1:-1;;;;;34618:657:0:i;29360:330::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29360:330:0;;:::i;31281:1258::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;31281:1258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;38445:419::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38445:419:0;;:::i;37584:484::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37584:484:0;;;;;;;:::i;30740:423::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;30740:423:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;27918:51::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27918:51:0;;:::i;:::-;;;;;;;-1:-1:-1;;;;;27918:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28114:28;;;:::i;28200:18::-;;;:::i;:::-;;;;-1:-1:-1;;;;;28200:18:0;;;;;;;;;;;;;;33267:367;33410:4;33440:14;33448:5;33440:7;:14::i;:::-;33432:67;;;;-1:-1:-1;;;33432:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33518:58;33530:6;33538:9;33549:7;33558:5;33565:10;33518:11;:58::i;:::-;33510:94;;;;;-1:-1:-1;;;33510:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33622:4:0;33267:367;;;;;;;:::o;38076:298::-;38204:39;38218:9;38229:13;38204;:39::i;:::-;38196:81;;;;;-1:-1:-1;;;38196:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38296:34;38312:9;38323:6;38296:15;:34::i;:::-;38288:78;;;;;-1:-1:-1;;;38288:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38076:298;;;:::o;35283:1618::-;35447:30;35480:19;;;;;;;;;;35534:13;;;;35518:29;;;35510:69;;;;;-1:-1:-1;;;35510:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35612:17;;;;-1:-1:-1;;;;;35612:17:0;35598:10;:31;35590:61;;;;;-1:-1:-1;;;35590:61:0;;;;;;;;;;;;-1:-1:-1;;;35590:61:0;;;;;;;;;;;;;;;35686:13;35670:12;:29;;35662:63;;;;;-1:-1:-1;;;35662:63:0;;;;;;;;;;;;-1:-1:-1;;;35662:63:0;;;;;;;;;;;;;;;35888:13;;35831:86;;;-1:-1:-1;;;35831:86:0;;;;;;;;35871:4;35831:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35831:86:0;;;;;;;35821:97;;;;;35794:15;;35812:107;;:8;:107::i;:::-;35794:125;;35986:19;36008:27;36018:7;36027:1;36030;36033;36008:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36008:27:0;;-1:-1:-1;;36008:27:0;;36069:14;;;;36008:27;;-1:-1:-1;;;;;;36054:29:0;;;36069:14;;36054:29;;-1:-1:-1;36054:29:0;:62;;-1:-1:-1;36102:14:0;;;;-1:-1:-1;;;;;36087:29:0;;;36102:14;;36087:29;36054:62;36046:92;;;;;-1:-1:-1;;;36046:92:0;;;;;;;;;;;;-1:-1:-1;;;36046:92:0;;;;;;;;;;;;;;;36247:13;;;;:31;;36265:12;36247:31;:17;:31;:::i;:::-;36217:13;;;:61;36321:10;36312:20;;;;:8;:20;;;;;;:38;;36337:12;36312:38;:24;:38;:::i;:::-;36298:10;36289:20;;;;:8;:20;;;;;:61;36366:528;;;;36418:45;36453:9;36418:34;:45::i;:::-;36511:13;;36567;;;;36487:97;;;;;;;;;;;;;;;;;;;;;;;;;36511:13;36487:97;;;;;36526:10;;36500:9;;36487:97;;;;;;;;;36366:528;;;36739:18;;36756:1;36739:18;;;;36864:13;;;;36781:97;;;;;;;;;;;;;;;;;;36739:13;36781:97;;;;;;;;;;;;36820:10;;36794:9;;36781:97;;;;;;;;;36366:528;35283:1618;;;;;;;;;;:::o;27976:51::-;;;;;;;;;;;;;:::o;29702:400::-;29799:10;29760:4;29790:20;;;:8;:20;;;;;;:29;-1:-1:-1;29790:29:0;29782:79;;;;-1:-1:-1;;;29782:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29880:5;;:33;;;-1:-1:-1;;;29880:33:0;;29895:10;29880:33;;;;;;;;;;;;-1:-1:-1;;;;;29880:5:0;;;;:14;;:33;;;;;;;;;;;;;;;:5;;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;29880:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29880:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29880:33:0;29872:87;;;;-1:-1:-1;;;29872:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30002:10;29993:20;;;;:8;:20;;;;;;:31;;30018:5;29993:31;:24;:31;:::i;:::-;29979:10;29970:20;;;;:8;:20;;;;;;;;;:54;;;;30040:32;;;;;;;29979:10;;30040:32;;;;;;;;;-1:-1:-1;30090:4:0;29702:400;;;:::o;36971:473::-;37063:4;37118:19;;;;;;;;;;37172:14;;;;-1:-1:-1;;;;;37172:14:0;37158:10;:28;37150:62;;;;;-1:-1:-1;;;37150:62:0;;;;;;;;;;;;-1:-1:-1;;;37150:62:0;;;;;;;;;;;;;;;37248:7;:18;;;37231:13;:35;;37223:67;;;;;-1:-1:-1;;;37223:67:0;;;;;;;;;;;;-1:-1:-1;;;37223:67:0;;;;;;;;;;;;;;;37303:8;:19;;;;;;;;;;;;:30;;:46;;;37375:39;;;;;;;37312:9;;37375:39;;;;;;;;;-1:-1:-1;37432:4:0;;36971:473;-1:-1:-1;;;36971:473:0:o;28351:45::-;;;;;;;;;;;;;;;:::o;30114:392::-;30229:10;30190:4;30220:20;;;:8;:20;;;;;;:29;-1:-1:-1;30220:29:0;30212:78;;;;-1:-1:-1;;;30212:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30333:10;30324:20;;;;:8;:20;;;;;;:31;;30349:5;30324:31;:24;:31;:::i;:::-;30310:10;30301:20;;;;:8;:20;;;;;;:54;;;;-1:-1:-1;;;;;30387:18:0;;;;;;:29;;30410:5;30387:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;30366:18:0;;;;;;:8;:18;;;;;;;;;:50;;;;30434:42;;;;;;;30366:18;;30448:10;;30434:42;;;;;;;;;;-1:-1:-1;30494:4:0;30114:392;;;;:::o;34618:657::-;34868:17;;34914:21;;:28;;:59;;;;;34970:3;34946:13;:20;:27;34914:59;:88;;;;;34999:3;34977:11;:18;:25;34914:88;:107;;;;;35018:3;35006:1;:8;:15;34914:107;:126;;;;;35037:3;35025:1;:8;:15;34914:126;:145;;;;;35056:3;35044:1;:8;:15;34914:145;34906:186;;;;;-1:-1:-1;;;34906:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35107:9;35103:155;35122:3;35120:1;:5;35103:155;;;35148:98;35161:10;35172:1;35161:13;;;;;;;;;;;;;;35176;35190:1;35176:16;;;;;;;;;;;;;;35194:14;35209:1;35194:17;;;;;;;;;;;;;;35213:1;35215;35213:4;;;;;;;;;;;;;;35219:1;35221;35219:4;;;;;;;;;;;;;;35225:1;35227;35225:4;;;;;;;;;;;;;;35231:11;35243:1;35231:14;;;;;;;;;;;;;;35148:12;:98::i;:::-;35128:3;;35103:155;;;;34618:657;;;;;;;;:::o;29360:330::-;29449:5;;:52;;;-1:-1:-1;;;29449:52:0;;29468:10;29449:52;;;;29488:4;29449:52;;;;;;;;;;;;29418:4;;-1:-1:-1;;;;;29449:5:0;;:18;;:52;;;;;;;;;;;;;;29418:4;29449:5;:52;;;5:2:-1;;;;30:1;27;20:12;5:2;29449:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29449:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29449:52:0;29441:106;;;;-1:-1:-1;;;29441:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29591:10;29582:20;;;;:8;:20;;;;;;:31;;29607:5;29582:31;:24;:31;:::i;:::-;29568:10;29559:20;;;;:8;:20;;;;;;;;;:54;;;;29629:31;;;;;;;29568:10;;29629:31;;;;;;;;;-1:-1:-1;29678:4:0;29360:330;;;:::o;31281:1258::-;31536:10;31496:4;31527:20;;;:8;:20;;;;;;:29;-1:-1:-1;31527:29:0;31519:62;;;;;-1:-1:-1;;;31519:62:0;;;;;;;;;;;;-1:-1:-1;;;31519:62:0;;;;;;;;;;;;;;;31925:124;;;;;;;;;;;;31971:4;31925:124;;;;;;;;31977:10;31925:124;;;;;;-1:-1:-1;;31925:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;31925:124:0;;;;;;;31915:135;;;;;31888:15;;31906:145;;:8;:145::i;:::-;32150:21;;;;:12;:21;;;;;;31888:163;;-1:-1:-1;32150:21:0;;32148:23;32139:68;;;;;-1:-1:-1;;;32139:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32242:4;32218:12;:21;32231:7;32218:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32356:6;-1:-1:-1;;;;;32325:37:0;:27;32335:7;32344:1;32347;32350;32325:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32325:27:0;;;;;;;;-1:-1:-1;;;;;32325:37:0;;32317:67;;;;;-1:-1:-1;;;32317:67:0;;;;;;;;;;;;-1:-1:-1;;;32317:67:0;;;;;;;;;;;;;;;32405;32418:6;32426;32434:9;32445:7;32454:5;32461:10;32405:12;:67::i;:::-;32397:102;;;;;-1:-1:-1;;;32397:102:0;;;;;;;;;;;;-1:-1:-1;;;32397:102:0;;;;;;;;;;;;;;;-1:-1:-1;32527:4:0;;31281:1258;-1:-1:-1;;;;;;;;;;;31281:1258:0:o;38445:419::-;38545:8;:19;;;;;;;;;;:26;;;-1:-1:-1;;;;;38545:26:0;38531:10;:40;38523:75;;;;;-1:-1:-1;;;38523:75:0;;;;;;;;;;;;-1:-1:-1;;;38523:75:0;;;;;;;;;;;;;;;38633:8;:19;;;;;;;;;;:30;;;38617:12;:46;;38609:82;;;;;-1:-1:-1;;;38609:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38702:45;38737:9;38702:34;:45::i;:::-;38803:8;:19;;;;;;;;;;;;:25;;38830;;;;;38773:83;;;;;;;;;;;;;;38792:9;;38773:83;;;;;;;;38445:419;:::o;37584:484::-;37708:10;37669:4;37699:20;;;:8;:20;;;;;;:30;-1:-1:-1;37699:30:0;37691:79;;;;-1:-1:-1;;;37691:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37874:10;37865:20;;;;:8;:20;;;;;;:37;;37895:6;37865:37;:24;:37;:::i;:::-;37846:10;37837:20;;;;:8;:20;;;;;;;;:65;;;;37941:19;;;;;;;:25;;;:37;;37971:6;37941:37;:29;:37;:::i;:::-;37913:8;:19;;;;;;;;;;;;:25;;:65;;;;38004:34;;;;;;;37922:9;;38004:34;;;;;;;;-1:-1:-1;38056:4:0;37584:484;;;;:::o;30740:423::-;30912:10;30873:4;30903:20;;;:8;:20;;;;;;:29;-1:-1:-1;30903:29:0;30895:79;;;;-1:-1:-1;;;30895:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30993:20:0;;30985:29;;;;;;31035:71;31048:10;31060:6;31068:9;31079:7;31088:5;31095:10;31035:12;:71::i;:::-;31027:106;;;;;-1:-1:-1;;;31027:106:0;;;;;;;;;;;;-1:-1:-1;;;31027:106:0;;;;;;;;;;;;;;27918:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27918:51:0;;;;;;;;;;;;;;;;:::o;28114:28::-;;;;:::o;28200:18::-;;;-1:-1:-1;;;;;28200:18:0;;:::o;38940:165::-;39038:58;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;39038:58:0;;;;;;;39028:69;;;;;;38940:165::o;5304:136::-;5362:7;5389:43;5393:1;5396;5389:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5382:50;5304:136;-1:-1:-1;;;5304:136:0:o;4840:181::-;4898:7;4930:5;;;4954:6;;;;4946:46;;;;;-1:-1:-1;;;4946:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33644:353;33736:30;33769:19;;;;;;;;;;;33857:13;;;;33828:8;33837:14;;;;-1:-1:-1;;;;;33837:14:0;33828:24;;;;;;;;:43;;;:28;:43;:::i;:::-;33801:8;33810:14;;;;-1:-1:-1;;;;;33810:14:0;33801:24;;;;;;;;;;;:70;;;;33883:13;;;:28;;;33922;;;;;33961:18;;;;:28;-1:-1:-1;33644:353:0:o;32547:712::-;32746:281;;;;;;;;32698:4;32746:281;;;-1:-1:-1;;;;;32746:281:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32729:13;;;32720:23;;;;;;;;:307;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32720:307:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33078:10;33069:20;;;;;;;;;;:31;;32970:5;33069:31;:24;:31;:::i;:::-;33055:10;33046:20;;;;:8;:20;;;;;;;;:54;;;;33128:13;;33116:84;;;;;;;;;;;;-1:-1:-1;;;;;33116:84:0;;;;;;;;;;;;;;;;;;;;;33173:7;;33116:84;;;;;;;;;;;;;;;;;-1:-1:-1;33211:13:0;:18;;33228:1;33211:18;;;;;;32547:712;;;;;;;;:::o;5743:192::-;5829:7;5865:12;5857:6;;;;5849:29;;;;-1:-1:-1;;;5849:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5849:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5901:5:0;;;5743:192::o

Swarm Source

ipfs://cff22c9e6287b881a51a9f49de0bee58907447bdedbf6765d8901045b802bded

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
Loading...
Loading
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.