Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 7,381 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Release | 20526692 | 81 days ago | IN | 0 ETH | 0.00024013 | ||||
Release | 20526668 | 81 days ago | IN | 0 ETH | 0.00029124 | ||||
Release | 19526939 | 221 days ago | IN | 0 ETH | 0.00436833 | ||||
Release | 19526937 | 221 days ago | IN | 0 ETH | 0.00202708 | ||||
Release | 19526937 | 221 days ago | IN | 0 ETH | 0.00314601 | ||||
Release | 19517723 | 222 days ago | IN | 0 ETH | 0.00133643 | ||||
Release | 18714621 | 335 days ago | IN | 0 ETH | 0.0048755 | ||||
Release | 18016598 | 433 days ago | IN | 0 ETH | 0.00160885 | ||||
Release | 17828428 | 459 days ago | IN | 0 ETH | 0.0028388 | ||||
Release | 17828423 | 459 days ago | IN | 0 ETH | 0.00388164 | ||||
Release | 17627911 | 487 days ago | IN | 0 ETH | 0.00367079 | ||||
Release | 17430527 | 515 days ago | IN | 0 ETH | 0.00161307 | ||||
Release | 17430514 | 515 days ago | IN | 0 ETH | 0.00194719 | ||||
Release | 17144478 | 555 days ago | IN | 0 ETH | 0.0015572 | ||||
Release | 17144160 | 555 days ago | IN | 0 ETH | 0.0032264 | ||||
Release | 17122247 | 558 days ago | IN | 0 ETH | 0.00339673 | ||||
Release | 17076497 | 565 days ago | IN | 0 ETH | 0.00703612 | ||||
Release | 17071572 | 565 days ago | IN | 0 ETH | 0.00276334 | ||||
Release | 17025700 | 572 days ago | IN | 0 ETH | 0.00290632 | ||||
Release | 16756845 | 610 days ago | IN | 0 ETH | 0.00207904 | ||||
Release | 16647457 | 625 days ago | IN | 0 ETH | 0.00308346 | ||||
Release | 16561967 | 637 days ago | IN | 0 ETH | 0.00146396 | ||||
Release | 16561945 | 637 days ago | IN | 0 ETH | 0.00177121 | ||||
Release | 16455608 | 652 days ago | IN | 0 ETH | 0.00136836 | ||||
Release | 16445131 | 654 days ago | IN | 0 ETH | 0.00145509 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
20526692 | 81 days ago | 0 ETH | |||||
20526668 | 81 days ago | 0 ETH | |||||
19526939 | 221 days ago | 0 ETH | |||||
19526937 | 221 days ago | 0 ETH | |||||
19517723 | 222 days ago | 0 ETH | |||||
18714621 | 335 days ago | 0 ETH | |||||
18016598 | 433 days ago | 0 ETH | |||||
17828428 | 459 days ago | 0 ETH | |||||
17828423 | 459 days ago | 0 ETH | |||||
17627911 | 487 days ago | 0 ETH | |||||
17430527 | 515 days ago | 0 ETH | |||||
17430514 | 515 days ago | 0 ETH | |||||
17144160 | 555 days ago | 0 ETH | |||||
17122247 | 558 days ago | 0 ETH | |||||
17076497 | 565 days ago | 0 ETH | |||||
17071572 | 565 days ago | 0 ETH | |||||
17025700 | 572 days ago | 0 ETH | |||||
16756845 | 610 days ago | 0 ETH | |||||
16647457 | 625 days ago | 0 ETH | |||||
16561967 | 637 days ago | 0 ETH | |||||
16561945 | 637 days ago | 0 ETH | |||||
16455608 | 652 days ago | 0 ETH | |||||
16445131 | 654 days ago | 0 ETH | |||||
16443070 | 654 days ago | 0 ETH | |||||
16443059 | 654 days ago | 0 ETH |
Loading...
Loading
Contract Name:
Vault
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2020-11-11 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol 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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contract-dependencies/Roles.sol pragma solidity ^0.6.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: contract-dependencies/MinterRole.sol pragma solidity ^0.6.8; abstract contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); uint256 public mintersCount; address[] public mintersArray; Roles.Role private _minters; modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { mintersCount++; mintersArray.push(account); _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { uint256 index; for(uint256 i = 0; i < mintersArray.length; i++) { if(mintersArray[i] == account) { index = i; } } mintersArray[index] = mintersArray[mintersArray.length - 1]; mintersArray.pop(); mintersCount--; _minters.remove(account); emit MinterRemoved(account); } } // File: contract-dependencies/OwnerRole.sol pragma solidity ^0.6.8; abstract contract OwnerRole { using Roles for Roles.Role; event OwnerAdded(address indexed account); event OwnerRemoved(address indexed account); uint256 public ownersCount; address[] public ownersArray; Roles.Role private _owners; modifier onlyOwner() { require(isOwner(msg.sender), "OwnerRole: caller does not have the Owner role"); _; } function isOwner(address account) public view returns (bool) { return _owners.has(account); } function addOwner(address account) public onlyOwner { _addOwner(account); } function renounceOwner() public { _removeOwner(msg.sender); } function _addOwner(address account) internal { ownersCount++; ownersArray.push(account); _owners.add(account); emit OwnerAdded(account); } function _removeOwner(address account) internal { ownersCount--; uint256 index; for(uint256 i = 0; i < ownersArray.length; i++) { if(ownersArray[i] == account) { index = i; } } ownersArray[index] = ownersArray[ownersArray.length - 1]; ownersArray.pop(); _owners.remove(account); emit OwnerRemoved(account); } } // File: contract-dependencies/ERC20Mintable.sol pragma solidity 0.6.8; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ abstract contract ERC20Mintable is ERC20, MinterRole, OwnerRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ modifier onlyMinterOrOwner() { require( isMinter(msg.sender) || isOwner(msg.sender), "Caller is not a minter nor an owner." ); _; } function removeMinter(address account) external onlyOwner { _removeMinter(account); } function addMinter(address account) external onlyOwner { _addMinter(account); } function mint(address account, uint256 amount) external onlyMinterOrOwner returns (bool) { _mint(account, amount); return true; } } // File: contracts/eXRD.sol /* The ERC20 E-RADIX tokens have been generated by Radix Tokens (Jersey) Limited. The purchase possession, exchange and use and ownership of these tokens are subject to the terms and conditions, risk warnings and disclaimers issued by Radix Token’s Jersey Limited which can be found at www.radixtokens.com/terms/ERC20token and which shall be binding on all persons who acquires or seeks to acquire possess or control the use custody exchange or ownership of these tokens and all successors in title including anyone who may claim or be entitled to an equitable right title or interest in these tokens or any of them. */ pragma solidity 0.6.8; contract eXRD is ERC20Burnable, ERC20Mintable { constructor(address depositAddress, uint256 amount) public ERC20("E-RADIX", "eXRD") { require(depositAddress != address(0)); _addOwner(msg.sender); _mint(depositAddress, amount.mul((10**uint256(decimals())))); } } // File: contracts/Vault.sol pragma solidity 0.6.8; /* Stores a record of all allocations, and keeps track of unlocked amounts for different allocation groups. An allocation consists of a number of total tokens, the amount of already released tokens and an assignment to a group. Allocations are created and funded (sending in tokens) in the same step. A group is a set of allocations that all unlock in the same manner. The primary function of the vault contract is to allow the owner of the vault contract to set (increase only) the % unlocked (by group), making that % of each individual allocation within the group available for release. Releases are initiated by beneficiaries, sending tokens to their ethereum address. The owner of the contract also has the ability to revoke individual allocations, causing the associated funds to be withdrawn to the owner. */ contract Vault is Ownable { using SafeMath for uint256; eXRD public token; event AllocationRegistered( address indexed beneficiary, uint256 amount, uint256 group ); event AllocationFullyReleased(address indexed beneficiary, uint256 allocationIndex); event Unlocked(uint256 indexed group, uint256 percentage); event Revoked(address indexed beneficiary, uint256 allocationIndex); event GroupAdded(string indexed name, uint256 indexed id); event Released(address indexed beneficiary, uint256 allocationIndex); event FundingAccountSet(address indexed account); struct Allocation { uint256 amount; uint256 released; uint256 group; bool revoked; } struct AllocationReference { address beneficiary; uint256 index; } struct Group { string name; bool active; uint256 allocationCount; mapping(uint256 => AllocationReference) allocations; } mapping(address => Allocation[]) private beneficiaryAllocations; mapping(address => uint256) private nbrOfAllocations; address[] private registeredBeneficiaries; mapping(address => bool) private isRegistered; mapping(uint256 => uint256) private unlockedPercentages; mapping(uint256 => Group) private groups; uint256 private groupCount; address private fundingAccount; bool releasesPaused; constructor(eXRD token_) public { token = token_; } /* Unlock a certain amount of tokens to a group. Unlocking happens incrementally using percentages. Every allocation for that group will have a percentage of its amount unlocked and ready to be released. */ function unlock(uint256 group_, uint256 percentage_) external onlyOwner { require( group_ < groupCount, "Group does not exist." ); require( percentage_ > 0 && percentage_ <= 100, "Percentage parameter invalid. Need to be > 0 and <= 100." ); require( percentage_ > unlockedPercentages[group_], "Percentage has to be increasing." ); unlockedPercentages[group_] = percentage_; if (percentage_ == 100) { groups[group_].active = false; } emit Unlocked(group_, percentage_); } function setFundingAccount(address account_) external onlyOwner { require( account_ != address(0), "Cannot set funding account to the zero address." ); fundingAccount = account_; emit FundingAccountSet(account_); } /* Revoke an allocation for a beneficiary. This sets the revoke flag in the allocation, preventing more releases. */ function revoke(address beneficiary_, uint256 allocationIndex_) external onlyOwner { require( beneficiary_ != address(0), "Cannot revoke for the zero address." ); require( isRegistered[beneficiary_] == true, "Beneficiary is not registered." ); require( nbrOfAllocations[beneficiary_] > allocationIndex_, "Allocation does not exist" ); Allocation storage allocation = beneficiaryAllocations[beneficiary_][allocationIndex_]; require( allocation.revoked == false, "Allocation already revoked" ); allocation.revoked = true; uint256 toBeReleased = allocation.amount.sub(allocation.released); token.transfer(fundingAccount, toBeReleased); emit Revoked(beneficiary_, allocationIndex_); } /* Revoke allocations for a set of beneficiaries belonging to a specific group. */ function revokeBeneficiariesInGroup( address[] calldata beneficiaries_, uint256 group_ ) external onlyOwner { require( group_ < groupCount, "Group not registered in contract." ); uint256 totalAmount = 0; for (uint256 i = 0; i < beneficiaries_.length; i++) { address beneficiary = beneficiaries_[i]; require( beneficiary != address(0), "Cannot revoke for the zero address." ); require( isRegistered[beneficiary] == true, "Beneficiary is not registered." ); uint256 allocationCount = nbrOfAllocations[beneficiary]; for ( uint256 allocationIndex = 0; allocationIndex < allocationCount; allocationIndex++ ) { Allocation storage allocation = beneficiaryAllocations[beneficiary][allocationIndex]; require( allocation.revoked == false, "Allocation already revoked" ); if (allocation.group == group_) { allocation.revoked = true; uint256 toBeReleased = allocation.amount.sub( allocation.released ); totalAmount += toBeReleased; emit Revoked(beneficiary, allocationIndex); } } } token.transfer(fundingAccount, totalAmount); } /* Revoke all allocations for a specific group. */ function revokeGroup(uint256 group_) external onlyOwner { require( group_ < groupCount, "Group not registered in contract." ); uint256 totalAmount = 0; for (uint256 i = 0; i < groups[group_].allocationCount; i++) { AllocationReference memory allocationRef = groups[group_].allocations[i]; Allocation storage allocation = beneficiaryAllocations[allocationRef.beneficiary][allocationRef.index]; if(allocation.revoked == false) { allocation.revoked = true; uint256 toBeReleased = allocation.amount.sub( allocation.released ); totalAmount += toBeReleased; emit Revoked(allocationRef.beneficiary, allocationRef.index); } } token.transfer(fundingAccount, totalAmount); } /* Adds a group and increments the group count. */ function addGroup(string calldata name_) external onlyOwner { groups[groupCount] = Group(name_, true, 0); emit GroupAdded(name_, groupCount); groupCount++; } /* Disable a group, preventing further allocations to be made in that group. */ function disableGroup(uint256 group_) external onlyOwner { require( group_ < groupCount, "Group not registered in contract." ); groups[group_].active = false; } /* Enable a group. */ function enableGroup(uint256 group_) external onlyOwner { require( group_ < groupCount, "Group not registered in contract." ); require( unlockedPercentages[group_] < 100, "Group has been fully unlocked." ); groups[group_].active = true; } /* Adds a number of allocations. Pushes a new allocations to the allocation array for each beneficiary, sets the beneficiary as registered, increments nbrOfAllocations for the beneficiary, and transfers enough tokens to this contracts to be unlocked. */ function addAllocations( address[] calldata beneficiaries_, uint256[] calldata amounts_, uint256[] calldata groups_ ) external onlyOwner { require( beneficiaries_.length == amounts_.length && beneficiaries_.length == groups_.length, "Length of input arrays do not match." ); require( fundingAccount != address(0), "Funding account has to be set before allocating." ); uint256 totalAmount = 0; for (uint256 i = 0; i < beneficiaries_.length; i++) { require( beneficiaries_[i] != address(0), "Beneficiary cannot be 0 address." ); require( amounts_[i] > 0, "Cannot allocate zero amount." ); Group memory registeredGroup = groups[groups_[i]]; require( groups_[i] < groupCount, "Group not registered in contract." ); require(registeredGroup.active == true, "Group is not active."); // Add new allocation to beneficiary beneficiaryAllocations[beneficiaries_[i]].push(Allocation( amounts_[i], 0, groups_[i], false )); nbrOfAllocations[beneficiaries_[i]]++; // Add reference to the allocation to group allocation array groups[groups_[i]].allocations[groups[groups_[i]].allocationCount] = AllocationReference( beneficiaries_[i], beneficiaryAllocations[beneficiaries_[i]].length - 1 ); groups[groups_[i]].allocationCount++; if(!isRegistered[beneficiaries_[i]]) { registeredBeneficiaries.push(beneficiaries_[i]); } isRegistered[beneficiaries_[i]] = true; totalAmount += amounts_[i]; emit AllocationRegistered(beneficiaries_[i], amounts_[i], groups_[i]); } token.transferFrom(fundingAccount, address(this), totalAmount); } /* Calculates the amount of tokens that can be released for an allocation. */ function releasableAmount(address beneficiary_, uint256 allocationIndex_) public view returns (uint256) { require( isRegistered[beneficiary_] == true, "You have to be a registered address in order to release tokens." ); require( allocationIndex_ < nbrOfAllocations[beneficiary_], "No allocation found." ); require( beneficiaryAllocations[beneficiary_][allocationIndex_].revoked == false, "Allocation has been revoked." ); uint256 amount = beneficiaryAllocations[beneficiary_][allocationIndex_].amount; uint256 released = beneficiaryAllocations[beneficiary_][allocationIndex_].released; uint256 group = beneficiaryAllocations[beneficiary_][allocationIndex_].group; uint256 unlocked = unlockedPercentages[group]; uint256 amountUnlocked = amount.mul(unlocked).div(100); uint256 releasable = amountUnlocked.sub(released); return releasable; } /* Sends the tokens that have been unlocked for an allocation to the beneficiary. */ function release(uint256 allocationIndex_) public { require( isRegistered[msg.sender] == true, "You have to be a registered address in order to release tokens." ); require(releasesPaused == false, "Releases have been paused."); require( allocationIndex_ < nbrOfAllocations[msg.sender], "No allocation found." ); Allocation storage allocation = beneficiaryAllocations[msg.sender][allocationIndex_]; require(allocation.revoked == false, "Allocation has been revoked."); require( unlockedPercentages[allocation.group] > 0, "Group has not has any unlocked tokens yet." ); uint256 releasable = releasableAmount(msg.sender, allocationIndex_); require(releasable > 0, "Nothing to release"); allocation.released = allocation.released.add(releasable); emit Released(msg.sender, allocationIndex_); if (allocation.released == allocation.amount) { emit AllocationFullyReleased(msg.sender, allocationIndex_); } token.transfer(msg.sender, releasable); } function pauseReleases() external onlyOwner { releasesPaused = true; } function unpauseReleases() external onlyOwner { releasesPaused = false; } function getAllocationInGroup(uint256 group_, uint256 index_) public view returns ( address, uint256 ) { AllocationReference memory allocationRef = groups[group_].allocations[index_]; return ( allocationRef.beneficiary, allocationRef.index ); } function getBeneficiaryAllocations(address beneficiary_, uint256 index_) public view returns ( uint256 amount, uint256 released, uint256 group, bool revoked ) { Allocation memory allocation = beneficiaryAllocations[beneficiary_][index_]; return ( allocation.amount, allocation.released, allocation.group, allocation.revoked ); } function getNbrOfAllocations(address beneficiary_) public view returns (uint256) { return nbrOfAllocations[beneficiary_]; } function getRegisteredBeneficiaries(uint256 index_) public view returns (address) { return registeredBeneficiaries[index_]; } function getIsRegistered(address beneficiary_) public view returns (bool) { return isRegistered[beneficiary_]; } function getUnlockedPercentages(uint256 group_) public view returns (uint256) { return unlockedPercentages[group_]; } function getGroup(uint256 group_) public view returns ( string memory name, bool active, uint256 allocationCount ) { Group memory group = groups[group_]; return ( group.name, group.active, group.allocationCount ); } function getGroupCount() public view returns (uint256) { return groupCount; } function getFundingAccount() public view returns (address) { return fundingAccount; } }
Contract Security Audit
- Quantstamp - November 12th, 2020 - Security Audit Report
[{"inputs":[{"internalType":"contract eXRD","name":"token_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocationIndex","type":"uint256"}],"name":"AllocationFullyReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"group","type":"uint256"}],"name":"AllocationRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"FundingAccountSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"GroupAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocationIndex","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocationIndex","type":"uint256"}],"name":"Revoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"group","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"Unlocked","type":"event"},{"inputs":[{"internalType":"address[]","name":"beneficiaries_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"},{"internalType":"uint256[]","name":"groups_","type":"uint256[]"}],"name":"addAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"addGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"disableGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"enableGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"},{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"getAllocationInGroup","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"},{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"getBeneficiaryAllocations","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"released","type":"uint256"},{"internalType":"uint256","name":"group","type":"uint256"},{"internalType":"bool","name":"revoked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFundingAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"getGroup","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint256","name":"allocationCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGroupCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"}],"name":"getIsRegistered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"}],"name":"getNbrOfAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"getRegisteredBeneficiaries","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"getUnlockedPercentages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseReleases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"},{"internalType":"uint256","name":"allocationIndex_","type":"uint256"}],"name":"releasableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"allocationIndex_","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary_","type":"address"},{"internalType":"uint256","name":"allocationIndex_","type":"uint256"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"beneficiaries_","type":"address[]"},{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"revokeBeneficiariesInGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"}],"name":"revokeGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"setFundingAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract eXRD","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"group_","type":"uint256"},{"internalType":"uint256","name":"percentage_","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseReleases","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200492138038062004921833981810160405260208110156200003757600080fd5b810190808051906020019092919050505060006200005a6200014060201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000148565b600033905090565b6147c980620001586000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806389c1842e116100de578063ceb6065411610097578063eac449d911610071578063eac449d914610901578063f2fde38b1461094f578063f73b9f2214610993578063fc0c546a146109c15761018e565b8063ceb60654146107a4578063d8fe549a1461085d578063e6fff2ff1461089f5761018e565b806389c1842e146105c95780638da5cb5b146105d357806398aab8121461061d578063b56111291461068b578063beef640d146106e7578063bf00eaef1461072b5761018e565b806347c433c91161014b5780636eb0581d116101255780636eb0581d1461053d578063715018a614610547578063775c37271461055157806388af1f331461059b5761018e565b806347c433c91461040b5780635bfadb241461048a57806361aa00b5146104c25761018e565b8063049ce5251461019357806306545a93146101eb57806316c5af90146102095780631be767121461028c5780632cf34d49146102ba57806337bdc99b146103dd575b600080fd5b6101d5600480360360208110156101a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a0b565b6040518082815260200191505060405180910390f35b6101f3610a54565b6040518082815260200191505060405180910390f35b61028a6004803603604081101561021f57600080fd5b810190808035906020019064010000000081111561023c57600080fd5b82018360208201111561024e57600080fd5b8035906020019184602083028401116401000000008311171561027057600080fd5b909192939192939080359060200190929190505050610a5e565b005b6102b8600480360360208110156102a257600080fd5b8101908080359060200190929190505050611012565b005b6103db600480360360608110156102d057600080fd5b81019080803590602001906401000000008111156102ed57600080fd5b8201836020820111156102ff57600080fd5b8035906020019184602083028401116401000000008311171561032157600080fd5b90919293919293908035906020019064010000000081111561034257600080fd5b82018360208201111561035457600080fd5b8035906020019184602083028401116401000000008311171561037657600080fd5b90919293919293908035906020019064010000000081111561039757600080fd5b8201836020820111156103a957600080fd5b803590602001918460208302840111640100000000831117156103cb57600080fd5b9091929391929390505050611430565b005b610409600480360360208110156103f357600080fd5b8101908080359060200190929190505050612032565b005b6104416004803603604081101561042157600080fd5b8101908080359060200190929190803590602001909291905050506125a9565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b6104c0600480360360408110156104a057600080fd5b81019080803590602001909291908035906020019092919050505061265e565b005b61050e600480360360408110156104d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612919565b604051808581526020018481526020018381526020018215151515815260200194505050505060405180910390f35b6105456129eb565b005b61054f612ad1565b005b610559612c59565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c7600480360360208110156105b157600080fd5b8101908080359060200190929190505050612c83565b005b6105d1612e61565b005b6105db612f47565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106496004803603602081101561063357600080fd5b8101908080359060200190929190505050612f70565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106cd600480360360208110156106a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fb1565b604051808215151515815260200191505060405180910390f35b610729600480360360208110156106fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613007565b005b6107a26004803603602081101561074157600080fd5b810190808035906020019064010000000081111561075e57600080fd5b82018360208201111561077057600080fd5b8035906020019184600183028401116401000000008311171561079257600080fd5b90919293919293905050506131dd565b005b6107d0600480360360208110156107ba57600080fd5b81019080803590602001909291905050506133cc565b604051808060200184151515158152602001838152602001828103825285818151815260200191508051906020019080838360005b83811015610820578082015181840152602081019050610805565b50505050905090810190601f16801561084d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b6108896004803603602081101561087357600080fd5b81019080803590602001909291905050506134dd565b6040518082815260200191505060405180910390f35b6108eb600480360360408110156108b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134fa565b6040518082815260200191505060405180910390f35b61094d6004803603604081101561091757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506138c3565b005b6109916004803603602081101561096557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613e0a565b005b6109bf600480360360208110156109a957600080fd5b8101908080359060200190929190505050614017565b005b6109c961416c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600854905090565b610a66614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110610b81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600080905060008090505b84849050811015610f04576000858583818110610ba557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147396023913960400191505060405180910390fd5b60011515600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f42656e6566696369617279206973206e6f7420726567697374657265642e000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008090505b81811015610ef4576000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610dae57fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514610e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f416c6c6f636174696f6e20616c7265616479207265766f6b656400000000000081525060200191505060405180910390fd5b8681600201541415610ee65760018160030160006101000a81548160ff0219169083151502179055506000610e8f8260010154836000015461419a90919063ffffffff16565b905080870196508473ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac4846040518082815260200191505060405180910390a2505b508080600101915050610d5a565b5050508080600101915050610b8c565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610fd057600080fd5b505af1158015610fe4573d6000803e3d6000fd5b505050506040513d6020811015610ffa57600080fd5b81019080805190602001909291905050505050505050565b61101a614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600080905060008090505b6007600084815260200190815260200160002060020154811015611324576111666144c2565b6007600085815260200190815260200160002060030160008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050600060026000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082602001518154811061124e57fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514156113155760018160030160006101000a81548160ff02191690831515021790555060006112b68260010154836000015461419a90919063ffffffff16565b90508085019450826000015173ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac484602001516040518082815260200191505060405180910390a2505b50508080600101915050611140565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d602081101561141a57600080fd5b8101908080519060200190929190505050505050565b611438614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b838390508686905014801561151357508181905086869050145b611568576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146f46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806146a36030913960400191505060405180910390fd5b600080905060008090505b87879050811015611eed57600073ffffffffffffffffffffffffffffffffffffffff1688888381811061164a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42656e65666963696172792063616e6e6f74206265203020616464726573732e81525060200191505060405180910390fd5b60008686838181106116ff57fe5b9050602002013511611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616e6e6f7420616c6c6f63617465207a65726f20616d6f756e742e0000000081525060200191505060405180910390fd5b6117816144f2565b6007600086868581811061179157fe5b905060200201358152602001908152602001600020604051806060016040529081600082018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081526020016001820160009054906101000a900460ff16151515158152602001600282015481525050905060085485858481811061188957fe5b90506020020135106118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600115158160200151151514611964576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f47726f7570206973206e6f74206163746976652e00000000000000000000000081525060200191505060405180910390fd5b600260008a8a8581811061197457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180608001604052808989868181106119e257fe5b90506020020135815260200160008152602001878786818110611a0157fe5b90506020020135815260200160001515815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055505050600360008a8a85818110611a8d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050555060405180604001604052808a8a85818110611b0b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001600260008d8d88818110611b5557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490500381525060076000878786818110611bc457fe5b905060200201358152602001908152602001600020600301600060076000898988818110611bee57fe5b90506020020135815260200190815260200160002060020154815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015590505060076000868685818110611c7957fe5b90506020020135815260200190815260200160002060020160008154809291906001019190505550600560008a8a85818110611cb157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611da6576004898984818110611d2857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6001600560008b8b86818110611db857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550868683818110611e3257fe5b9050602002013583019250888883818110611e4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f06ca7252ab2415ff6135042b2d94b9462ffcfd8844936fb2ad4a56ceda309ac7888885818110611ea957fe5b90506020020135878786818110611ebc57fe5b90506020020135604051808381526020018281526020019250505060405180910390a250808060010191505061161b565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611fed57600080fd5b505af1158015612001573d6000803e3d6000fd5b505050506040513d602081101561201757600080fd5b81019080805190602001909291905050505050505050505050565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146120db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614664603f913960400191505060405180910390fd5b60001515600960149054906101000a900460ff16151514612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f52656c65617365732068617665206265656e207061757365642e00000000000081525060200191505060405180910390fd5b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110612218576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f20616c6c6f636174696f6e20666f756e642e00000000000000000000000081525060200191505060405180910390fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061226457fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff161515146122ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f416c6c6f636174696f6e20686173206265656e207265766f6b65642e0000000081525060200191505060405180910390fd5b60006006600083600201548152602001908152602001600020541161236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806145e5602a913960400191505060405180910390fd5b600061237b33846134fa565b9050600081116123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4e6f7468696e6720746f2072656c65617365000000000000000000000000000081525060200191505060405180910390fd5b61240a8183600101546141e490919063ffffffff16565b82600101819055503373ffffffffffffffffffffffffffffffffffffffff167fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e846040518082815260200191505060405180910390a28160000154826001015414156124bf573373ffffffffffffffffffffffffffffffffffffffff167f6a7caaf0e64ee9a2fb80724152184991353ae8795f59cc05ad1d4b2c2eac574f846040518082815260200191505060405180910390a25b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561256857600080fd5b505af115801561257c573d6000803e3d6000fd5b505050506040513d602081101561259257600080fd5b810190808051906020019092919050505050505050565b6000806125b46144c2565b6007600086815260200190815260200160002060030160008581526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505090508060000151816020015192509250509250929050565b612666614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612727576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854821061279e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f47726f757020646f6573206e6f742065786973742e000000000000000000000081525060200191505060405180910390fd5b6000811180156127af575060648111155b612804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061475c6038913960400191505060405180910390fd5b6006600083815260200190815260200160002054811161288c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f50657263656e746167652068617320746f20626520696e6372656173696e672e81525060200191505060405180910390fd5b80600660008481526020019081526020016000208190555060648114156128dd5760006007600084815260200190815260200160002060010160006101000a81548160ff0219169083151502179055505b817f6a4ab9eaabc176a1c70b5f19a39c8f7a220e8f3f649ddb5a7e8c1f957ac112ab826040518082815260200191505060405180910390a25050565b600080600080612927614515565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020868154811061297157fe5b90600052602060002090600402016040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806000015181602001518260400151836060015194509450945094505092959194509250565b6129f3614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ab4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960146101000a81548160ff021916908315150217905550565b612ad9614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612c8b614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110612da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b6064600660008381526020019081526020016000205410612e2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f47726f757020686173206265656e2066756c6c7920756e6c6f636b65642e000081525060200191505060405180910390fd5b60016007600083815260200190815260200160002060010160006101000a81548160ff02191690831515021790555050565b612e69614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060048281548110612f7f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61300f614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614635602f913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f5ba0808e7c42649e6404a82a9615532c219b16ef7f3c79cfd9e29b49d8ebc60e60405160405180910390a250565b6131e5614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b604051806060016040528083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020016001151581526020016000815250600760006008548152602001908152602001600020600082015181600001908051906020019061333a92919061453f565b5060208201518160010160006101000a81548160ff02191690831515021790555060408201518160020155905050600854828260405180838380828437808301925050509250505060405180910390207f6b80e5e777487bf516eb587890cc8cb28a78151b8f55a48c47bf5f992f43d58160405160405180910390a36008600081548092919060010191905055505050565b60606000806133d96144f2565b60076000868152602001908152602001600020604051806060016040529081600082018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134905780601f1061346557610100808354040283529160200191613490565b820191906000526020600020905b81548152906001019060200180831161347357829003601f168201915b505050505081526020016001820160009054906101000a900460ff161515151581526020016002820154815250509050806000015181602001518260400151935093509350509193909250565b600060066000838152602001908152602001600020549050919050565b600060011515600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146135a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614664603f913960400191505060405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548210613659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f20616c6c6f636174696f6e20666f756e642e00000000000000000000000081525060200191505060405180910390fd5b60001515600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106136a757fe5b906000526020600020906004020160030160009054906101000a900460ff1615151461373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f416c6c6f636174696f6e20686173206265656e207265766f6b65642e0000000081525060200191505060405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061378757fe5b90600052602060002090600402016000015490506000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002084815481106137e757fe5b90600052602060002090600402016001015490506000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858154811061384757fe5b9060005260206000209060040201600201549050600060066000838152602001908152602001600020549050600061389b606461388d848861426c90919063ffffffff16565b6142f290919063ffffffff16565b905060006138b2858361419a90919063ffffffff16565b905080965050505050505092915050565b6138cb614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461398c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147396023913960400191505060405180910390fd5b60011515600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f42656e6566696369617279206973206e6f7420726567697374657265642e000081525060200191505060405180910390fd5b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411613b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f416c6c6f636174696f6e20646f6573206e6f742065786973740000000000000081525060200191505060405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110613bd857fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514613c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f416c6c6f636174696f6e20616c7265616479207265766f6b656400000000000081525060200191505060405180910390fd5b60018160030160006101000a81548160ff0219169083151502179055506000613cad8260010154836000015461419a90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613d7a57600080fd5b505af1158015613d8e573d6000803e3d6000fd5b505050506040513d6020811015613da457600080fd5b8101908080519060200190929190505050508373ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac4846040518082815260200191505060405180910390a250505050565b613e12614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061460f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61401f614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146140e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854811061413a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b60006007600083815260200190815260200160002060010160006101000a81548160ff02191690831515021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60006141dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061433c565b905092915050565b600080828401905083811015614262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561427f57600090506142ec565b600082840290508284828161429057fe5b04146142e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146d36021913960400191505060405180910390fd5b809150505b92915050565b600061433483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506143fc565b905092915050565b60008383111582906143e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143ae578082015181840152602081019050614393565b50505050905090810190601f1680156143db5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906144a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561446d578082015181840152602081019050614452565b50505050905090810190601f16801561449a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144b457fe5b049050809150509392505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b604051806060016040528060608152602001600015158152602001600081525090565b60405180608001604052806000815260200160008152602001600081526020016000151581525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061458057805160ff19168380011785556145ae565b828001600101855582156145ae579182015b828111156145ad578251825591602001919060010190614592565b5b5090506145bb91906145bf565b5090565b6145e191905b808211156145dd5760008160009055506001016145c5565b5090565b9056fe47726f757020686173206e6f742068617320616e7920756e6c6f636b656420746f6b656e73207965742e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e6e6f74207365742066756e64696e67206163636f756e7420746f20746865207a65726f20616464726573732e596f75206861766520746f20626520612072656769737465726564206164647265737320696e206f7264657220746f2072656c6561736520746f6b656e732e46756e64696e67206163636f756e742068617320746f20626520736574206265666f726520616c6c6f636174696e672e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c656e677468206f6620696e7075742061727261797320646f206e6f74206d617463682e47726f7570206e6f74207265676973746572656420696e20636f6e74726163742e43616e6e6f74207265766f6b6520666f7220746865207a65726f20616464726573732e50657263656e7461676520706172616d6574657220696e76616c69642e204e65656420746f206265203e203020616e64203c3d203130302ea264697066735822122060b3ba425588b7250287b3c69c04f24dbb544379f8362ac05c4bde2b459e38a164736f6c634300060800330000000000000000000000006468e79a80c0eab0f9a2b574c8d5bc374af59414
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806389c1842e116100de578063ceb6065411610097578063eac449d911610071578063eac449d914610901578063f2fde38b1461094f578063f73b9f2214610993578063fc0c546a146109c15761018e565b8063ceb60654146107a4578063d8fe549a1461085d578063e6fff2ff1461089f5761018e565b806389c1842e146105c95780638da5cb5b146105d357806398aab8121461061d578063b56111291461068b578063beef640d146106e7578063bf00eaef1461072b5761018e565b806347c433c91161014b5780636eb0581d116101255780636eb0581d1461053d578063715018a614610547578063775c37271461055157806388af1f331461059b5761018e565b806347c433c91461040b5780635bfadb241461048a57806361aa00b5146104c25761018e565b8063049ce5251461019357806306545a93146101eb57806316c5af90146102095780631be767121461028c5780632cf34d49146102ba57806337bdc99b146103dd575b600080fd5b6101d5600480360360208110156101a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a0b565b6040518082815260200191505060405180910390f35b6101f3610a54565b6040518082815260200191505060405180910390f35b61028a6004803603604081101561021f57600080fd5b810190808035906020019064010000000081111561023c57600080fd5b82018360208201111561024e57600080fd5b8035906020019184602083028401116401000000008311171561027057600080fd5b909192939192939080359060200190929190505050610a5e565b005b6102b8600480360360208110156102a257600080fd5b8101908080359060200190929190505050611012565b005b6103db600480360360608110156102d057600080fd5b81019080803590602001906401000000008111156102ed57600080fd5b8201836020820111156102ff57600080fd5b8035906020019184602083028401116401000000008311171561032157600080fd5b90919293919293908035906020019064010000000081111561034257600080fd5b82018360208201111561035457600080fd5b8035906020019184602083028401116401000000008311171561037657600080fd5b90919293919293908035906020019064010000000081111561039757600080fd5b8201836020820111156103a957600080fd5b803590602001918460208302840111640100000000831117156103cb57600080fd5b9091929391929390505050611430565b005b610409600480360360208110156103f357600080fd5b8101908080359060200190929190505050612032565b005b6104416004803603604081101561042157600080fd5b8101908080359060200190929190803590602001909291905050506125a9565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b6104c0600480360360408110156104a057600080fd5b81019080803590602001909291908035906020019092919050505061265e565b005b61050e600480360360408110156104d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612919565b604051808581526020018481526020018381526020018215151515815260200194505050505060405180910390f35b6105456129eb565b005b61054f612ad1565b005b610559612c59565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105c7600480360360208110156105b157600080fd5b8101908080359060200190929190505050612c83565b005b6105d1612e61565b005b6105db612f47565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106496004803603602081101561063357600080fd5b8101908080359060200190929190505050612f70565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106cd600480360360208110156106a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612fb1565b604051808215151515815260200191505060405180910390f35b610729600480360360208110156106fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613007565b005b6107a26004803603602081101561074157600080fd5b810190808035906020019064010000000081111561075e57600080fd5b82018360208201111561077057600080fd5b8035906020019184600183028401116401000000008311171561079257600080fd5b90919293919293905050506131dd565b005b6107d0600480360360208110156107ba57600080fd5b81019080803590602001909291905050506133cc565b604051808060200184151515158152602001838152602001828103825285818151815260200191508051906020019080838360005b83811015610820578082015181840152602081019050610805565b50505050905090810190601f16801561084d5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b6108896004803603602081101561087357600080fd5b81019080803590602001909291905050506134dd565b6040518082815260200191505060405180910390f35b6108eb600480360360408110156108b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506134fa565b6040518082815260200191505060405180910390f35b61094d6004803603604081101561091757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506138c3565b005b6109916004803603602081101561096557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613e0a565b005b6109bf600480360360208110156109a957600080fd5b8101908080359060200190929190505050614017565b005b6109c961416c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600854905090565b610a66614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110610b81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600080905060008090505b84849050811015610f04576000858583818110610ba557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147396023913960400191505060405180910390fd5b60011515600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f42656e6566696369617279206973206e6f7420726567697374657265642e000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008090505b81811015610ef4576000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110610dae57fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514610e49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f416c6c6f636174696f6e20616c7265616479207265766f6b656400000000000081525060200191505060405180910390fd5b8681600201541415610ee65760018160030160006101000a81548160ff0219169083151502179055506000610e8f8260010154836000015461419a90919063ffffffff16565b905080870196508473ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac4846040518082815260200191505060405180910390a2505b508080600101915050610d5a565b5050508080600101915050610b8c565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610fd057600080fd5b505af1158015610fe4573d6000803e3d6000fd5b505050506040513d6020811015610ffa57600080fd5b81019080805190602001909291905050505050505050565b61101a614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600080905060008090505b6007600084815260200190815260200160002060020154811015611324576111666144c2565b6007600085815260200190815260200160002060030160008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820154815250509050600060026000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002082602001518154811061124e57fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514156113155760018160030160006101000a81548160ff02191690831515021790555060006112b68260010154836000015461419a90919063ffffffff16565b90508085019450826000015173ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac484602001516040518082815260200191505060405180910390a2505b50508080600101915050611140565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d602081101561141a57600080fd5b8101908080519060200190929190505050505050565b611438614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b838390508686905014801561151357508181905086869050145b611568576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806146f46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806146a36030913960400191505060405180910390fd5b600080905060008090505b87879050811015611eed57600073ffffffffffffffffffffffffffffffffffffffff1688888381811061164a57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42656e65666963696172792063616e6e6f74206265203020616464726573732e81525060200191505060405180910390fd5b60008686838181106116ff57fe5b9050602002013511611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616e6e6f7420616c6c6f63617465207a65726f20616d6f756e742e0000000081525060200191505060405180910390fd5b6117816144f2565b6007600086868581811061179157fe5b905060200201358152602001908152602001600020604051806060016040529081600082018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081526020016001820160009054906101000a900460ff16151515158152602001600282015481525050905060085485858481811061188957fe5b90506020020135106118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b600115158160200151151514611964576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f47726f7570206973206e6f74206163746976652e00000000000000000000000081525060200191505060405180910390fd5b600260008a8a8581811061197457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180608001604052808989868181106119e257fe5b90506020020135815260200160008152602001878786818110611a0157fe5b90506020020135815260200160001515815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055505050600360008a8a85818110611a8d57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050555060405180604001604052808a8a85818110611b0b57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001600260008d8d88818110611b5557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490500381525060076000878786818110611bc457fe5b905060200201358152602001908152602001600020600301600060076000898988818110611bee57fe5b90506020020135815260200190815260200160002060020154815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015590505060076000868685818110611c7957fe5b90506020020135815260200190815260200160002060020160008154809291906001019190505550600560008a8a85818110611cb157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611da6576004898984818110611d2857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff169080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6001600560008b8b86818110611db857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550868683818110611e3257fe5b9050602002013583019250888883818110611e4957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f06ca7252ab2415ff6135042b2d94b9462ffcfd8844936fb2ad4a56ceda309ac7888885818110611ea957fe5b90506020020135878786818110611ebc57fe5b90506020020135604051808381526020018281526020019250505060405180910390a250808060010191505061161b565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015611fed57600080fd5b505af1158015612001573d6000803e3d6000fd5b505050506040513d602081101561201757600080fd5b81019080805190602001909291905050505050505050505050565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146120db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614664603f913960400191505060405180910390fd5b60001515600960149054906101000a900460ff16151514612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f52656c65617365732068617665206265656e207061757365642e00000000000081525060200191505060405180910390fd5b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110612218576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f20616c6c6f636174696f6e20666f756e642e00000000000000000000000081525060200191505060405180910390fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061226457fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff161515146122ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f416c6c6f636174696f6e20686173206265656e207265766f6b65642e0000000081525060200191505060405180910390fd5b60006006600083600201548152602001908152602001600020541161236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806145e5602a913960400191505060405180910390fd5b600061237b33846134fa565b9050600081116123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4e6f7468696e6720746f2072656c65617365000000000000000000000000000081525060200191505060405180910390fd5b61240a8183600101546141e490919063ffffffff16565b82600101819055503373ffffffffffffffffffffffffffffffffffffffff167fb21fb52d5749b80f3182f8c6992236b5e5576681880914484d7f4c9b062e619e846040518082815260200191505060405180910390a28160000154826001015414156124bf573373ffffffffffffffffffffffffffffffffffffffff167f6a7caaf0e64ee9a2fb80724152184991353ae8795f59cc05ad1d4b2c2eac574f846040518082815260200191505060405180910390a25b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561256857600080fd5b505af115801561257c573d6000803e3d6000fd5b505050506040513d602081101561259257600080fd5b810190808051906020019092919050505050505050565b6000806125b46144c2565b6007600086815260200190815260200160002060030160008581526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505090508060000151816020015192509250509250929050565b612666614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612727576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854821061279e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f47726f757020646f6573206e6f742065786973742e000000000000000000000081525060200191505060405180910390fd5b6000811180156127af575060648111155b612804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061475c6038913960400191505060405180910390fd5b6006600083815260200190815260200160002054811161288c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f50657263656e746167652068617320746f20626520696e6372656173696e672e81525060200191505060405180910390fd5b80600660008481526020019081526020016000208190555060648114156128dd5760006007600084815260200190815260200160002060010160006101000a81548160ff0219169083151502179055505b817f6a4ab9eaabc176a1c70b5f19a39c8f7a220e8f3f649ddb5a7e8c1f957ac112ab826040518082815260200191505060405180910390a25050565b600080600080612927614515565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020868154811061297157fe5b90600052602060002090600402016040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806000015181602001518260400151836060015194509450945094505092959194509250565b6129f3614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ab4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960146101000a81548160ff021916908315150217905550565b612ad9614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612c8b614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008548110612da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b6064600660008381526020019081526020016000205410612e2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f47726f757020686173206265656e2066756c6c7920756e6c6f636b65642e000081525060200191505060405180910390fd5b60016007600083815260200190815260200160002060010160006101000a81548160ff02191690831515021790555050565b612e69614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060048281548110612f7f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61300f614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614635602f913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f5ba0808e7c42649e6404a82a9615532c219b16ef7f3c79cfd9e29b49d8ebc60e60405160405180910390a250565b6131e5614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b604051806060016040528083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505081526020016001151581526020016000815250600760006008548152602001908152602001600020600082015181600001908051906020019061333a92919061453f565b5060208201518160010160006101000a81548160ff02191690831515021790555060408201518160020155905050600854828260405180838380828437808301925050509250505060405180910390207f6b80e5e777487bf516eb587890cc8cb28a78151b8f55a48c47bf5f992f43d58160405160405180910390a36008600081548092919060010191905055505050565b60606000806133d96144f2565b60076000868152602001908152602001600020604051806060016040529081600082018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134905780601f1061346557610100808354040283529160200191613490565b820191906000526020600020905b81548152906001019060200180831161347357829003601f168201915b505050505081526020016001820160009054906101000a900460ff161515151581526020016002820154815250509050806000015181602001518260400151935093509350509193909250565b600060066000838152602001908152602001600020549050919050565b600060011515600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146135a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614664603f913960400191505060405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548210613659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4e6f20616c6c6f636174696f6e20666f756e642e00000000000000000000000081525060200191505060405180910390fd5b60001515600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106136a757fe5b906000526020600020906004020160030160009054906101000a900460ff1615151461373b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f416c6c6f636174696f6e20686173206265656e207265766f6b65642e0000000081525060200191505060405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061378757fe5b90600052602060002090600402016000015490506000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002084815481106137e757fe5b90600052602060002090600402016001015490506000600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020858154811061384757fe5b9060005260206000209060040201600201549050600060066000838152602001908152602001600020549050600061389b606461388d848861426c90919063ffffffff16565b6142f290919063ffffffff16565b905060006138b2858361419a90919063ffffffff16565b905080965050505050505092915050565b6138cb614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461398c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147396023913960400191505060405180910390fd5b60011515600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514613ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f42656e6566696369617279206973206e6f7420726567697374657265642e000081525060200191505060405180910390fd5b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411613b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f416c6c6f636174696f6e20646f6573206e6f742065786973740000000000000081525060200191505060405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208281548110613bd857fe5b90600052602060002090600402019050600015158160030160009054906101000a900460ff16151514613c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f416c6c6f636174696f6e20616c7265616479207265766f6b656400000000000081525060200191505060405180910390fd5b60018160030160006101000a81548160ff0219169083151502179055506000613cad8260010154836000015461419a90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613d7a57600080fd5b505af1158015613d8e573d6000803e3d6000fd5b505050506040513d6020811015613da457600080fd5b8101908080519060200190929190505050508373ffffffffffffffffffffffffffffffffffffffff167f713b90881ad62c4fa8ab6bd9197fa86481fc0c11b2edba60026514281b2dbac4846040518082815260200191505060405180910390a250505050565b613e12614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613ed3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061460f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61401f614192565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146140e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600854811061413a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147186021913960400191505060405180910390fd5b60006007600083815260200190815260200160002060010160006101000a81548160ff02191690831515021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60006141dc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061433c565b905092915050565b600080828401905083811015614262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561427f57600090506142ec565b600082840290508284828161429057fe5b04146142e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146d36021913960400191505060405180910390fd5b809150505b92915050565b600061433483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506143fc565b905092915050565b60008383111582906143e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143ae578082015181840152602081019050614393565b50505050905090810190601f1680156143db5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906144a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561446d578082015181840152602081019050614452565b50505050905090810190601f16801561449a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816144b457fe5b049050809150509392505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b604051806060016040528060608152602001600015158152602001600081525090565b60405180608001604052806000815260200160008152602001600081526020016000151581525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061458057805160ff19168380011785556145ae565b828001600101855582156145ae579182015b828111156145ad578251825591602001919060010190614592565b5b5090506145bb91906145bf565b5090565b6145e191905b808211156145dd5760008160009055506001016145c5565b5090565b9056fe47726f757020686173206e6f742068617320616e7920756e6c6f636b656420746f6b656e73207965742e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e6e6f74207365742066756e64696e67206163636f756e7420746f20746865207a65726f20616464726573732e596f75206861766520746f20626520612072656769737465726564206164647265737320696e206f7264657220746f2072656c6561736520746f6b656e732e46756e64696e67206163636f756e742068617320746f20626520736574206265666f726520616c6c6f636174696e672e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c656e677468206f6620696e7075742061727261797320646f206e6f74206d617463682e47726f7570206e6f74207265676973746572656420696e20636f6e74726163742e43616e6e6f74207265766f6b6520666f7220746865207a65726f20616464726573732e50657263656e7461676520706172616d6574657220696e76616c69642e204e65656420746f206265203e203020616e64203c3d203130302ea264697066735822122060b3ba425588b7250287b3c69c04f24dbb544379f8362ac05c4bde2b459e38a164736f6c63430006080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006468e79a80c0eab0f9a2b574c8d5bc374af59414
-----Decoded View---------------
Arg [0] : token_ (address): 0x6468e79A80C0eaB0F9A2B574c8d5bC374Af59414
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006468e79a80c0eab0f9a2b574c8d5bc374af59414
Deployed Bytecode Sourcemap
36835:14751:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36835:14751:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;50494:137:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;50494:137:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51385:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40809:1641;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40809:1641:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;40809:1641:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;40809:1641:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;40809:1641:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42528:931;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42528:931:0;;;;;;;;;;;;;;;;;:::i;:::-;;44762:2229;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44762:2229:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44762:2229:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44762:2229:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44762:2229:0;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44762:2229:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44762:2229:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44762:2229:0;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44762:2229:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44762:2229:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44762:2229:0;;;;;;;;;;;;:::i;:::-;;48296:1209;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48296:1209:0;;;;;;;;;;;;;;;;;:::i;:::-;;49700:325;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49700:325:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38646:666;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;38646:666:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50033:453;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;50033:453:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49605:87;;;:::i;:::-;;2712:148;;;:::i;:::-;;51484:99;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44108:344;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44108:344:0;;;;;;;;;;;;;;;;;:::i;:::-;;49513:84;;;:::i;:::-;;2070:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50639:139;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;50639:139:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50786:126;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;50786:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39320:283;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;39320:283:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;43539:193;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43539:193:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;43539:193:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;43539:193: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;43539:193:0;;;;;;;;;;;;:::i;:::-;;51059:318;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;51059:318: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;51059:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50920:131;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;50920:131:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47096:1088;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47096:1088:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39758:941;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;39758:941:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3015:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;3015:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;43839:220;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43839:220:0;;;;;;;;;;;;;;;;;:::i;:::-;;36903:17;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50494:137;50566:7;50593:16;:30;50610:12;50593:30;;;;;;;;;;;;;;;;50586:37;;50494:137;;;:::o;51385:91::-;51431:7;51458:10;;51451:17;;51385:91;:::o;40809:1641::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40982:10:::1;;40973:6;:19;40951:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41066:19;41088:1:::0;41066:23:::1;;41107:9;41119:1:::0;41107:13:::1;;41102:1285;41126:14;;:21;;41122:1;:25;41102:1285;;;41169:19;41191:14;;41206:1;41191:17;;;;;;;;;;;;;;;41169:39;;41274:1;41251:25;;:11;:25;;;;41225:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41419:4;41390:33;;:12;:25;41403:11;41390:25;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;41364:125;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41506:23;41532:16;:29;41549:11;41532:29;;;;;;;;;;;;;;;;41506:55;;41601:23;41627:1:::0;41601:27:::1;;41578:798;41665:15;41647;:33;41578:798;;;41753:29;41785:22;:35;41808:11;41785:35;;;;;;;;;;;;;;;41821:15;41785:52;;;;;;;;;;;;;;;;;;41753:84;;41910:5;41888:27;;:10;:18;;;;;;;;;;;;:27;;;41858:127;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42030:6;42010:10;:16;;;:26;42006:355;;;42082:4;42061:10;:18;;;:25;;;;;;;;;;;;;;;;;;42109:20;42132:90;42180:10;:19;;;42132:10;:17;;;:21;;:90;;;;:::i;:::-;42109:113;;42262:12;42247:27;;;;42312:11;42304:37;;;42325:15;42304:37;;;;;;;;;;;;;;;;;;42006:355;;41578:798;41699:17;;;;;;;41578:798;;;;41102:1285;;41149:3;;;;;;;41102:1285;;;;42399:5;;;;;;;;;;;:14;;;42414;;;;;;;;;;;42430:11;42399:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;42399:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42399:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;42399:43:0;;;;;;;;;;;;;;;;;2352:1;40809:1641:::0;;;:::o;42528:931::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42626:10:::1;;42617:6;:19;42595:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42710:19;42732:1:::0;42710:23:::1;;42751:9;42763:1:::0;42751:13:::1;;42746:650;42770:6;:14;42777:6;42770:14;;;;;;;;;;;:30;;;42766:1;:34;42746:650;;;42822:40;;:::i;:::-;42865:6;:14;42872:6;42865:14;;;;;;;;;;;:26;;:29;42892:1;42865:29;;;;;;;;;;;42822:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;42909:29;42941:22;:49;42964:13;:25;;;42941:49;;;;;;;;;;;;;;;42991:13;:19;;;42941:70;;;;;;;;;;;;;;;;;;42909:102;;43053:5;43031:27;;:10;:18;;;;;;;;;;;;:27;;;43028:345;;;43100:4;43079:10;:18;;;:25;;;;;;;;;;;;;;;;;;43123:20;43146:82;43190:10;:19;;;43146:10;:17;;;:21;;:82;;;;:::i;:::-;43123:105;;43264:12;43249:27;;;;43310:13;:25;;;43302:55;;;43337:13;:19;;;43302:55;;;;;;;;;;;;;;;;;;43028:345;;42746:650;;42802:3;;;;;;;42746:650;;;;43408:5;;;;;;;;;;;:14;;;43423;;;;;;;;;;;43439:11;43408:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;43408:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;43408:43:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;43408:43:0;;;;;;;;;;;;;;;;;2352:1;42528:931:::0;:::o;44762:2229::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44989:8:::1;;:15;;44964:14;;:21;;:40;:100;;;;;45050:7;;:14;;45025;;:21;;:39;44964:100;44942:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45189:1;45163:28;;:14;;;;;;;;;;;:28;;;;45141:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45280:19;45302:1:::0;45280:23:::1;;45321:9;45333:1:::0;45321:13:::1;;45316:1585;45340:14;;:21;;45336:1;:25;45316:1585;;;45438:1;45409:31;;:14;;45424:1;45409:17;;;;;;;;;;;;;;;:31;;;;45383:125;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45565:1;45551:8;;45560:1;45551:11;;;;;;;;;;;;;:15;45525:105;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45647:28;;:::i;:::-;45678:6;:18;45685:7;;45693:1;45685:10;;;;;;;;;;;;;45678:18;;;;;;;;;;;45647:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;45752:10;;45739:7;;45747:1;45739:10;;;;;;;;;;;;;:23;45713:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45882:4;45856:30;;:15;:22;;;:30;;;45848:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45978:22;:41;46001:14;;46016:1;46001:17;;;;;;;;;;;;;;;45978:41;;;;;;;;;;;;;;;46025:128;;;;;;;;46054:8;;46063:1;46054:11;;;;;;;;;;;;;46025:128;;;;46084:1;46025:128;;;;46104:7;;46112:1;46104:10;;;;;;;;;;;;;46025:128;;;;46133:5;46025:128;;;;::::0;45978:176:::1;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;45978:176:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46169:16;:35;46186:14;;46201:1;46186:17;;;;;;;;;;;;;;;46169:35;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;46366:141;;;;;;;;46404:14;;46419:1;46404:17;;;;;;;;;;;;;;;46366:141;;;;;;46491:1;46440:22;:41;46463:14;;46478:1;46463:17;;;;;;;;;;;;;;;46440:41;;;;;;;;;;;;;;;:48;;;;:52;46366:141;;::::0;46297:6:::1;:18;46304:7;;46312:1;46304:10;;;;;;;;;;;;;46297:18;;;;;;;;;;;:30;;:66;46328:6;:18;46335:7;;46343:1;46335:10;;;;;;;;;;;;;46328:18;;;;;;;;;;;:34;;;46297:66;;;;;;;;;;;:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46522:6;:18;46529:7;;46537:1;46529:10;;;;;;;;;;;;;46522:18;;;;;;;;;;;:34;;;:36;;;;;;;;;;;;;46591:12;:31;46604:14;;46619:1;46604:17;;;;;;;;;;;;;;;46591:31;;;;;;;;;;;;;;;;;;;;;;;;;46587:119;;46643:23;46672:14;;46687:1;46672:17;;;;;;;;;;;;;;;46643:47;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;46643:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46587:119;46756:4;46722:12;:31;46735:14;;46750:1;46735:17;;;;;;;;;;;;;;;46722:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;46792:8;;46801:1;46792:11;;;;;;;;;;;;;46777:26;;;;46846:14;;46861:1;46846:17;;;;;;;;;;;;;;;46825:64;;;46865:8;;46874:1;46865:11;;;;;;;;;;;;;46878:7;;46886:1;46878:10;;;;;;;;;;;;;46825:64;;;;;;;;;;;;;;;;;;;;;;;;45316:1585;45363:3;;;;;;;45316:1585;;;;46921:5;;;;;;;;;;;:18;;;46940:14;;;;;;;;;;;46964:4;46971:11;46921:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;46921:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;46921:62:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;46921:62:0;;;;;;;;;;;;;;;;;2352:1;44762:2229:::0;;;;;;:::o;48296:1209::-;48407:4;48379:32;;:12;:24;48392:10;48379:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;48357:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48541:5;48523:23;;:14;;;;;;;;;;;:23;;;48515:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48631:16;:28;48648:10;48631:28;;;;;;;;;;;;;;;;48612:16;:47;48590:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48720:29;48752:22;:34;48775:10;48752:34;;;;;;;;;;;;;;;48787:16;48752:52;;;;;;;;;;;;;;;;;;48720:84;;48847:5;48825:27;;:10;:18;;;;;;;;;;;;:27;;;48817:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48960:1;48920:19;:37;48940:10;:16;;;48920:37;;;;;;;;;;;;:41;48898:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49044:18;49065:46;49082:10;49094:16;49065;:46::i;:::-;49044:67;;49153:1;49140:10;:14;49132:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49212:35;49236:10;49212;:19;;;:23;;:35;;;;:::i;:::-;49190:10;:19;;:57;;;;49274:10;49265:38;;;49286:16;49265:38;;;;;;;;;;;;;;;;;;49343:10;:17;;;49320:10;:19;;;:40;49316:131;;;49406:10;49382:53;;;49418:16;49382:53;;;;;;;;;;;;;;;;;;49316:131;49459:5;;;;;;;;;;;:14;;;49474:10;49486;49459:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49459:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49459:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49459:38:0;;;;;;;;;;;;;;;;;48296:1209;;;:::o;49700:325::-;49793:7;49811;49837:40;;:::i;:::-;49880:6;:14;49887:6;49880:14;;;;;;;;;;;:26;;:34;49907:6;49880:34;;;;;;;;;;;49837:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49947:13;:25;;;49987:13;:19;;;49925:92;;;;;49700:325;;;;;:::o;38646:666::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38760:10:::1;;38751:6;:19;38729:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38868:1;38854:11;:15;:37;;;;;38888:3;38873:11;:18;;38854:37;38832:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39024:19;:27;39044:6;39024:27;;;;;;;;;;;;39010:11;:41;38988:123;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39154:11;39124:19;:27;39144:6;39124:27;;;;;;;;;;;:41;;;;39197:3;39182:11;:18;39178:80;;;39241:5;39217:6;:14;39224:6;39217:14;;;;;;;;;;;:21;;;:29;;;;;;;;;;;;;;;;;;39178:80;39284:6;39275:29;39292:11;39275:29;;;;;;;;;;;;;;;;;;38646:666:::0;;:::o;50033:453::-;50137:14;50162:16;50189:13;50213:12;50244:28;;:::i;:::-;50275:22;:36;50298:12;50275:36;;;;;;;;;;;;;;;50312:6;50275:44;;;;;;;;;;;;;;;;;;50244:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50352:10;:17;;;50384:10;:19;;;50418:10;:16;;;50449:10;:18;;;50330:148;;;;;;;;;50033:453;;;;;;;:::o;49605:87::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49679:5:::1;49662:14;;:22;;;;;;;;;;;;;;;;;;49605:87::o:0;2712:148::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2819:1:::1;2782:40;;2803:6;::::0;::::1;;;;;;;;;2782:40;;;;;;;;;;;;2850:1;2833:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2712:148::o:0;51484:99::-;51534:7;51561:14;;;;;;;;;;;51554:21;;51484:99;:::o;44108:344::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44206:10:::1;;44197:6;:19;44175:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44342:3;44312:19;:27;44332:6;44312:27;;;;;;;;;;;;:33;44290:113;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;44440:4;44416:6;:14;44423:6;44416:14;;;;;;;;;;;:21;;;:28;;;;;;;;;;;;;;;;;;44108:344:::0;:::o;49513:84::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49585:4:::1;49568:14;;:21;;;;;;;;;;;;;;;;;;49513:84::o:0;2070:79::-;2108:7;2135:6;;;;;;;;;;;2128:13;;2070:79;:::o;50639:139::-;50712:7;50739:23;50763:6;50739:31;;;;;;;;;;;;;;;;;;;;;;;;;50732:38;;50639:139;;;:::o;50786:126::-;50854:4;50878:12;:26;50891:12;50878:26;;;;;;;;;;;;;;;;;;;;;;;;;50871:33;;50786:126;;;:::o;39320:283::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39437:1:::1;39417:22;;:8;:22;;;;39395:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:8;39527:14;;:25;;;;;;;;;;;;;;;;;;39586:8;39568:27;;;;;;;;;;;;39320:283:::0;:::o;43539:193::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43631:21:::1;;;;;;;;43637:5;;43631:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;43631:21:0;;;;;;;;;;43644:4;43631:21;;;;;;43650:1;43631:21;;::::0;43610:6:::1;:18;43617:10;;43610:18;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43688:10;;43681:5;;43670:29;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;43670:29:0;;;;;;;;;;;;;;;;;;;;;;;43712:10;;:12;;;;;;;;;;;;;43539:193:::0;;:::o;51059:318::-;51124:18;51153:11;51175:23;51217:18;;:::i;:::-;51238:6;:14;51245:6;51238:14;;;;;;;;;;;51217:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51285:5;:10;;;51310:5;:12;;;51337:5;:21;;;51263:106;;;;;;;51059:318;;;;;:::o;50920:131::-;50989:7;51016:19;:27;51036:6;51016:27;;;;;;;;;;;;51009:34;;50920:131;;;:::o;47096:1088::-;47218:7;47295:4;47265:34;;:12;:26;47278:12;47265:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;47243:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47452:16;:30;47469:12;47452:30;;;;;;;;;;;;;;;;47433:16;:49;47411:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47631:5;47565:71;;:22;:36;47588:12;47565:36;;;;;;;;;;;;;;;47602:16;47565:54;;;;;;;;;;;;;;;;;;:62;;;;;;;;;;;;:71;;;47543:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47705:14;47722:22;:36;47745:12;47722:36;;;;;;;;;;;;;;;47759:16;47722:54;;;;;;;;;;;;;;;;;;:61;;;47705:78;;47794:16;47813:22;:36;47836:12;47813:36;;;;;;;;;;;;;;;47850:16;47813:54;;;;;;;;;;;;;;;;;;:63;;;47794:82;;47887:13;47903:22;:36;47926:12;47903:36;;;;;;;;;;;;;;;47940:16;47903:54;;;;;;;;;;;;;;;;;;:60;;;47887:76;;47974:16;47993:19;:26;48013:5;47993:26;;;;;;;;;;;;47974:45;;48032:22;48057:29;48082:3;48057:20;48068:8;48057:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;48032:54;;48097:18;48118:28;48137:8;48118:14;:18;;:28;;;;:::i;:::-;48097:49;;48166:10;48159:17;;;;;;;;47096:1088;;;;:::o;39758:941::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39921:1:::1;39897:26;;:12;:26;;;;39875:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40051:4;40021:34;;:12;:26;40034:12;40021:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;39999:114;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40181:16;40148;:30;40165:12;40148:30;;;;;;;;;;;;;;;;:49;40126:124;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40263:29;40295:22;:36;40318:12;40295:36;;;;;;;;;;;;;;;40332:16;40295:54;;;;;;;;;;;;;;;;;;40263:86;;40406:5;40384:27;;:10;:18;;;;;;;;;;;;:27;;;40362:103;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40499:4;40478:10;:18;;;:25;;;;;;;;;;;;;;;;;;40514:20;40537:42;40559:10;:19;;;40537:10;:17;;;:21;;:42;;;;:::i;:::-;40514:65;;40590:5;;;;;;;;;;;:14;;;40605;;;;;;;;;;;40621:12;40590:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;40590:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;40590:44:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;40590:44:0;;;;;;;;;;;;;;;;;40660:12;40652:39;;;40674:16;40652:39;;;;;;;;;;;;;;;;;;2352:1;;39758:941:::0;;:::o;3015:244::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3124:1:::1;3104:22;;:8;:22;;;;3096:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3214:8;3185:38;;3206:6;::::0;::::1;;;;;;;;;3185:38;;;;;;;;;;;;3243:8;3234:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3015:244:::0;:::o;43839:220::-;2292:12;:10;:12::i;:::-;2282:22;;:6;;;;;;;;;;;:22;;;2274:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43938:10:::1;;43929:6;:19;43907:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44046:5;44022:6;:14;44029:6;44022:14;;;;;;;;;;;:21;;;:29;;;;;;;;;;;;;;;;;;43839:220:::0;:::o;36903:17::-;;;;;;;;;;;;;:::o;624:106::-;677:15;712:10;705:17;;624:106;:::o;4653:136::-;4711:7;4738:43;4742:1;4745;4738:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4731:50;;4653:136;;;;:::o;4189:181::-;4247:7;4267:9;4283:1;4279;:5;4267:17;;4308:1;4303;:6;;4295:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4361:1;4354:8;;;4189:181;;;;:::o;5543:471::-;5601:7;5851:1;5846;:6;5842:47;;;5876:1;5869:8;;;;5842:47;5901:9;5917:1;5913;:5;5901:17;;5946:1;5941;5937;:5;;;;;;:10;5929:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6005:1;5998:8;;;5543:471;;;;;:::o;6490:132::-;6548:7;6575:39;6579:1;6582;6575:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6568:46;;6490:132;;;;:::o;5092:192::-;5178:7;5211:1;5206;:6;;5214:12;5198:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;5198:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5238:9;5254:1;5250;:5;5238:17;;5275:1;5268:8;;;5092:192;;;;;:::o;7118:278::-;7204:7;7236:1;7232;:5;7239:12;7224:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7224:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7263:9;7279:1;7275;:5;;;;;;7263:17;;7387:1;7380:8;;;7118:278;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://60b3ba425588b7250287b3c69c04f24dbb544379f8362ac05c4bde2b459e38a1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.015292 | 25,810,619.5692 | $394,702.12 |
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.