Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,264 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Peg In | 17248198 | 596 days ago | IN | 0 ETH | 0.00092458 | ||||
Peg In | 17248198 | 596 days ago | IN | 0 ETH | 0.00096919 | ||||
Peg In | 17248198 | 596 days ago | IN | 0 ETH | 0.00092716 | ||||
Peg In | 17247405 | 596 days ago | IN | 0 ETH | 0.00095889 | ||||
Peg In | 17247250 | 596 days ago | IN | 0 ETH | 0.00105455 | ||||
Peg In | 17247250 | 596 days ago | IN | 0 ETH | 0.00101079 | ||||
Migrate | 17229562 | 598 days ago | IN | 0 ETH | 0.00373619 | ||||
Peg Out | 17225665 | 599 days ago | IN | 0 ETH | 0.00402748 | ||||
Peg Out | 17225644 | 599 days ago | IN | 0 ETH | 0.00420944 | ||||
Peg Out | 17221791 | 599 days ago | IN | 0 ETH | 0.0026095 | ||||
Peg In | 17221720 | 599 days ago | IN | 0 ETH | 0.00326035 | ||||
Peg Out | 17217354 | 600 days ago | IN | 0 ETH | 0.00614358 | ||||
Peg Out | 17210807 | 601 days ago | IN | 0 ETH | 0.00705414 | ||||
Peg Out | 17210805 | 601 days ago | IN | 0 ETH | 0.00705414 | ||||
Peg Out | 17209743 | 601 days ago | IN | 0 ETH | 0.00796487 | ||||
Peg Out | 17195864 | 603 days ago | IN | 0 ETH | 0.010288 | ||||
Peg Out | 17188479 | 604 days ago | IN | 0 ETH | 0.008442 | ||||
Peg Out | 17188179 | 604 days ago | IN | 0 ETH | 0.00668181 | ||||
Peg Out | 17185305 | 605 days ago | IN | 0 ETH | 0.0044068 | ||||
Peg Out | 17179370 | 605 days ago | IN | 0 ETH | 0.00320775 | ||||
Peg Out | 17179090 | 605 days ago | IN | 0 ETH | 0.0039933 | ||||
Peg Out | 17178168 | 606 days ago | IN | 0 ETH | 0.00381529 | ||||
Peg Out | 17177361 | 606 days ago | IN | 0 ETH | 0.00767292 | ||||
Peg Out | 17176588 | 606 days ago | IN | 0 ETH | 0.00707832 | ||||
Peg Out | 17175827 | 606 days ago | IN | 0 ETH | 0.00686002 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Erc20Vault
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-14 */ // File: @openzeppelin/contracts/token/ERC777/IERC777.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC777Token standard as defined in the EIP. * * This contract uses the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let * token holders and recipients react to token movements by using setting implementers * for the associated interfaces in said registry. See {IERC1820Registry} and * {ERC1820Implementer}. */ interface IERC777 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory); /** * @dev Returns the smallest part of the token that is not divisible. This * means all token operations (creation, movement and destruction) must have * amounts that are a multiple of this number. * * For most token contracts, this value will equal 1. */ function granularity() external view returns (uint256); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by an account (`owner`). */ function balanceOf(address owner) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * If send or receive hooks are registered for the caller and `recipient`, * the corresponding functions will be called with `data` and empty * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - the caller must have at least `amount` tokens. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function send(address recipient, uint256 amount, bytes calldata data) external; /** * @dev Destroys `amount` tokens from the caller's account, reducing the * total supply. * * If a send hook is registered for the caller, the corresponding function * will be called with `data` and empty `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - the caller must have at least `amount` tokens. */ function burn(uint256 amount, bytes calldata data) external; /** * @dev Returns true if an account is an operator of `tokenHolder`. * Operators can send and burn tokens on behalf of their owners. All * accounts are their own operator. * * See {operatorSend} and {operatorBurn}. */ function isOperatorFor(address operator, address tokenHolder) external view returns (bool); /** * @dev Make an account an operator of the caller. * * See {isOperatorFor}. * * Emits an {AuthorizedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function authorizeOperator(address operator) external; /** * @dev Revoke an account's operator status for the caller. * * See {isOperatorFor} and {defaultOperators}. * * Emits a {RevokedOperator} event. * * Requirements * * - `operator` cannot be calling address. */ function revokeOperator(address operator) external; /** * @dev Returns the list of default operators. These accounts are operators * for all token holders, even if {authorizeOperator} was never called on * them. * * This list is immutable, but individual holders may revoke these via * {revokeOperator}, in which case {isOperatorFor} will return false. */ function defaultOperators() external view returns (address[] memory); /** * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must * be an operator of `sender`. * * If send or receive hooks are registered for `sender` and `recipient`, * the corresponding functions will be called with `data` and * `operatorData`. See {IERC777Sender} and {IERC777Recipient}. * * Emits a {Sent} event. * * Requirements * * - `sender` cannot be the zero address. * - `sender` must have at least `amount` tokens. * - the caller must be an operator for `sender`. * - `recipient` cannot be the zero address. * - if `recipient` is a contract, it must implement the {IERC777Recipient} * interface. */ function operatorSend( address sender, address recipient, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * The caller must be an operator of `account`. * * If a send hook is registered for `account`, the corresponding function * will be called with `data` and `operatorData`. See {IERC777Sender}. * * Emits a {Burned} event. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. * - the caller must be an operator for `account`. */ function operatorBurn( address account, uint256 amount, bytes calldata data, bytes calldata operatorData ) external; event Sent( address indexed operator, address indexed from, address indexed to, uint256 amount, bytes data, bytes operatorData ); event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData); event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData); event AuthorizedOperator(address indexed operator, address indexed tokenHolder); event RevokedOperator(address indexed operator, address indexed tokenHolder); } // File: @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: @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: @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/SafeERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/introspection/IERC1820Registry.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the global ERC1820 Registry, as defined in the * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register * implementers for interfaces in this registry, as well as query support. * * Implementers may be shared by multiple accounts, and can also implement more * than a single interface for each account. Contracts can implement interfaces * for themselves, but externally-owned accounts (EOA) must delegate this to a * contract. * * {IERC165} interfaces can also be queried via the registry. * * For an in-depth explanation and source code analysis, see the EIP text. */ interface IERC1820Registry { /** * @dev Sets `newManager` as the manager for `account`. A manager of an * account is able to set interface implementers for it. * * By default, each account is its own manager. Passing a value of `0x0` in * `newManager` will reset the manager to this initial state. * * Emits a {ManagerChanged} event. * * Requirements: * * - the caller must be the current manager for `account`. */ function setManager(address account, address newManager) external; /** * @dev Returns the manager for `account`. * * See {setManager}. */ function getManager(address account) external view returns (address); /** * @dev Sets the `implementer` contract as ``account``'s implementer for * `interfaceHash`. * * `account` being the zero address is an alias for the caller's address. * The zero address can also be used in `implementer` to remove an old one. * * See {interfaceHash} to learn how these are created. * * Emits an {InterfaceImplementerSet} event. * * Requirements: * * - the caller must be the current manager for `account`. * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not * end in 28 zeroes). * - `implementer` must implement {IERC1820Implementer} and return true when * queried for support, unless `implementer` is the caller. See * {IERC1820Implementer-canImplementInterfaceForAddress}. */ function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external; /** * @dev Returns the implementer of `interfaceHash` for `account`. If no such * implementer is registered, returns the zero address. * * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28 * zeroes), `account` will be queried for support of it. * * `account` being the zero address is an alias for the caller's address. */ function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address); /** * @dev Returns the interface hash for an `interfaceName`, as defined in the * corresponding * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP]. */ function interfaceHash(string calldata interfaceName) external pure returns (bytes32); /** * @notice Updates the cache with whether the contract implements an ERC165 interface or not. * @param account Address of the contract for which to update the cache. * @param interfaceId ERC165 interface for which to update the cache. */ function updateERC165Cache(address account, bytes4 interfaceId) external; /** * @notice Checks whether a contract implements an ERC165 interface or not. * If the result is not cached a direct lookup on the contract address is performed. * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling * {updateERC165Cache} with the contract address. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool); /** * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache. * @param account Address of the contract to check. * @param interfaceId ERC165 interface to check. * @return True if `account` implements `interfaceId`, false otherwise. */ function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool); event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer); event ManagerChanged(address indexed account, address indexed newManager); } // File: @openzeppelin/contracts/token/ERC777/IERC777Recipient.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP. * * Accounts can be notified of {IERC777} tokens being sent to them by having a * contract implement this interface (contract holders can be their own * implementer) and registering it on the * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry]. * * See {IERC1820Registry} and {ERC1820Implementer}. */ interface IERC777Recipient { /** * @dev Called by an {IERC777} token contract whenever tokens are being * moved or created into a registered account (`to`). The type of operation * is conveyed by `from` being the zero address or not. * * This call occurs _after_ the token contract's state is updated, so * {IERC777-balanceOf}, etc., can be used to query the post-operation state. * * This function may revert to prevent the operation from being executed. */ function tokensReceived( address operator, address from, address to, uint256 amount, bytes calldata userData, bytes calldata operatorData ) external; } // File: contracts/IWETH.sol pragma solidity ^0.6.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; function balanceOf(address who) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function allowance(address owner, address spender) external returns (uint256); } // File: contracts/AbstractOwnable.sol pragma solidity ^0.6.0; abstract contract AbstractOwnable { modifier onlyOwner() { require(_owner() == msg.sender, "caller is not the owner"); _; } function _owner() internal virtual returns(address); } // File: contracts/Withdrawable.sol pragma solidity >=0.4.24; abstract contract Withdrawable is AbstractOwnable { using SafeERC20 for IERC20; address constant ETHER = address(0); event LogWithdrawToken( address indexed _from, address indexed _token, uint amount ); /** * @dev Withdraw asset. * @param asset Asset to be withdrawn. */ function adminWithdraw(address asset) public onlyOwner { uint tokenBalance = adminWithdrawAllowed(asset); require(tokenBalance > 0, "admin witdraw not allowed"); _withdraw(asset, tokenBalance); } function _withdraw(address _tokenAddress, uint _amount) internal { if (_tokenAddress == ETHER) { msg.sender.transfer(_amount); } else { IERC20(_tokenAddress).safeTransfer(msg.sender, _amount); } emit LogWithdrawToken(msg.sender, _tokenAddress, _amount); } // can be overridden to disallow withdraw for some token function adminWithdrawAllowed(address asset) internal virtual view returns(uint allowedAmount) { allowedAmount = asset == ETHER ? address(this).balance : IERC20(asset).balanceOf(address(this)); } } // File: contracts/Erc20Vault.sol pragma solidity ^0.6.0; contract Erc20Vault is Withdrawable, IERC777Recipient { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; IERC1820Registry constant private _erc1820 = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24); bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH = keccak256("ERC777TokensRecipient"); bytes32 constant private ERC777_TOKEN_INTERFACE_HASH = keccak256("ERC777Token"); EnumerableSet.AddressSet private supportedTokens; address public PNETWORK; IWETH public weth; event PegIn( address _tokenAddress, address _tokenSender, uint256 _tokenAmount, string _destinationAddress, bytes _userData ); constructor( address _weth, address [] memory _tokensToSupport ) public { PNETWORK = msg.sender; for (uint256 i = 0; i < _tokensToSupport.length; i++) { supportedTokens.add(_tokensToSupport[i]); } weth = IWETH(_weth); _erc1820.setInterfaceImplementer(address(this), TOKENS_RECIPIENT_INTERFACE_HASH, address(this)); } modifier onlyPNetwork() { require(msg.sender == PNETWORK, "Caller must be PNETWORK address!"); _; } receive() external payable { require(msg.sender == address(weth)); } function setWeth(address _weth) external onlyPNetwork { weth = IWETH(_weth); } function setPNetwork(address _pnetwork) external onlyPNetwork { require(_pnetwork != address(0), "Cannot set the zero address as the pNetwork address!"); PNETWORK = _pnetwork; } function IS_TOKEN_SUPPORTED(address _token) external view returns(bool) { return supportedTokens.contains(_token); } function _owner() internal override returns(address) { return PNETWORK; } function adminWithdrawAllowed(address asset) internal override view returns(uint) { return supportedTokens.contains(asset) ? 0 : super.adminWithdrawAllowed(asset); } function addSupportedToken( address _tokenAddress ) external onlyPNetwork returns (bool SUCCESS) { supportedTokens.add(_tokenAddress); return true; } function removeSupportedToken( address _tokenAddress ) external onlyPNetwork returns (bool SUCCESS) { return supportedTokens.remove(_tokenAddress); } function getSupportedTokens() external view returns(address[] memory res) { res = new address[](supportedTokens.length()); for (uint256 i = 0; i < supportedTokens.length(); i++) { res[i] = supportedTokens.at(i); } } function pegIn( uint256 _tokenAmount, address _tokenAddress, string calldata _destinationAddress ) external returns (bool) { return pegIn(_tokenAmount, _tokenAddress, _destinationAddress, ""); } function pegIn( uint256 _tokenAmount, address _tokenAddress, string memory _destinationAddress, bytes memory _userData ) public returns (bool) { require(supportedTokens.contains(_tokenAddress), "Token at supplied address is NOT supported!"); require(_tokenAmount > 0, "Token amount must be greater than zero!"); IERC20(_tokenAddress).safeTransferFrom(msg.sender, address(this), _tokenAmount); emit PegIn(_tokenAddress, msg.sender, _tokenAmount, _destinationAddress, _userData); return true; } /** * @dev Implementation of IERC777Recipient. */ function tokensReceived( address /*operator*/, address from, address to, uint256 amount, bytes calldata userData, bytes calldata /*operatorData*/ ) external override { address _tokenAddress = msg.sender; require(supportedTokens.contains(_tokenAddress), "caller is not a supported ERC777 token!"); require(to == address(this), "Token receiver is not this contract"); if (userData.length > 0) { require(amount > 0, "Token amount must be greater than zero!"); (bytes32 tag, string memory _destinationAddress) = abi.decode(userData, (bytes32, string)); require(tag == keccak256("ERC777-pegIn"), "Invalid tag for automatic pegIn on ERC777 send"); emit PegIn(_tokenAddress, from, amount, _destinationAddress, userData); } } function pegInEth(string calldata _destinationAddress) external payable returns (bool) { return pegInEth(_destinationAddress, ""); } function pegInEth( string memory _destinationAddress, bytes memory _userData ) public payable returns (bool) { require(supportedTokens.contains(address(weth)), "WETH is NOT supported!"); require(msg.value > 0, "Ethers amount must be greater than zero!"); weth.deposit.value(msg.value)(); emit PegIn(address(weth), msg.sender, msg.value, _destinationAddress, _userData); return true; } function pegOutWeth( address payable _tokenRecipient, uint256 _tokenAmount, bytes memory _userData ) internal returns (bool) { weth.withdraw(_tokenAmount); // NOTE: This is the latest recommendation (@ time of writing) for transferring ETH. This no longer relies // on the provided 2300 gas stipend and instead forwards all available gas onwards. // SOURCE: https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now (bool success, ) = _tokenRecipient.call.value(_tokenAmount)(_userData); require(success, "ETH transfer failed when pegging out wETH!"); } function pegOut( address payable _tokenRecipient, address _tokenAddress, uint256 _tokenAmount ) public onlyPNetwork returns (bool) { if (_tokenAddress == address(weth)) { pegOutWeth(_tokenRecipient, _tokenAmount, ""); } else { IERC20(_tokenAddress).safeTransfer(_tokenRecipient, _tokenAmount); } return true; } function pegOut( address payable _tokenRecipient, address _tokenAddress, uint256 _tokenAmount, bytes calldata _userData ) external onlyPNetwork returns (bool) { if (_tokenAddress == address(weth)) { pegOutWeth(_tokenRecipient, _tokenAmount, _userData); } else { address erc777Address = _erc1820.getInterfaceImplementer(_tokenAddress, ERC777_TOKEN_INTERFACE_HASH); if (erc777Address == address(0)) { return pegOut(_tokenRecipient, _tokenAddress, _tokenAmount); } else { IERC777(erc777Address).send(_tokenRecipient, _tokenAmount, _userData); return true; } } } function migrate( address payable _to ) external onlyPNetwork { uint256 numberOfTokens = supportedTokens.length(); for (uint256 i = 0; i < numberOfTokens; i++) { address tokenAddress = supportedTokens.at(0); _migrateSingle(_to, tokenAddress); } } function destroy() external onlyPNetwork { for (uint256 i = 0; i < supportedTokens.length(); i++) { address tokenAddress = supportedTokens.at(i); require(IERC20(tokenAddress).balanceOf(address(this)) == 0, "Balance of supported tokens must be 0"); } selfdestruct(msg.sender); } function migrateSingle( address payable _to, address _tokenAddress ) external onlyPNetwork { _migrateSingle(_to, _tokenAddress); } function _migrateSingle( address payable _to, address _tokenAddress ) private { if (supportedTokens.contains(_tokenAddress)) { uint balance = IERC20(_tokenAddress).balanceOf(address(this)); IERC20(_tokenAddress).safeTransfer(_to, balance); supportedTokens.remove(_tokenAddress); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_weth","type":"address"},{"internalType":"address[]","name":"_tokensToSupport","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogWithdrawToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_tokenSender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"indexed":false,"internalType":"string","name":"_destinationAddress","type":"string"},{"indexed":false,"internalType":"bytes","name":"_userData","type":"bytes"}],"name":"PegIn","type":"event"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"IS_TOKEN_SUPPORTED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PNETWORK","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"addSupportedToken","outputs":[{"internalType":"bool","name":"SUCCESS","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"destroy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSupportedTokens","outputs":[{"internalType":"address[]","name":"res","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"migrateSingle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"string","name":"_destinationAddress","type":"string"}],"name":"pegIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"string","name":"_destinationAddress","type":"string"},{"internalType":"bytes","name":"_userData","type":"bytes"}],"name":"pegIn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_destinationAddress","type":"string"},{"internalType":"bytes","name":"_userData","type":"bytes"}],"name":"pegInEth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"_destinationAddress","type":"string"}],"name":"pegInEth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_tokenRecipient","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"bytes","name":"_userData","type":"bytes"}],"name":"pegOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_tokenRecipient","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"pegOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"removeSupportedToken","outputs":[{"internalType":"bool","name":"SUCCESS","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pnetwork","type":"address"}],"name":"setPNetwork","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"name":"setWeth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"userData","type":"bytes"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"tokensReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200397d3803806200397d833981810160405260408110156200003757600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200006257600080fd5b838201915060208201858111156200007957600080fd5b82518660208202830111640100000000821117156200009757600080fd5b8083526020830192505050908051906020019060200280838360005b83811015620000d0578082015181840152602081019050620000b3565b5050505090500160405250505033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008090505b81518110156200016c576200015d8282815181106200013f57fe5b60200260200101516000620002d460201b620029fd1790919060201c565b50808060010191505062000124565b5081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d3060405180807f455243373737546f6b656e73526563697069656e74000000000000000000000081525060150190506040518091039020306040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b158015620002b357600080fd5b505af1158015620002c8573d6000803e3d6000fd5b505050505050620003a9565b600062000304836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200030c60201b60201c565b905092915050565b60006200032083836200038660201b60201c565b6200037b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000380565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b6135c480620003b96000396000f3fe6080604052600436106101175760003560e01c806383197ef0116100a0578063c7e3af6b11610064578063c7e3af6b14610982578063cc3ae6e614610b23578063ce5494bb14610bb4578063d3c7c2c714610c05578063e62ece3014610c7157610178565b806383197ef01461076e57806383c09d4214610785578063a0e8d7ca14610818578063a28835b6146108e0578063b8d1452f1461093157610178565b806322965469116100e757806322965469146105065780632c99d4e2146105ee5780633fc8cef3146106455780636d69fcaf1461069c578063763191901461070557610178565b806223de291461017d5780630a23b33b146102c25780631328ed3c1461032b5780631bc4da521461039c57610178565b3661017857600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461017657600080fd5b005b600080fd5b34801561018957600080fd5b506102c0600480360360c08110156101a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561022757600080fd5b82018360208201111561023957600080fd5b8035906020019184600183028401116401000000008311171561025b57600080fd5b90919293919293908035906020019064010000000081111561027c57600080fd5b82018360208201111561028e57600080fd5b803590602001918460018302840111640100000000831117156102b057600080fd5b9091929391929390505050610cc2565b005b3480156102ce57600080fd5b50610311600480360360208110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110b4565b604051808215151515815260200191505060405180910390f35b34801561033757600080fd5b5061039a6004803603604081101561034e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110d1565b005b6104ec600480360360408110156103b257600080fd5b81019080803590602001906401000000008111156103cf57600080fd5b8201836020820111156103e157600080fd5b8035906020019184600183028401116401000000008311171561040357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561046657600080fd5b82018360208201111561047857600080fd5b8035906020019184600183028401116401000000008311171561049a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506111a2565b604051808215151515815260200191505060405180910390f35b34801561051257600080fd5b506105d46004803603608081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561059057600080fd5b8201836020820111156105a257600080fd5b803590602001918460018302840111640100000000831117156105c457600080fd5b90919293919293905050506114cd565b604051808215151515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611879565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561065157600080fd5b5061065a61189f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106a857600080fd5b506106eb600480360360208110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c5565b604051808215151515815260200191505060405180910390f35b34801561071157600080fd5b506107546004803603602081101561072857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a8565b604051808215151515815260200191505060405180910390f35b34801561077a57600080fd5b50610783611a88565b005b34801561079157600080fd5b506107fe600480360360608110156107a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cb2565b604051808215151515815260200191505060405180910390f35b34801561082457600080fd5b506108c66004803603606081101561083b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561088257600080fd5b82018360208201111561089457600080fd5b803590602001918460018302840111640100000000831117156108b657600080fd5b9091929391929390505050611e24565b604051808215151515815260200191505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e8f565b005b34801561093d57600080fd5b506109806004803603602081101561095457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc8565b005b34801561098e57600080fd5b50610b09600480360360808110156109a557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156109ec57600080fd5b8201836020820111156109fe57600080fd5b80359060200191846001830284011164010000000083111715610a2057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a8357600080fd5b820183602082011115610a9557600080fd5b80359060200191846001830284011164010000000083111715610ab757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506120cf565b604051808215151515815260200191505060405180910390f35b610b9a60048036036020811015610b3957600080fd5b8101908080359060200190640100000000811115610b5657600080fd5b820183602082011115610b6857600080fd5b80359060200191846001830284011164010000000083111715610b8a57600080fd5b9091929391929390505050612345565b604051808215151515815260200191505060405180910390f35b348015610bc057600080fd5b50610c0360048036036020811015610bd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123ac565b005b348015610c1157600080fd5b50610c1a6124c0565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610c5d578082015181840152602081019050610c42565b505050509050019250505060405180910390f35b348015610c7d57600080fd5b50610cc060048036036020811015610c9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061257f565b005b6000339050610cdb81600061270c90919063ffffffff16565b610d30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806135686027913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806133f06023913960400191505060405180910390fd5b60008585905011156110a95760008611610e19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806134916027913960400191505060405180910390fd5b6000606086866040811015610e2d57600080fd5b810190808035906020019092919080359060200190640100000000811115610e5457600080fd5b820183602082011115610e6657600080fd5b80359060200191846001830284011164010000000083111715610e8857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050509150915060405180807f4552433737372d706567496e0000000000000000000000000000000000000000815250600c01905060405180910390208214610f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613438602e913960400191505060405180910390fd5b7fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc838b8a848b8b604051808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018060200180602001838103835286818151815260200191508051906020019080838360005b8381101561103b578082015181840152602081019050611020565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b508381038252858582818152602001925080828437600081840152601f19601f8201169050808301925050509850505050505050505060405180910390a150505b505050505050505050565b60006110ca82600061270c90919063ffffffff16565b9050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b61119e828261273c565b5050565b60006111da600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061270c90919063ffffffff16565b61124c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f57455448206973204e4f5420737570706f72746564210000000000000000000081525060200191505060405180910390fd5b600034116112a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134b86028913960400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561130f57600080fd5b505af1158015611323573d6000803e3d6000fd5b50505050507fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633348686604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561141e578082015181840152602081019050611403565b50505050905090810190601f16801561144b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b83811015611484578082015181840152602081019050611469565b50505050905090810190601f1680156114b15780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a16001905092915050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561163d57611637868585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612857565b5061186f565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca8760405180807f455243373737546f6b656e000000000000000000000000000000000000000000815250600b01905060405180910390206040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561170d57600080fd5b505afa158015611721573d6000803e3d6000fd5b505050506040513d602081101561173757600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117925761178a878787611cb2565b915050611870565b8073ffffffffffffffffffffffffffffffffffffffff16639bd9bbc6888787876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561184d57600080fd5b505af1158015611861573d6000803e3d6000fd5b505050506001915050611870565b5b95945050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b61199e8260006129fd90919063ffffffff16565b5060019050919050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b611a81826000612a2d90919063ffffffff16565b9050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b60008090505b611b5b6000612a5d565b811015611c98576000611b78826000612a7290919063ffffffff16565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611bf957600080fd5b505afa158015611c0d573d6000803e3d6000fd5b505050506040513d6020811015611c2357600080fd5b810190808051906020019092919050505014611c8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134136025913960400191505060405180910390fd5b508080600101915050611b51565b503373ffffffffffffffffffffffffffffffffffffffff16ff5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ded57611de7848360405180602001604052806000815250612857565b50611e19565b611e1884838573ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b5b600190509392505050565b6000611e85858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050604051806020016040528060008152506120cf565b9050949350505050565b3373ffffffffffffffffffffffffffffffffffffffff16611eae612b44565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b6000611f4282612b6e565b905060008111611fba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f61646d696e2077697464726177206e6f7420616c6c6f7765640000000000000081525060200191505060405180910390fd5b611fc48282612ba0565b5050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461208b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120e584600061270c90919063ffffffff16565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613466602b913960400191505060405180910390fd5b60008511612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806134916027913960400191505060405180910390fd5b6121c03330878773ffffffffffffffffffffffffffffffffffffffff16612cb6909392919063ffffffff16565b7fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc8433878686604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612294578082015181840152602081019050612279565b50505050905090810190601f1680156122c15780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156122fa5780820151818401526020810190506122df565b50505050905090810190601f1680156123275780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a160019050949350505050565b60006123a483838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050604051806020016040528060008152506111a2565b905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461246f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600061247b6000612a5d565b905060008090505b818110156124bb5760006124a1600080612a7290919063ffffffff16565b90506124ad848261273c565b508080600101915050612483565b505050565b60606124cc6000612a5d565b6040519080825280602002602001820160405280156124fa5781602001602082028038833980820191505090505b50905060008090505b61250d6000612a5d565b81101561257b57612528816000612a7290919063ffffffff16565b82828151811061253457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050612503565b5090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806134e06034913960400191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612734836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612da3565b905092915050565b61275081600061270c90919063ffffffff16565b156128535760008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156127d457600080fd5b505afa1580156127e8573d6000803e3d6000fd5b505050506040513d60208110156127fe57600080fd5b8101908080519060200190929190505050905061283c83828473ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b612850826000612a2d90919063ffffffff16565b50505b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156128ce57600080fd5b505af11580156128e2573d6000803e3d6000fd5b5050505060008473ffffffffffffffffffffffffffffffffffffffff1684846040518082805190602001908083835b602083106129345780518252602082019150602081019050602083039250612911565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612996576040519150601f19603f3d011682016040523d82523d6000602084013e61299b565b606091505b50509050806129f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613514602a913960400191505060405180910390fd5b509392505050565b6000612a25836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612dc6565b905092915050565b6000612a55836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e36565b905092915050565b6000612a6b82600001612f1e565b9050919050565b6000612a818360000183612f2f565b60001c905092915050565b612b3f8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612fb2565b505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612b8482600061270c90919063ffffffff16565b612b9657612b91826130a1565b612b99565b60005b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c21573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612c1b573d6000803e3d6000fd5b50612c4d565b612c4c33828473ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f46ae78bc7b198b8b534ca0070d125569ac5f955976841c4343223079f3abf0de836040518082815260200191505060405180910390a35050565b612d9d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612fb2565b50505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000612dd28383612da3565b612e2b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e30565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114612f125760006001820390506000600186600001805490500390506000866000018281548110612e8157fe5b9060005260206000200154905080876000018481548110612e9e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ed657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f18565b60009150505b92915050565b600081600001805490509050919050565b600081836000018054905011612f90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133ce6022913960400191505060405180910390fd5b826000018281548110612f9f57fe5b9060005260206000200154905092915050565b6060613014826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661319c9092919063ffffffff16565b905060008151111561309c5780806020019051602081101561303557600080fd5b810190808051906020019092919050505061309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061353e602a913960400191505060405180910390fd5b5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613193578173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561315357600080fd5b505afa158015613167573d6000803e3d6000fd5b505050506040513d602081101561317d57600080fd5b8101908080519060200190929190505050613195565b475b9050919050565b60606131ab84846000856131b4565b90509392505050565b60606131bf856133ba565b613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613281578051825260208201915060208101905060208303925061325e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146132e3576040519150601f19603f3d011682016040523d82523d6000602084013e6132e8565b606091505b509150915081156132fd5780925050506133b2565b6000815111156133105780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561337757808201518184015260208101905061335c565b50505050905090810190601f1680156133a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473546f6b656e207265636569766572206973206e6f74207468697320636f6e747261637442616c616e6365206f6620737570706f7274656420746f6b656e73206d7573742062652030496e76616c69642074616720666f72206175746f6d6174696320706567496e206f6e204552433737372073656e64546f6b656e20617420737570706c6965642061646472657373206973204e4f5420737570706f7274656421546f6b656e20616d6f756e74206d7573742062652067726561746572207468616e207a65726f2145746865727320616d6f756e74206d7573742062652067726561746572207468616e207a65726f2143616e6e6f742073657420746865207a65726f20616464726573732061732074686520704e6574776f726b206164647265737321455448207472616e73666572206661696c6564207768656e2070656767696e67206f75742077455448215361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656463616c6c6572206973206e6f74206120737570706f727465642045524337373720746f6b656e21a264697066735822122086e0822434cd3c8e56348e882a719425859569eb910718a66a3642da17a068f364736f6c63430006020033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d13c7342e1ef687c5ad21b27c2b65d772cab5c8c
Deployed Bytecode
0x6080604052600436106101175760003560e01c806383197ef0116100a0578063c7e3af6b11610064578063c7e3af6b14610982578063cc3ae6e614610b23578063ce5494bb14610bb4578063d3c7c2c714610c05578063e62ece3014610c7157610178565b806383197ef01461076e57806383c09d4214610785578063a0e8d7ca14610818578063a28835b6146108e0578063b8d1452f1461093157610178565b806322965469116100e757806322965469146105065780632c99d4e2146105ee5780633fc8cef3146106455780636d69fcaf1461069c578063763191901461070557610178565b806223de291461017d5780630a23b33b146102c25780631328ed3c1461032b5780631bc4da521461039c57610178565b3661017857600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461017657600080fd5b005b600080fd5b34801561018957600080fd5b506102c0600480360360c08110156101a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561022757600080fd5b82018360208201111561023957600080fd5b8035906020019184600183028401116401000000008311171561025b57600080fd5b90919293919293908035906020019064010000000081111561027c57600080fd5b82018360208201111561028e57600080fd5b803590602001918460018302840111640100000000831117156102b057600080fd5b9091929391929390505050610cc2565b005b3480156102ce57600080fd5b50610311600480360360208110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110b4565b604051808215151515815260200191505060405180910390f35b34801561033757600080fd5b5061039a6004803603604081101561034e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110d1565b005b6104ec600480360360408110156103b257600080fd5b81019080803590602001906401000000008111156103cf57600080fd5b8201836020820111156103e157600080fd5b8035906020019184600183028401116401000000008311171561040357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561046657600080fd5b82018360208201111561047857600080fd5b8035906020019184600183028401116401000000008311171561049a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506111a2565b604051808215151515815260200191505060405180910390f35b34801561051257600080fd5b506105d46004803603608081101561052957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561059057600080fd5b8201836020820111156105a257600080fd5b803590602001918460018302840111640100000000831117156105c457600080fd5b90919293919293905050506114cd565b604051808215151515815260200191505060405180910390f35b3480156105fa57600080fd5b50610603611879565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561065157600080fd5b5061065a61189f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106a857600080fd5b506106eb600480360360208110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c5565b604051808215151515815260200191505060405180910390f35b34801561071157600080fd5b506107546004803603602081101561072857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a8565b604051808215151515815260200191505060405180910390f35b34801561077a57600080fd5b50610783611a88565b005b34801561079157600080fd5b506107fe600480360360608110156107a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cb2565b604051808215151515815260200191505060405180910390f35b34801561082457600080fd5b506108c66004803603606081101561083b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561088257600080fd5b82018360208201111561089457600080fd5b803590602001918460018302840111640100000000831117156108b657600080fd5b9091929391929390505050611e24565b604051808215151515815260200191505060405180910390f35b3480156108ec57600080fd5b5061092f6004803603602081101561090357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e8f565b005b34801561093d57600080fd5b506109806004803603602081101561095457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc8565b005b34801561098e57600080fd5b50610b09600480360360808110156109a557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156109ec57600080fd5b8201836020820111156109fe57600080fd5b80359060200191846001830284011164010000000083111715610a2057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610a8357600080fd5b820183602082011115610a9557600080fd5b80359060200191846001830284011164010000000083111715610ab757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506120cf565b604051808215151515815260200191505060405180910390f35b610b9a60048036036020811015610b3957600080fd5b8101908080359060200190640100000000811115610b5657600080fd5b820183602082011115610b6857600080fd5b80359060200191846001830284011164010000000083111715610b8a57600080fd5b9091929391929390505050612345565b604051808215151515815260200191505060405180910390f35b348015610bc057600080fd5b50610c0360048036036020811015610bd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123ac565b005b348015610c1157600080fd5b50610c1a6124c0565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610c5d578082015181840152602081019050610c42565b505050509050019250505060405180910390f35b348015610c7d57600080fd5b50610cc060048036036020811015610c9457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061257f565b005b6000339050610cdb81600061270c90919063ffffffff16565b610d30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806135686027913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806133f06023913960400191505060405180910390fd5b60008585905011156110a95760008611610e19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806134916027913960400191505060405180910390fd5b6000606086866040811015610e2d57600080fd5b810190808035906020019092919080359060200190640100000000811115610e5457600080fd5b820183602082011115610e6657600080fd5b80359060200191846001830284011164010000000083111715610e8857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050509150915060405180807f4552433737372d706567496e0000000000000000000000000000000000000000815250600c01905060405180910390208214610f66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180613438602e913960400191505060405180910390fd5b7fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc838b8a848b8b604051808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018060200180602001838103835286818151815260200191508051906020019080838360005b8381101561103b578082015181840152602081019050611020565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b508381038252858582818152602001925080828437600081840152601f19601f8201169050808301925050509850505050505050505060405180910390a150505b505050505050505050565b60006110ca82600061270c90919063ffffffff16565b9050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b61119e828261273c565b5050565b60006111da600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600061270c90919063ffffffff16565b61124c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f57455448206973204e4f5420737570706f72746564210000000000000000000081525060200191505060405180910390fd5b600034116112a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806134b86028913960400191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561130f57600080fd5b505af1158015611323573d6000803e3d6000fd5b50505050507fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1633348686604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b8381101561141e578082015181840152602081019050611403565b50505050905090810190601f16801561144b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b83811015611484578082015181840152602081019050611469565b50505050905090810190601f1680156114b15780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a16001905092915050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561163d57611637868585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612857565b5061186f565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca8760405180807f455243373737546f6b656e000000000000000000000000000000000000000000815250600b01905060405180910390206040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561170d57600080fd5b505afa158015611721573d6000803e3d6000fd5b505050506040513d602081101561173757600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117925761178a878787611cb2565b915050611870565b8073ffffffffffffffffffffffffffffffffffffffff16639bd9bbc6888787876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561184d57600080fd5b505af1158015611861573d6000803e3d6000fd5b505050506001915050611870565b5b95945050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b61199e8260006129fd90919063ffffffff16565b5060019050919050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b611a81826000612a2d90919063ffffffff16565b9050919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b60008090505b611b5b6000612a5d565b811015611c98576000611b78826000612a7290919063ffffffff16565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611bf957600080fd5b505afa158015611c0d573d6000803e3d6000fd5b505050506040513d6020811015611c2357600080fd5b810190808051906020019092919050505014611c8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134136025913960400191505060405180910390fd5b508080600101915050611b51565b503373ffffffffffffffffffffffffffffffffffffffff16ff5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ded57611de7848360405180602001604052806000815250612857565b50611e19565b611e1884838573ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b5b600190509392505050565b6000611e85858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050604051806020016040528060008152506120cf565b9050949350505050565b3373ffffffffffffffffffffffffffffffffffffffff16611eae612b44565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b6000611f4282612b6e565b905060008111611fba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f61646d696e2077697464726177206e6f7420616c6c6f7765640000000000000081525060200191505060405180910390fd5b611fc48282612ba0565b5050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461208b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120e584600061270c90919063ffffffff16565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613466602b913960400191505060405180910390fd5b60008511612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806134916027913960400191505060405180910390fd5b6121c03330878773ffffffffffffffffffffffffffffffffffffffff16612cb6909392919063ffffffff16565b7fd45bf0460398ad3b27d2bd85144872898591943b81eca880e34fca0a229aa0dc8433878686604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200180602001838103835285818151815260200191508051906020019080838360005b83811015612294578082015181840152602081019050612279565b50505050905090810190601f1680156122c15780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156122fa5780820151818401526020810190506122df565b50505050905090810190601f1680156123275780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a160019050949350505050565b60006123a483838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050604051806020016040528060008152506111a2565b905092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461246f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600061247b6000612a5d565b905060008090505b818110156124bb5760006124a1600080612a7290919063ffffffff16565b90506124ad848261273c565b508080600101915050612483565b505050565b60606124cc6000612a5d565b6040519080825280602002602001820160405280156124fa5781602001602082028038833980820191505090505b50905060008090505b61250d6000612a5d565b81101561257b57612528816000612a7290919063ffffffff16565b82828151811061253457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050612503565b5090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616c6c6572206d75737420626520504e4554574f524b20616464726573732181525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806134e06034913960400191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612734836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612da3565b905092915050565b61275081600061270c90919063ffffffff16565b156128535760008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156127d457600080fd5b505afa1580156127e8573d6000803e3d6000fd5b505050506040513d60208110156127fe57600080fd5b8101908080519060200190929190505050905061283c83828473ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b612850826000612a2d90919063ffffffff16565b50505b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d846040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156128ce57600080fd5b505af11580156128e2573d6000803e3d6000fd5b5050505060008473ffffffffffffffffffffffffffffffffffffffff1684846040518082805190602001908083835b602083106129345780518252602082019150602081019050602083039250612911565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612996576040519150601f19603f3d011682016040523d82523d6000602084013e61299b565b606091505b50509050806129f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613514602a913960400191505060405180910390fd5b509392505050565b6000612a25836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612dc6565b905092915050565b6000612a55836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612e36565b905092915050565b6000612a6b82600001612f1e565b9050919050565b6000612a818360000183612f2f565b60001c905092915050565b612b3f8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612fb2565b505050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612b8482600061270c90919063ffffffff16565b612b9657612b91826130a1565b612b99565b60005b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c21573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612c1b573d6000803e3d6000fd5b50612c4d565b612c4c33828473ffffffffffffffffffffffffffffffffffffffff16612a8c9092919063ffffffff16565b5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f46ae78bc7b198b8b534ca0070d125569ac5f955976841c4343223079f3abf0de836040518082815260200191505060405180910390a35050565b612d9d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612fb2565b50505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000612dd28383612da3565b612e2b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e30565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114612f125760006001820390506000600186600001805490500390506000866000018281548110612e8157fe5b9060005260206000200154905080876000018481548110612e9e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612ed657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612f18565b60009150505b92915050565b600081600001805490509050919050565b600081836000018054905011612f90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133ce6022913960400191505060405180910390fd5b826000018281548110612f9f57fe5b9060005260206000200154905092915050565b6060613014826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661319c9092919063ffffffff16565b905060008151111561309c5780806020019051602081101561303557600080fd5b810190808051906020019092919050505061309b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061353e602a913960400191505060405180910390fd5b5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613193578173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561315357600080fd5b505afa158015613167573d6000803e3d6000fd5b505050506040513d602081101561317d57600080fd5b8101908080519060200190929190505050613195565b475b9050919050565b60606131ab84846000856131b4565b90509392505050565b60606131bf856133ba565b613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613281578051825260208201915060208101905060208303925061325e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146132e3576040519150601f19603f3d011682016040523d82523d6000602084013e6132e8565b606091505b509150915081156132fd5780925050506133b2565b6000815111156133105780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561337757808201518184015260208101905061335c565b50505050905090810190601f1680156133a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473546f6b656e207265636569766572206973206e6f74207468697320636f6e747261637442616c616e6365206f6620737570706f7274656420746f6b656e73206d7573742062652030496e76616c69642074616720666f72206175746f6d6174696320706567496e206f6e204552433737372073656e64546f6b656e20617420737570706c6965642061646472657373206973204e4f5420737570706f7274656421546f6b656e20616d6f756e74206d7573742062652067726561746572207468616e207a65726f2145746865727320616d6f756e74206d7573742062652067726561746572207468616e207a65726f2143616e6e6f742073657420746865207a65726f20616464726573732061732074686520704e6574776f726b206164647265737321455448207472616e73666572206661696c6564207768656e2070656767696e67206f75742077455448215361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656463616c6c6572206973206e6f74206120737570706f727465642045524337373720746f6b656e21a264697066735822122086e0822434cd3c8e56348e882a719425859569eb910718a66a3642da17a068f364736f6c63430006020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d13c7342e1ef687c5ad21b27c2b65d772cab5c8c
-----Decoded View---------------
Arg [0] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _tokensToSupport (address[]): 0xD13c7342e1ef687C5ad21b27c2b65D772cAb5C8c
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000d13c7342e1ef687c5ad21b27c2b65d772cab5c8c
Deployed Bytecode Sourcemap
40780:8565:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42134:4;;;;;;;;;;;42112:27;;:10;:27;;;42104:36;;;;;;40780:8565;;;;;44547:878;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44547:878:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;44547:878:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44547:878:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44547:878:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44547:878:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44547:878:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44547:878:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44547:878:0;;;;;;;;;;;;:::i;:::-;;42464:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42464:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42464:130:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48763:190;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48763:190:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48763:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45619:489;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45619:489:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45619:489:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45619:489:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45619:489:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45619:489:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45619:489:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45619:489:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45619:489:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45619:489:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;47261:779;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47261:779:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;47261:779:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47261:779:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47261:779:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47261:779:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41286:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41286:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41316:17;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41316:17:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42884:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42884:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42884:218:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43110:209;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43110:209:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43110:209:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48397:358;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48397:358:0;;;:::i;:::-;;46812:441;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46812:441:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46812:441:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43595:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43595:263:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43595:263:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43595:263:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43595:263:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43595:263:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39899:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39899:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39899:213:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;42156:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42156:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42156:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;43866:606;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43866:606:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;43866:606:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43866:606:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43866:606:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43866:606:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43866:606:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;43866:606:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43866:606:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43866:606:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43866:606:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45433:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45433:178:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45433:178:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45433:178:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45433:178:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48048:341;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48048:341:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48048:341:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;43327:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43327:260:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43327:260:0;;;;;;;;;;;;;;;;;42256:200;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42256:200:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42256:200:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;44547:878;44783:21;44807:10;44783:34;;44836:39;44861:13;44836:15;:24;;:39;;;;:::i;:::-;44828:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44952:4;44938:19;;:2;:19;;;44930:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45030:1;45012:8;;:15;;:19;45008:410;;;45065:1;45056:6;:10;45048:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45126:11;45139:33;45187:8;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45176:39:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45176:39:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45176:39:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45176:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45176:39:0;;;;;;;;;;;;;;45125:90;;;;45245:25;;;;;;;;;;;;;;;;;;;45238:3;:32;45230:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45341:65;45347:13;45362:4;45368:6;45376:19;45397:8;;45341:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45341:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45341:65:0;;;;;;;;;;;;;;;;;;;45008:410;;;44547:878;;;;;;;;;:::o;42464:130::-;42530:4;42554:32;42579:6;42554:15;:24;;:32;;;;:::i;:::-;42547:39;;42464:130;;;:::o;48763:190::-;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48911:34:::1;48926:3;48931:13;48911:14;:34::i;:::-;48763:190:::0;;:::o;45619:489::-;45772:4;45802:39;45835:4;;;;;;;;;;;45802:15;:24;;:39;;;;:::i;:::-;45794:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45899:1;45887:9;:13;45879:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45956:4;;;;;;;;;;;:12;;;45975:9;45956:31;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45956:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;45956:31:0;;;;;46003:75;46017:4;;;;;;;;;;;46024:10;46036:9;46047:19;46068:9;46003:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46003:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;46003:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46096:4;46089:11;;45619:489;;;;:::o;47261:779::-;47482:4;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47533:4:::1;;;;;;;;;;;47508:30;;:13;:30;;;47504:529;;;47555:52;47566:15;47583:12;47597:9;;47555:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47555:52:0;;;;;;:10;:52::i;:::-;;47504:529;;;47640:21;40993:42;47664:32;;;47697:13;41198:24;;;;;;;::::0;::::1;;;;;;;;;;;47664:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;47664:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;47664:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;47664:76:0;;;;;;;;;;;;;;;;47640:100;;47784:1;47759:27;;:13;:27;;;47755:267;;;47814:52;47821:15;47838:13;47853:12;47814:6;:52::i;:::-;47807:59;;;;;47755:267;47915:13;47907:27;;;47935:15;47952:12;47966:9;;47907:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47907:69:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;47907:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;47907:69:0;;;;48002:4;47995:11;;;;;47504:529;42049:1;47261:779:::0;;;;;;;:::o;41286:23::-;;;;;;;;;;;;;:::o;41316:17::-;;;;;;;;;;;;;:::o;42884:218::-;43008:12;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43038:34:::1;43058:13;43038:15;:19;;:34;;;;:::i;:::-;;43090:4;43083:11;;42884:218:::0;;;:::o;43110:209::-;43237:12;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43274:37:::1;43297:13;43274:15;:22;;:37;;;;:::i;:::-;43267:44;;43110:209:::0;;;:::o;48397:358::-;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48477:9:::1;48489:1:::0;48477:13:::1;;48472:241;48496:24;:15;:22;:24::i;:::-;48492:1;:28;48472:241;;;48542:20;48565:21;48584:1;48565:15;:18;;:21;;;;:::i;:::-;48542:44;;48658:1;48616:12;48609:30;;;48648:4;48609:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;48609:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;48609:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;48609:45:0;;;;;;;;;;;;;;;;:50;48601:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48472:241;48522:3;;;;;;;48472:241;;;;48736:10;48723:24;;;46812:441:::0;46996:4;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47047:4:::1;;;;;;;;;;;47022:30;;:13;:30;;;47018:206;;;47069:45;47080:15;47097:12;47069:45;;;;;;;;;;;::::0;:10:::1;:45::i;:::-;;47018:206;;;47147:65;47182:15;47199:12;47154:13;47147:34;;;;:65;;;;;:::i;:::-;47018:206;47241:4;47234:11;;46812:441:::0;;;;;:::o;43595:263::-;43762:4;43791:59;43797:12;43811:13;43826:19;;43791:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;43791:59:0;;;;;;;;;;;;;;;;;;:5;:59::i;:::-;43784:66;;43595:263;;;;;;:::o;39899:213::-;39386:10;39374:22;;:8;:6;:8::i;:::-;:22;;;39366:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39961:17:::1;39981:27;40002:5;39981:20;:27::i;:::-;39961:47;;40038:1;40023:12;:16;40015:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40076:30;40086:5;40093:12;40076:9;:30::i;:::-;39431:1;39899:213:::0;:::o;42156:92::-;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42234:5:::1;42221:4;;:19;;;;;;;;;;;;;;;;;;42156:92:::0;:::o;43866:606::-;44062:4;44092:39;44117:13;44092:15;:24;;:39;;;;:::i;:::-;44084:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44213:1;44198:12;:16;44190:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44269:79;44308:10;44328:4;44335:12;44276:13;44269:38;;;;:79;;;;;;:::i;:::-;44364:78;44370:13;44385:10;44397:12;44411:19;44432:9;44364:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44364:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44364:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44460:4;44453:11;;43866:606;;;;;;:::o;45433:178::-;45541:4;45570:33;45579:19;;45570:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45570:33:0;;;;;;;;;;;;;;;;;;:8;:33::i;:::-;45563:40;;45433:178;;;;:::o;48048:341::-;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48158:22:::1;48183:24;:15;:22;:24::i;:::-;48158:49;;48223:9;48235:1:::0;48223:13:::1;;48218:164;48242:14;48238:1;:18;48218:164;;;48278:20;48301:21;48320:1;48301:15:::0;:18:::1;;:21;;;;:::i;:::-;48278:44;;48337:33;48352:3;48357:12;48337:14;:33::i;:::-;48218:164;48258:3;;;;;;;48218:164;;;;42049:1;48048:341:::0;:::o;43327:260::-;43379:20;43432:24;:15;:22;:24::i;:::-;43418:39;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;43418:39:0;;;;43412:45;;43473:9;43485:1;43473:13;;43468:112;43492:24;:15;:22;:24::i;:::-;43488:1;:28;43468:112;;;43547:21;43566:1;43547:15;:18;;:21;;;;:::i;:::-;43538:3;43542:1;43538:6;;;;;;;;;;;;;:30;;;;;;;;;;;43518:3;;;;;;;43468:112;;;;43327:260;:::o;42256:200::-;41993:8;;;;;;;;;;;41979:22;;:10;:22;;;41971:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42358:1:::1;42337:23;;:9;:23;;;;42329:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42439:9;42428:8;;:20;;;;;;;;;;;;;;;;;;42256:200:::0;:::o;30072:158::-;30152:4;30176:46;30186:3;:10;;30214:5;30206:14;;30198:23;;30176:9;:46::i;:::-;30169:53;;30072:158;;;;:::o;48961:381::-;49091:39;49116:13;49091:15;:24;;:39;;;;:::i;:::-;49087:248;;;49147:12;49169:13;49162:31;;;49202:4;49162:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49162:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49162:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49162:46:0;;;;;;;;;;;;;;;;49147:61;;49223:48;49258:3;49263:7;49230:13;49223:34;;;;:48;;;;;:::i;:::-;49286:37;49309:13;49286:15;:22;;:37;;;;:::i;:::-;;49087:248;;48961:381;;:::o;46116:688::-;46285:4;46307;;;;;;;;;;;:13;;;46321:12;46307:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46307:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46307:27:0;;;;46654:12;46672:15;:20;;46699:12;46713:9;46672:51;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;46672:51:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;46653:70:0;;;46742:7;46734:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46116:688;;;;;;:::o;29518:143::-;29588:4;29612:41;29617:3;:10;;29645:5;29637:14;;29629:23;;29612:4;:41::i;:::-;29605:48;;29518:143;;;;:::o;29837:149::-;29910:4;29934:44;29942:3;:10;;29970:5;29962:14;;29954:23;;29934:7;:44::i;:::-;29927:51;;29837:149;;;;:::o;30316:117::-;30379:7;30406:19;30414:3;:10;;30406:7;:19::i;:::-;30399:26;;30316:117;;;:::o;30777:149::-;30851:7;30894:22;30898:3;:10;;30910:5;30894:3;:22::i;:::-;30886:31;;30871:47;;30777:149;;;;:::o;21375:177::-;21458:86;21478:5;21508:23;;;21533:2;21537:5;21485:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21485:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;21485:58:0;21458:19;:86::i;:::-;21375:177;;;:::o;42602:87::-;42646:7;42673:8;;;;;;;;;;;42666:15;;42602:87;:::o;42697:179::-;42773:4;42797:31;42822:5;42797:15;:24;;:31;;;;:::i;:::-;:71;;42835:33;42862:5;42835:26;:33::i;:::-;42797:71;;;42831:1;42797:71;42790:78;;42697:179;;;:::o;40118:292::-;39698:1;40194:22;;:13;:22;;;40190:151;;;40227:10;:19;;:28;40247:7;40227:28;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40227:28:0;40190:151;;;40278:55;40313:10;40325:7;40285:13;40278:34;;;;:55;;;;;:::i;:::-;40190:151;40381:13;40352:52;;40369:10;40352:52;;;40396:7;40352:52;;;;;;;;;;;;;;;;;;40118:292;;:::o;21560:205::-;21661:96;21681:5;21711:27;;;21740:4;21746:2;21750:5;21688:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21688:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;21688:68:0;21661:19;:96::i;:::-;21560:205;;;;:::o;28392:129::-;28465:4;28512:1;28489:3;:12;;:19;28502:5;28489:19;;;;;;;;;;;;:24;;28482:31;;28392:129;;;;:::o;26172:414::-;26235:4;26257:21;26267:3;26272:5;26257:9;:21::i;:::-;26252:327;;26295:3;:11;;26312:5;26295:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;26295:23:0;;;;;;;;;;;;;;;;;;;26478:3;:11;;:18;;;;26456:3;:12;;:19;26469:5;26456:19;;;;;;;;;;;:40;;;;26518:4;26511:11;;;;26252:327;26562:5;26555:12;;26172:414;;;;;:::o;26762:1544::-;26828:4;26946:18;26967:3;:12;;:19;26980:5;26967:19;;;;;;;;;;;;26946:40;;27017:1;27003:10;:15;26999:1300;;27365:21;27402:1;27389:10;:14;27365:38;;27418:17;27459:1;27438:3;:11;;:18;;;;:22;27418:42;;27705:17;27725:3;:11;;27737:9;27725:22;;;;;;;;;;;;;;;;27705:42;;27871:9;27842:3;:11;;27854:13;27842:26;;;;;;;;;;;;;;;:38;;;;27990:1;27974:13;:17;27948:3;:12;;:23;27961:9;27948:23;;;;;;;;;;;:43;;;;28100:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;28195:3;:12;;:19;28208:5;28195:19;;;;;;;;;;;28188:26;;;28238:4;28231:11;;;;;;;;26999:1300;28282:5;28275:12;;;26762:1544;;;;;:::o;28607:109::-;28663:7;28690:3;:11;;:18;;;;28683:25;;28607:109;;;:::o;29060:204::-;29127:7;29176:5;29155:3;:11;;:18;;;;:26;29147:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29238:3;:11;;29250:5;29238:18;;;;;;;;;;;;;;;;29231:25;;29060:204;;;;:::o;23680:761::-;24104:23;24130:69;24158:4;24130:69;;;;;;;;;;;;;;;;;24138:5;24130:27;;;;:69;;;;;:::i;:::-;24104:95;;24234:1;24214:10;:17;:21;24210:224;;;24356:10;24345:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24345:30:0;;;;;;;;;;;;;;;;24337:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24210:224;23680:761;;;:::o;40476:217::-;40551:18;39698:1;40594:14;;:5;:14;;;:93;;40656:5;40649:23;;;40681:4;40649:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40649:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40649:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40649:38:0;;;;;;;;;;;;;;;;40594:93;;;40618:21;40594:93;40578:109;;40476:217;;;:::o;18323:196::-;18426:12;18458:53;18481:6;18489:4;18495:1;18498:12;18458:22;:53::i;:::-;18451:60;;18323:196;;;;;:::o;19700:979::-;19830:12;19863:18;19874:6;19863:10;:18::i;:::-;19855:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19989:12;20003:23;20030:6;:11;;20050:8;20061:4;20030:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;20030:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;19988:78:0;;;;20081:7;20077:595;;;20112:10;20105:17;;;;;;20077:595;20246:1;20226:10;:17;:21;20222:439;;;20489:10;20483:17;20550:15;20537:10;20533:2;20529:19;20522:44;20437:148;20632:12;20625:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20625:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19700:979;;;;;;;:::o;15405:422::-;15465:4;15673:12;15784:7;15772:20;15764:28;;15818:1;15811:4;:8;15804:15;;;15405:422;;;:::o
Swarm Source
ipfs://86e0822434cd3c8e56348e882a719425859569eb910718a66a3642da17a068f3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.