Polygon Sponsored slots available. Book your slot here!
Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,293 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 62383408 | 68 days ago | IN | 0 POL | 0.00158742 | ||||
Approve | 56282042 | 222 days ago | IN | 0 POL | 0.00322434 | ||||
Approve | 56281886 | 222 days ago | IN | 0 POL | 0.00501995 | ||||
Approve | 56279869 | 223 days ago | IN | 0 POL | 0.00592771 | ||||
Transfer From | 52298838 | 326 days ago | IN | 0 POL | 0.00096555 | ||||
Approve | 49965232 | 386 days ago | IN | 0 POL | 0.0016513 | ||||
Approve | 49964448 | 386 days ago | IN | 0 POL | 0.0016513 | ||||
Approve | 49954048 | 386 days ago | IN | 0 POL | 0.00119855 | ||||
Approve | 49953839 | 386 days ago | IN | 0 POL | 0.00128283 | ||||
Approve | 49951262 | 386 days ago | IN | 0 POL | 0.00121022 | ||||
Approve | 49950355 | 386 days ago | IN | 0 POL | 0.0016513 | ||||
Approve | 49950257 | 386 days ago | IN | 0 POL | 0.00355241 | ||||
Approve | 49767974 | 391 days ago | IN | 0 POL | 0.01100683 | ||||
Approve | 49645653 | 394 days ago | IN | 0 POL | 0.00618859 | ||||
Approve | 49645633 | 394 days ago | IN | 0 POL | 0.00615465 | ||||
Approve | 49643908 | 394 days ago | IN | 0 POL | 0.00214248 | ||||
Approve | 49642160 | 394 days ago | IN | 0 POL | 0.00393398 | ||||
Approve | 49642138 | 394 days ago | IN | 0 POL | 0.00410595 | ||||
Approve | 49641831 | 394 days ago | IN | 0 POL | 0.00264529 | ||||
Approve | 49641761 | 394 days ago | IN | 0 POL | 0.00245636 | ||||
Approve | 49640784 | 394 days ago | IN | 0 POL | 0.00283009 | ||||
Approve | 49609008 | 395 days ago | IN | 0 POL | 0.00229921 | ||||
Approve | 49102410 | 407 days ago | IN | 0 POL | 0.0105852 | ||||
Approve | 48876888 | 413 days ago | IN | 0 POL | 0.00358901 | ||||
Approve | 48865408 | 414 days ago | IN | 0 POL | 0.00372918 |
Loading...
Loading
Contract Name:
UChildAdministrableERC20
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-09 */ // SPDX-License-Identifier: MIT // 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 virtual view returns (address payable) { return msg.sender; } function _msgData() internal virtual view 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/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/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/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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/lib/IERC20Internal.sol pragma solidity 0.6.12; abstract contract IERC20Internal { function _transfer( address sender, address recipient, uint256 amount ) internal virtual; function _transferFrom( address sender, address recipient, uint256 amount ) internal virtual; function _approve( address owner, address spender, uint256 amount ) internal virtual; function _increaseAllowance( address owner, address spender, uint256 increment ) internal virtual; function _decreaseAllowance( address owner, address spender, uint256 decrement ) internal virtual; function _mint(address account, uint256 amount) internal virtual; function _burn(address account, uint256 amount) internal virtual; } // File: contracts/lib/ERC20.sol /** * Copyright (c) 2016-2020 zOS Global Limited * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ pragma solidity 0.6.12; /** * @dev openzeppelin Implementation of the {IERC20} interface. * * Modified to add setters for name, symbol and decimals. This was needed * because * * 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}. * * Modifications made: * - Setters for name, symbol, and decimals * - Internal _transferFrom, _increaseAllowance, and _decreaseAllowance * - Conform to IERC20Internal interface * - Changed visibility of public functions to external */ contract ERC20 is Context, IERC20, IERC20Internal { 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() external view returns (string memory) { return _name; } function _setName(string memory newName) internal { _name = newName; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view returns (string memory) { return _symbol; } function _setSymbol(string memory newSymbol) internal { _symbol = newSymbol; } /** * @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() external view returns (uint8) { return _decimals; } function _setDecimals(uint8 newDecimals) internal { _decimals = newDecimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external override view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) external override view 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) external virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) external virtual override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external 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 ) external virtual override returns (bool) { _transferFrom(sender, recipient, amount); 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) external virtual returns (bool) { _increaseAllowance(_msgSender(), spender, 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) external virtual returns (bool) { _decreaseAllowance(_msgSender(), spender, subtractedValue); 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 override { 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 override { 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 override { 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 override { 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 {} function _transferFrom( address sender, address recipient, uint256 amount ) internal virtual override { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); } function _increaseAllowance( address owner, address spender, uint256 addedValue ) internal virtual override { _approve(owner, spender, _allowances[owner][spender].add(addedValue)); } function _decreaseAllowance( address owner, address spender, uint256 subtractedValue ) internal virtual override { _approve( owner, spender, _allowances[owner][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require( set._values.length > index, "EnumerableSet: index out of bounds" ); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require( hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant" ); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require( hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke" ); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require( account == _msgSender(), "AccessControl: can only renounce roles for self" ); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts/lib/AccessControlMixin.sol pragma solidity 0.6.12; contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string( abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS") ); } modifier only(bytes32 role) { require(hasRole(role, _msgSender()), _revertMsg); _; } } // File: contracts/lib/IChildToken.sol pragma solidity 0.6.12; interface IChildToken { function deposit(address user, bytes calldata depositData) external; } // File: contracts/lib/Initializable.sol pragma solidity 0.6.12; contract Initializable { bool private _initialized = false; modifier initializer() { // solhint-disable-next-line reason-string require(!_initialized); _; _initialized = true; } function initialized() external view returns (bool) { return _initialized; } } // File: contracts/lib/ECRecover.sol /** * Copyright (c) 2016-2019 zOS Global Limited * Copyright (c) 2018-2020 CENTRE SECZ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; /** * @title ECRecover * @notice A library that provides a safe ECDSA recovery function */ library ECRecover { /** * @notice Recover signer's address from a signed message * @dev Adapted from: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/65e4ffde586ec89af3b7e9140bdc9235d1254853/contracts/cryptography/ECDSA.sol * Modifications: Accept v, r, and s as separate arguments * @param digest Keccak-256 hash digest of the signed message * @param v v of the signature * @param r r of the signature * @param s s of the signature * @return Signer address */ function recover( bytes32 digest, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if ( uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 ) { revert("ECRecover: invalid signature 's' value"); } if (v != 27 && v != 28) { revert("ECRecover: invalid signature 'v' value"); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(digest, v, r, s); require(signer != address(0), "ECRecover: invalid signature"); return signer; } } // File: contracts/lib/EIP712.sol /** * Copyright (c) 2018-2020 CENTRE SECZ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; /** * @title EIP712 * @notice A library that provides EIP712 helper functions */ library EIP712 { // keccak256("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)") bytes32 public constant EIP712_DOMAIN_TYPEHASH = 0x36c25de3e541d5d970f66e4210d728721220fff5c077cc6cd008b3a0c62adab7; /** * @notice Make EIP712 domain separator * @param name Contract name * @param version Contract version * @return Domain separator */ function makeDomainSeparator(string memory name, string memory version) internal view returns (bytes32) { uint256 chainId; assembly { chainId := chainid() } return keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(version)), address(this), bytes32(chainId) ) ); } /** * @notice Recover signer's address from a EIP712 signature * @param domainSeparator Domain separator * @param v v of the signature * @param r r of the signature * @param s s of the signature * @param typeHashAndData Type hash concatenated with data * @return Signer's address */ function recover( bytes32 domainSeparator, uint8 v, bytes32 r, bytes32 s, bytes memory typeHashAndData ) internal pure returns (address) { bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, keccak256(typeHashAndData) ) ); return ECRecover.recover(digest, v, r, s); } } // File: contracts/lib/EIP712Domain.sol pragma solidity 0.6.12; abstract contract EIP712Domain { bytes32 public DOMAIN_SEPARATOR; function _setDomainSeparator(string memory name, string memory version) internal { DOMAIN_SEPARATOR = EIP712.makeDomainSeparator(name, version); } } // File: contracts/lib/Nonces.sol pragma solidity 0.6.12; abstract contract Nonces { mapping(address => uint256) internal _nonces; /** * @notice Nonces for permit / meta-transactions * @param owner Token owner's address * @return Next nonce */ function nonces(address owner) external view returns (uint256) { return _nonces[owner]; } } // File: contracts/lib/NativeMetaTransaction.sol pragma solidity 0.6.12; abstract contract NativeMetaTransaction is EIP712Domain, Nonces { // keccak256("MetaTransaction(uint256 nonce,address from,bytes functionSignature)") bytes32 public constant META_TRANSACTION_TYPEHASH = 0x23d10def3caacba2e4042e0c75d44a42d2558aabcf5ce951d0642a8032e1e653; event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) external payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: _nonces[userAddress]++, from: userAddress, functionSignature: functionSignature }); require( _verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); emit MetaTransactionExecuted( userAddress, msg.sender, functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function _verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); bytes memory data = abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ); return EIP712.recover(DOMAIN_SEPARATOR, sigV, sigR, sigS, data) == signer; } } // File: contracts/lib/ContextMixin.sol pragma solidity 0.6.12; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = msg.sender; } return sender; } } // File: contracts/lib/Permit.sol /** * Copyright (c) 2018-2020 CENTRE SECZ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; abstract contract Permit is IERC20Internal, EIP712Domain, Nonces { // = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)") bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; /** * @notice Verify a signed approval permit and execute if valid * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param value Amount of allowance * @param deadline The time at which this expires (unix time) * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { require(msg.sender != address(this), "Caller is this contract"); require(deadline >= now, "Permit: permit is expired"); bytes memory data = abi.encode( PERMIT_TYPEHASH, owner, spender, value, _nonces[owner]++, deadline ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner, "Permit: invalid signature" ); _approve(owner, spender, value); } } // File: contracts/lib/GasAbstraction.sol /** * Copyright (c) 2018-2020 CENTRE SECZ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity 0.6.12; /** * @title Gas Abstraction * @notice Provide internal implementation for gas-abstracted transfers and * approvals * @dev Contracts that inherit from this must wrap these with publicly * accessible functions, optionally adding modifiers where necessary */ abstract contract GasAbstraction is IERC20Internal, EIP712Domain { bytes32 public constant TRANSFER_WITH_AUTHORIZATION_TYPEHASH = 0x7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a2267; // = keccak256("TransferWithAuthorization(address from,address to,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)") bytes32 public constant APPROVE_WITH_AUTHORIZATION_TYPEHASH = 0x808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c; // = keccak256("ApproveWithAuthorization(address owner,address spender,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)") bytes32 public constant INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH = 0x424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a; // = keccak256("IncreaseAllowanceWithAuthorization(address owner,address spender,uint256 increment,uint256 validAfter,uint256 validBefore,bytes32 nonce)") bytes32 public constant DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH = 0xb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d8; // = keccak256("DecreaseAllowanceWithAuthorization(address owner,address spender,uint256 decrement,uint256 validAfter,uint256 validBefore,bytes32 nonce)") bytes32 public constant CANCEL_AUTHORIZATION_TYPEHASH = 0x158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a1597429; // = keccak256("CancelAuthorization(address authorizer,bytes32 nonce)") enum AuthorizationState { Unused, Used, Canceled } /** * @dev authorizer address => nonce => authorization state */ mapping(address => mapping(bytes32 => AuthorizationState)) private _authorizationStates; event AuthorizationUsed(address indexed authorizer, bytes32 indexed nonce); event AuthorizationCanceled( address indexed authorizer, bytes32 indexed nonce ); /** * @notice Returns the state of an authorization * @param authorizer Authorizer's address * @param nonce Nonce of the authorization * @return Authorization state */ function authorizationState(address authorizer, bytes32 nonce) external view returns (AuthorizationState) { return _authorizationStates[authorizer][nonce]; } /** * @notice Verify a signed transfer authorization and execute if valid * @param from Payer's address (Authorizer) * @param to Payee's address * @param value Amount to be transferred * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _transferWithAuthorization( address from, address to, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireValidAuthorization(from, nonce, validAfter, validBefore); bytes memory data = abi.encode( TRANSFER_WITH_AUTHORIZATION_TYPEHASH, from, to, value, validAfter, validBefore, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == from, "GasAbstraction: invalid signature" ); _markAuthorizationAsUsed(from, nonce); _transfer(from, to, value); } /** * @notice Verify a signed authorization for an increase in the allowance * granted to the spender and execute if valid * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param increment Amount of increase in allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _increaseAllowanceWithAuthorization( address owner, address spender, uint256 increment, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireValidAuthorization(owner, nonce, validAfter, validBefore); bytes memory data = abi.encode( INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH, owner, spender, increment, validAfter, validBefore, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner, "GasAbstraction: invalid signature" ); _markAuthorizationAsUsed(owner, nonce); _increaseAllowance(owner, spender, increment); } /** * @notice Verify a signed authorization for a decrease in the allowance * granted to the spender and execute if valid * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param decrement Amount of decrease in allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _decreaseAllowanceWithAuthorization( address owner, address spender, uint256 decrement, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireValidAuthorization(owner, nonce, validAfter, validBefore); bytes memory data = abi.encode( DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH, owner, spender, decrement, validAfter, validBefore, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner, "GasAbstraction: invalid signature" ); _markAuthorizationAsUsed(owner, nonce); _decreaseAllowance(owner, spender, decrement); } /** * @notice Verify a signed approval authorization and execute if valid * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param value Amount of allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _approveWithAuthorization( address owner, address spender, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireValidAuthorization(owner, nonce, validAfter, validBefore); bytes memory data = abi.encode( APPROVE_WITH_AUTHORIZATION_TYPEHASH, owner, spender, value, validAfter, validBefore, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner, "GasAbstraction: invalid signature" ); _markAuthorizationAsUsed(owner, nonce); _approve(owner, spender, value); } /** * @notice Attempt to cancel an authorization * @param authorizer Authorizer's address * @param nonce Nonce of the authorization * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function _cancelAuthorization( address authorizer, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireUnusedAuthorization(authorizer, nonce); bytes memory data = abi.encode( CANCEL_AUTHORIZATION_TYPEHASH, authorizer, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == authorizer, "GasAbstraction: invalid signature" ); _authorizationStates[authorizer][nonce] = AuthorizationState.Canceled; emit AuthorizationCanceled(authorizer, nonce); } /** * @notice Check that an authorization is unused * @param authorizer Authorizer's address * @param nonce Nonce of the authorization */ function _requireUnusedAuthorization(address authorizer, bytes32 nonce) private view { require( _authorizationStates[authorizer][nonce] == AuthorizationState.Unused, "GasAbstraction: authorization is used or canceled" ); } /** * @notice Check that authorization is valid * @param authorizer Authorizer's address * @param nonce Nonce of the authorization * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) */ function _requireValidAuthorization( address authorizer, bytes32 nonce, uint256 validAfter, uint256 validBefore ) internal view { require( now > validAfter, "GasAbstraction: authorization is not yet valid" ); require(now < validBefore, "GasAbstraction: authorization is expired"); _requireUnusedAuthorization(authorizer, nonce); } /** * @notice Mark an authorization as used * @param authorizer Authorizer's address * @param nonce Nonce of the authorization */ function _markAuthorizationAsUsed(address authorizer, bytes32 nonce) internal { _authorizationStates[authorizer][nonce] = AuthorizationState.Used; emit AuthorizationUsed(authorizer, nonce); } } // File: contracts/lib/MaticGasAbstraction.sol pragma solidity 0.6.12; abstract contract MaticGasAbstraction is GasAbstraction { // keccak256("WithdrawWithAuthorization(address owner,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)") bytes32 public constant WITHDRAW_WITH_AUTHORIZATION_TYPEHASH = 0x6c8f8f5f82f0c140edd12e80d10ff715a36d6e5f73e406394862b5f1eb44c4f9; function _withdrawWithAuthorization( address owner, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) internal { _requireValidAuthorization(owner, nonce, validAfter, validBefore); bytes memory data = abi.encode( WITHDRAW_WITH_AUTHORIZATION_TYPEHASH, owner, value, validAfter, validBefore, nonce ); require( EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner, "GasAbstraction: invalid signature" ); _markAuthorizationAsUsed(owner, nonce); _burn(owner, value); } } // File: contracts/UChildERC20.sol pragma solidity 0.6.12; contract UChildERC20 is ERC20, IChildToken, AccessControlMixin, Initializable, NativeMetaTransaction, ContextMixin, Permit, MaticGasAbstraction { bytes32 public constant DEPOSITOR_ROLE = keccak256("DEPOSITOR_ROLE"); string public constant EIP712_VERSION = "1"; constructor() public ERC20("", "") {} /** * @notice Initialize the contract after it has been proxified * @dev meant to be called once immediately after deployment */ function initialize( string calldata newName, string calldata newSymbol, uint8 newDecimals, address childChainManager ) external initializer { _setName(newName); _setSymbol(newSymbol); _setDecimals(newDecimals); _setupContractId(string(abi.encodePacked("Child", newSymbol))); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(DEPOSITOR_ROLE, childChainManager); _setDomainSeparator(newName, EIP712_VERSION); } // This is to support Native meta transactions // never use msg.sender directly, use _msgSender() instead function _msgSender() internal virtual override view returns (address payable sender) { return ContextMixin.msgSender(); } function updateMetadata(string calldata newName, string calldata newSymbol) external only(DEFAULT_ADMIN_ROLE) { _setName(newName); _setSymbol(newSymbol); _setDomainSeparator(newName, EIP712_VERSION); } /** * @notice called when token is deposited on root chain * @dev Should be callable only by ChildChainManager * Should handle deposit by minting the required amount for user * Make sure minting is done only by this function * @param user user address for whom deposit is being done * @param depositData abi encoded amount */ function deposit(address user, bytes calldata depositData) external override only(DEPOSITOR_ROLE) { uint256 amount = abi.decode(depositData, (uint256)); _mint(user, amount); } /** * @notice called when user wants to withdraw tokens back to root chain * @dev Should burn user's tokens. This transaction will be verified when exiting on root chain * @param amount amount of tokens to withdraw */ function withdraw(uint256 amount) external virtual { _burn(_msgSender(), amount); } /** * @notice Update allowance with a signed permit * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param value Amount of allowance * @param deadline Expiration time, seconds since the epoch * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external virtual { _permit(owner, spender, value, deadline, v, r, s); } /** * @notice Execute a transfer with a signed authorization * @param from Payer's address (Authorizer) * @param to Payee's address * @param value Amount to be transferred * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function transferWithAuthorization( address from, address to, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _transferWithAuthorization( from, to, value, validAfter, validBefore, nonce, v, r, s ); } /** * @notice Update allowance with a signed authorization * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param value Amount of allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function approveWithAuthorization( address owner, address spender, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _approveWithAuthorization( owner, spender, value, validAfter, validBefore, nonce, v, r, s ); } /** * @notice Increase allowance with a signed authorization * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param increment Amount of increase in allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function increaseAllowanceWithAuthorization( address owner, address spender, uint256 increment, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _increaseAllowanceWithAuthorization( owner, spender, increment, validAfter, validBefore, nonce, v, r, s ); } /** * @notice Decrease allowance with a signed authorization * @param owner Token owner's address (Authorizer) * @param spender Spender's address * @param decrement Amount of decrease in allowance * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function decreaseAllowanceWithAuthorization( address owner, address spender, uint256 decrement, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _decreaseAllowanceWithAuthorization( owner, spender, decrement, validAfter, validBefore, nonce, v, r, s ); } /** * @notice Execute a withdrawal with a signed authorization. This is used to * transfer tokens back to the root chain. * @param owner Token owner's address (Authorizer) * @param value Amount to be withdrawn * @param validAfter The time after which this is valid (unix time) * @param validBefore The time before which this is valid (unix time) * @param nonce Unique nonce * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function withdrawWithAuthorization( address owner, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _withdrawWithAuthorization( owner, value, validAfter, validBefore, nonce, v, r, s ); } /** * @notice Attempt to cancel an authorization * @dev Works only if the authorization is not yet used. * @param authorizer Authorizer's address * @param nonce Nonce of the authorization * @param v v of the signature * @param r r of the signature * @param s s of the signature */ function cancelAuthorization( address authorizer, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external virtual { _cancelAuthorization(authorizer, nonce, v, r, s); } } // File: contracts/lib/Administrable/Blacklistable.sol pragma solidity 0.6.12; abstract contract Blacklistable is AccessControlMixin { bytes32 public constant BLACKLISTER_ROLE = keccak256("BLACKLISTER_ROLE"); mapping(address => bool) internal _blacklisted; event Blacklisted(address indexed account); event UnBlacklisted(address indexed account); /** * @dev Throws if the given account is blacklisted * @param account The address to check */ modifier notBlacklisted(address account) { require( !_blacklisted[account], "Blacklistable: account is blacklisted" ); _; } /** * @notice Return the members of the blacklister role * @return Addresses */ function blacklisters() external view returns (address[] memory) { uint256 count = getRoleMemberCount(BLACKLISTER_ROLE); address[] memory list = new address[](count); for (uint256 i = 0; i < count; i++) { list[i] = getRoleMember(BLACKLISTER_ROLE, i); } return list; } /** * @dev Checks if an account is blacklisted * @param account The address to check */ function isBlacklisted(address account) external view returns (bool) { return _blacklisted[account]; } /** * @dev Adds an account to the blacklist * @param account The address to blacklist */ function blacklist(address account) external only(BLACKLISTER_ROLE) { _blacklisted[account] = true; emit Blacklisted(account); } /** * @notice Removes an account from the blacklist * @param account The address to remove from the blacklist */ function unBlacklist(address account) external only(BLACKLISTER_ROLE) { _blacklisted[account] = false; emit UnBlacklisted(account); } } // File: contracts/lib/Administrable/Pausable.sol pragma solidity 0.6.12; abstract contract Pausable is AccessControlMixin { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); event Pause(); event Unpause(); bool internal _paused = false; /** * @notice Throws if this contract is paused */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @notice Return the members of the pauser role * @return Addresses */ function pausers() external view returns (address[] memory) { uint256 count = getRoleMemberCount(PAUSER_ROLE); address[] memory list = new address[](count); for (uint256 i = 0; i < count; i++) { list[i] = getRoleMember(PAUSER_ROLE, i); } return list; } /** * @notice Returns whether this contract is paused * @return True if paused */ function paused() external view returns (bool) { return _paused; } /** * @notice Pause this contract */ function pause() external only(PAUSER_ROLE) { _paused = true; emit Pause(); } /** * @notice Unpause this contract */ function unpause() external only(PAUSER_ROLE) { _paused = false; emit Unpause(); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add( value ); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub( value, "SafeERC20: decreased allowance below zero" ); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall( data, "SafeERC20: low-level call failed" ); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require( abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } } } // File: contracts/lib/Administrable/Rescuable.sol pragma solidity 0.6.12; abstract contract Rescuable is AccessControlMixin { using SafeERC20 for IERC20; bytes32 public constant RESCUER_ROLE = keccak256("RESCUER_ROLE"); event RescuerChanged(address indexed newRescuer); /** * @notice Return the members of the rescuer role * @return Addresses */ function rescuers() external view returns (address[] memory) { uint256 count = getRoleMemberCount(RESCUER_ROLE); address[] memory list = new address[](count); for (uint256 i = 0; i < count; i++) { list[i] = getRoleMember(RESCUER_ROLE, i); } return list; } /** * @notice Rescue ERC20 tokens locked up in this contract. * @param tokenContract ERC20 token contract address * @param to Recipient address * @param amount Amount to withdraw */ function rescueERC20( IERC20 tokenContract, address to, uint256 amount ) external only(RESCUER_ROLE) { tokenContract.safeTransfer(to, amount); } } // File: contracts/UChildAdministrableERC20.sol pragma solidity 0.6.12; contract UChildAdministrableERC20 is UChildERC20, Blacklistable, Pausable, Rescuable { function _msgSender() internal override(Context, UChildERC20) view returns (address payable sender) { return ContextMixin.msgSender(); } function withdraw(uint256 amount) external override notBlacklisted(_msgSender()) { _burn(_msgSender(), amount); } function transfer(address recipient, uint256 amount) external override whenNotPaused notBlacklisted(_msgSender()) notBlacklisted(recipient) returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) external override whenNotPaused notBlacklisted(_msgSender()) notBlacklisted(spender) returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) external override whenNotPaused notBlacklisted(_msgSender()) notBlacklisted(sender) notBlacklisted(recipient) returns (bool) { _transferFrom(sender, recipient, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) external override whenNotPaused notBlacklisted(_msgSender()) notBlacklisted(spender) returns (bool) { _increaseAllowance(_msgSender(), spender, addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) external override whenNotPaused notBlacklisted(_msgSender()) notBlacklisted(spender) returns (bool) { _decreaseAllowance(_msgSender(), spender, subtractedValue); return true; } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(owner) notBlacklisted(spender) { _permit(owner, spender, value, deadline, v, r, s); } function transferWithAuthorization( address from, address to, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(from) notBlacklisted(to) { _transferWithAuthorization( from, to, value, validAfter, validBefore, nonce, v, r, s ); } function approveWithAuthorization( address owner, address spender, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(owner) notBlacklisted(spender) { _approveWithAuthorization( owner, spender, value, validAfter, validBefore, nonce, v, r, s ); } function increaseAllowanceWithAuthorization( address owner, address spender, uint256 increment, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(owner) notBlacklisted(spender) { _increaseAllowanceWithAuthorization( owner, spender, increment, validAfter, validBefore, nonce, v, r, s ); } function decreaseAllowanceWithAuthorization( address owner, address spender, uint256 decrement, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(owner) notBlacklisted(spender) { _decreaseAllowanceWithAuthorization( owner, spender, decrement, validAfter, validBefore, nonce, v, r, s ); } function withdrawWithAuthorization( address owner, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused notBlacklisted(owner) { _withdrawWithAuthorization( owner, value, validAfter, validBefore, nonce, v, r, s ); } function cancelAuthorization( address authorizer, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external override whenNotPaused { _cancelAuthorization(authorizer, nonce, v, r, s); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRescuer","type":"address"}],"name":"RescuerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"APPROVE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLACKLISTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CANCEL_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPOSITOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INCREASE_ALLOWANCE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"META_TRANSACTION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESCUER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"approveWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authorizer","type":"address"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"authorizationState","outputs":[{"internalType":"enum GasAbstraction.AuthorizationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklisters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"authorizer","type":"address"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"cancelAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"decrement","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"decreaseAllowanceWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"increment","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"increaseAllowanceWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"},{"internalType":"uint8","name":"newDecimals","type":"uint8"},{"internalType":"address","name":"childChainManager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenContract","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescuers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"withdrawWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526008805460ff19908116909155600d805490911690553480156200002757600080fd5b5060408051602080820180845260008084528451928301909452928152815191929091620000589160039162000084565b5080516200006e90600490602084019062000084565b50506005805460ff191660121790555062000120565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000c757805160ff1916838001178555620000f7565b82800160010185558215620000f7579182015b82811115620000f7578251825591602001919060010190620000da565b506200010592915062000109565b5090565b5b808211156200010557600081556001016200010a565b614cd280620001306000396000f3fe6080604052600436106103815760003560e01c80639010d07c116101d1578063d505accf11610102578063e63ab1e9116100a0578063f515e6f21161006f578063f515e6f214611079578063f9f92be41461108e578063fa2c322d146110c1578063fe575a87146110d657610381565b8063e63ab1e914610fe0578063e8d6fc4714610ff5578063e94a01021461100a578063eccec5a81461106457610381565b8063dd62ed3e116100dc578063dd62ed3e14610df0578063de7ea79d14610e2b578063e1560fd314610f08578063e3ee160e14610f7457610381565b8063d505accf14610d44578063d547741f14610da2578063d916948714610ddb57610381565b8063a9059cbb1161016f578063c237108f11610149578063c237108f14610c0e578063c7b84f8d14610c7a578063ca15c87314610c8f578063cf2c52cb14610cb957610381565b8063a9059cbb14610b26578063b008609514610b5f578063b2118a8d14610bcb57610381565b8063a0cc6a68116101ab578063a0cc6a6814610aae578063a217fddf14610ac3578063a3b0b5a314610ad8578063a457c2d714610aed57610381565b80639010d07c14610a1457806391d1485414610a6057806395d89b4114610a9957610381565b8063313ce567116102b65780635a049a70116102545780637b766e5f116102235780637b766e5f146109565780637cfa1cfa146109b75780637ecebe00146109cc5780638456cb59146109ff57610381565b80635a049a70146108ab5780635c975abb146108f957806370a082311461090e578063713725441461094157610381565b80633950935111610290578063395093511461077d5780633f4ba83a146107b65780634b71f5c3146107cb57806356ce0e6c146107e057610381565b8063313ce567146107045780633644e5151461072f57806336568abe1461074457610381565b80631a89526611610323578063248a9ca3116102fd578063248a9ca3146106625780632e1a7d4d1461068c5780632f2ff15d146106b657806330adf81f146106ef57610381565b80631a895266146105d55780632004d2911461060a57806323b872dd1461061f57610381565b8063100a15601161035f578063100a15601461051f57806310c8b40414610584578063158ef93e146105ab57806318160ddd146105c057610381565b806306fdde0314610386578063095ea7b3146104105780630c53c51c1461045d575b600080fd5b34801561039257600080fd5b5061039b611109565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d55781810151838201526020016103bd565b50505050905090810190601f1680156104025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041c57600080fd5b506104496004803603604081101561043357600080fd5b506001600160a01b0381351690602001356111a0565b604080519115158252519081900360200190f35b61039b600480360360a081101561047357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561049d57600080fd5b8201836020820111156104af57600080fd5b803590602001918460018302840111600160201b831117156104d057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550508235935050506020810135906040013560ff166112c5565b34801561052b57600080fd5b5061053461158d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610570578181015183820152602001610558565b505050509050019250505060405180910390f35b34801561059057600080fd5b50610599611646565b60408051918252519081900360200190f35b3480156105b757600080fd5b5061044961166a565b3480156105cc57600080fd5b50610599611673565b3480156105e157600080fd5b50610608600480360360208110156105f857600080fd5b50356001600160a01b0316611679565b005b34801561061657600080fd5b50610599611784565b34801561062b57600080fd5b506104496004803603606081101561064257600080fd5b506001600160a01b038135811691602081013590911690604001356117a8565b34801561066e57600080fd5b506105996004803603602081101561068557600080fd5b5035611922565b34801561069857600080fd5b50610608600480360360208110156106af57600080fd5b5035611937565b3480156106c257600080fd5b50610608600480360360408110156106d957600080fd5b50803590602001356001600160a01b03166119ac565b3480156106fb57600080fd5b50610599611a0f565b34801561071057600080fd5b50610719611a33565b6040805160ff9092168252519081900360200190f35b34801561073b57600080fd5b50610599611a3c565b34801561075057600080fd5b506106086004803603604081101561076757600080fd5b50803590602001356001600160a01b0316611a42565b34801561078957600080fd5b50610449600480360360408110156107a057600080fd5b506001600160a01b038135169060200135611aa3565b3480156107c257600080fd5b50610608611bbd565b3480156107d757600080fd5b50610599611c75565b3480156107ec57600080fd5b506106086004803603604081101561080357600080fd5b810190602081018135600160201b81111561081d57600080fd5b82018360208201111561082f57600080fd5b803590602001918460018302840111600160201b8311171561085057600080fd5b919390929091602081019035600160201b81111561086d57600080fd5b82018360208201111561087f57600080fd5b803590602001918460018302840111600160201b831117156108a057600080fd5b509092509050611c99565b3480156108b757600080fd5b50610608600480360360a08110156108ce57600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135611deb565b34801561090557600080fd5b50610449611e43565b34801561091a57600080fd5b506105996004803603602081101561093157600080fd5b50356001600160a01b0316611e4c565b34801561094d57600080fd5b50610599611e67565b34801561096257600080fd5b50610608600480360361010081101561097a57600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060ff60a0820135169060c08101359060e00135611e79565b3480156109c357600080fd5b50610534611f39565b3480156109d857600080fd5b50610599600480360360208110156109ef57600080fd5b50356001600160a01b0316611feb565b348015610a0b57600080fd5b50610608612006565b348015610a2057600080fd5b50610a4460048036036040811015610a3757600080fd5b50803590602001356120c1565b604080516001600160a01b039092168252519081900360200190f35b348015610a6c57600080fd5b5061044960048036036040811015610a8357600080fd5b50803590602001356001600160a01b03166120e2565b348015610aa557600080fd5b5061039b6120fa565b348015610aba57600080fd5b5061059961215b565b348015610acf57600080fd5b5061059961217f565b348015610ae457600080fd5b50610599612184565b348015610af957600080fd5b5061044960048036036040811015610b1057600080fd5b506001600160a01b0381351690602001356121a8565b348015610b3257600080fd5b5061044960048036036040811015610b4957600080fd5b506001600160a01b0381351690602001356122c2565b348015610b6b57600080fd5b506106086004803603610120811015610b8357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356123dc565b348015610bd757600080fd5b5061060860048036036060811015610bee57600080fd5b506001600160a01b038135811691602081013590911690604001356124f9565b348015610c1a57600080fd5b506106086004803603610120811015610c3257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612595565b348015610c8657600080fd5b506105996126a5565b348015610c9b57600080fd5b5061059960048036036020811015610cb257600080fd5b50356126c9565b348015610cc557600080fd5b5061060860048036036040811015610cdc57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610d0657600080fd5b820183602082011115610d1857600080fd5b803590602001918460018302840111600160201b83111715610d3957600080fd5b5090925090506126e0565b348015610d5057600080fd5b50610608600480360360e0811015610d6757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612794565b348015610dae57600080fd5b5061060860048036036040811015610dc557600080fd5b50803590602001356001600160a01b03166128a2565b348015610de757600080fd5b506105996128fb565b348015610dfc57600080fd5b5061059960048036036040811015610e1357600080fd5b506001600160a01b038135811691602001351661291f565b348015610e3757600080fd5b5061060860048036036080811015610e4e57600080fd5b810190602081018135600160201b811115610e6857600080fd5b820183602082011115610e7a57600080fd5b803590602001918460018302840111600160201b83111715610e9b57600080fd5b919390929091602081019035600160201b811115610eb857600080fd5b820183602082011115610eca57600080fd5b803590602001918460018302840111600160201b83111715610eeb57600080fd5b9193509150803560ff1690602001356001600160a01b031661294a565b348015610f1457600080fd5b506106086004803603610120811015610f2c57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612acb565b348015610f8057600080fd5b506106086004803603610120811015610f9857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612bdb565b348015610fec57600080fd5b50610599612ceb565b34801561100157600080fd5b50610534612cfd565b34801561101657600080fd5b506110436004803603604081101561102d57600080fd5b506001600160a01b038135169060200135612daf565b6040518082600281111561105357fe5b815260200191505060405180910390f35b34801561107057600080fd5b5061039b612dda565b34801561108557600080fd5b50610599612df7565b34801561109a57600080fd5b50610608600480360360208110156110b157600080fd5b50356001600160a01b0316612e09565b3480156110cd57600080fd5b50610599612ed8565b3480156110e257600080fd5b50610449600480360360208110156110f957600080fd5b50356001600160a01b0316612efc565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156111955780601f1061116a57610100808354040283529160200191611195565b820191906000526020600020905b81548152906001019060200180831161117857829003601f168201915b505050505090505b90565b600d5460009060ff16156111ee576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6111f6612f1a565b6001600160a01b0381166000908152600c602052604090205460ff161561124e5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156112a85760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6112b3612f1a565b8686612f29565b506001949350505050565b60606112cf614802565b50604080516060810182526001600160a01b0388166000818152600a60209081529084902080546001810190915583528201529081018690526113158782878787613015565b6113505760405162461bcd60e51b8152600401808060200182810382526021815260200180614afb6021913960400191505060405180910390fd5b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b87338860405180846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156113cf5781810151838201526020016113b7565b50505050905090810190601f1680156113fc5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160006060306001600160a01b0316888a6040516020018083805190602001908083835b6020831061144d5780518252601f19909201916020918201910161142e565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106114c35780518252601f1990920191602091820191016114a4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611525576040519150601f19603f3d011682016040523d82523d6000602084013e61152a565b606091505b509150915081611581576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b98975050505050505050565b606060006115a86000805160206149058339815191526126c9565b905060608167ffffffffffffffff811180156115c357600080fd5b506040519080825280602002602001820160405280156115ed578160200160208202803683370190505b50905060005b8281101561163f57611613600080516020614905833981519152826120c1565b82828151811061161f57fe5b6001600160a01b03909216602092830291909101909101526001016115f3565b5091505090565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b60085460ff1690565b60025490565b600080516020614b1c83398151915261169981611694612f1a565b6120e2565b6007906117395760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b50509250505060405180910390fd5b506001600160a01b0382166000818152600c6020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a25050565b7f6c8f8f5f82f0c140edd12e80d10ff715a36d6e5f73e406394862b5f1eb44c4f981565b600d5460009060ff16156117f6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6117fe612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156118565760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0385166000908152600c6020526040902054859060ff16156118b05760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0385166000908152600c6020526040902054859060ff161561190a5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611915878787613105565b5060019695505050505050565b60009081526006602052604090206002015490565b61193f612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156119975760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6119a86119a2612f1a565b83613185565b5050565b6000828152600660205260409020600201546119ca90611694612f1a565b611a055760405162461bcd60e51b815260040180806020018281038252602f815260200180614925602f913960400191505060405180910390fd5b6119a88282613281565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60095481565b611a4a612f1a565b6001600160a01b0316816001600160a01b031614611a995760405162461bcd60e51b815260040180806020018281038252602f815260200180614c6e602f913960400191505060405180910390fd5b6119a882826132ea565b600d5460009060ff1615611af1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611af9612f1a565b6001600160a01b0381166000908152600c602052604090205460ff1615611b515760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff1615611bab5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba611bb6612f1a565b8686613353565b600080516020614adb833981519152611bd881611694612f1a565b600790611c3e5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50600d805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a150565b7fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d881565b6000611ca781611694612f1a565b600790611d0d5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50611d4d85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061338b92505050565b611d8c83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061339e92505050565b611de485858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152603160f81b602082015291506133b19050565b5050505050565b600d5460ff1615611e36576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611de485858585856133c2565b600d5460ff1690565b6001600160a01b031660009081526020819052604090205490565b60008051602061490583398151915281565b600d5460ff1615611ec4576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0388166000908152600c6020526040902054889060ff1615611f1e5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611f2e89898989898989896134d6565b505050505050505050565b60606000611f54600080516020614b1c8339815191526126c9565b905060608167ffffffffffffffff81118015611f6f57600080fd5b50604051908082528060200260200182016040528015611f99578160200160208202803683370190505b50905060005b8281101561163f57611fbf600080516020614b1c833981519152826120c1565b828281518110611fcb57fe5b6001600160a01b0390921660209283029190910190910152600101611f9f565b6001600160a01b03166000908152600a602052604090205490565b600080516020614adb83398151915261202181611694612f1a565b6007906120875760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50600d805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a150565b60008281526006602052604081206120d990836135b7565b90505b92915050565b60008281526006602052604081206120d990836135c3565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156111955780601f1061116a57610100808354040283529160200191611195565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b600081565b7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a981565b600d5460009060ff16156121f6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6121fe612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156122565760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156122b05760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6122bb612f1a565b86866135d8565b600d5460009060ff1615612310576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612318612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156123705760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156123ca5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6123d5612f1a565b8686613627565b600d5460ff1615612427576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156124815760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156124db5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613782565b5050505050505050505050565b60008051602061490583398151915261251481611694612f1a565b60079061257a5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b5061258f6001600160a01b038516848461387a565b50505050565b600d5460ff16156125e0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff161561263a5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156126945760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b6138cc565b7f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a81565b60008181526006602052604081206120dc906139b8565b7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a961270d81611694612f1a565b6007906127735760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b5060008383602081101561278657600080fd5b50359050611de485826139c3565b600d5460ff16156127df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0387166000908152600c6020526040902054879060ff16156128395760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0387166000908152600c6020526040902054879060ff16156128935760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611f2e89898989898989613ab3565b6000828152600660205260409020600201546128c090611694612f1a565b611a995760405162461bcd60e51b8152600401808060200182810382526030815260200180614a3d6030913960400191505060405180910390fd5b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085460ff161561295a57600080fd5b61299986868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061338b92505050565b6129d884848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061339e92505050565b6129e182613c63565b612a22848460405160200180806410da1a5b1960da1b8152506005018383808284378083019250505092505050604051602081830303815290604052613c79565b612a346000612a2f612f1a565b611a05565b612a5e7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a982611a05565b612ab686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152603160f81b602082015291506133b19050565b50506008805460ff1916600117905550505050565b600d5460ff1615612b16576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612b705760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612bca5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613d17565b600d5460ff1615612c26576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612c805760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612cda5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613e03565b600080516020614adb83398151915281565b60606000612d18600080516020614adb8339815191526126c9565b905060608167ffffffffffffffff81118015612d3357600080fd5b50604051908082528060200260200182016040528015612d5d578160200160208202803683370190505b50905060005b8281101561163f57612d83600080516020614adb833981519152826120c1565b828281518110612d8f57fe5b6001600160a01b0390921660209283029190910190910152600101612d63565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b604051806040016040528060018152602001603160f81b81525081565b600080516020614b1c83398151915281565b600080516020614b1c833981519152612e2481611694612f1a565b600790612e8a5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b506001600160a01b0382166000818152600c6020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a25050565b7f23d10def3caacba2e4042e0c75d44a42d2558aabcf5ce951d0642a8032e1e65381565b6001600160a01b03166000908152600c602052604090205460ff1690565b6000612f24613eef565b905090565b6001600160a01b038316612f6e5760405162461bcd60e51b8152600401808060200182810382526024815260200180614bb06024913960400191505060405180910390fd5b6001600160a01b038216612fb35760405162461bcd60e51b815260040180806020018281038252602281526020018061499c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006001600160a01b03861661305c5760405162461bcd60e51b8152600401808060200182810382526025815260200180614a6d6025913960400191505060405180910390fd5b60607f23d10def3caacba2e4042e0c75d44a42d2558aabcf5ce951d0642a8032e1e65360001b8660000151876020015188604001518051906020012060405160200180858152602001848152602001836001600160a01b031681526020018281526020019450505050506040516020818303038152906040529050866001600160a01b03166130f060095485888886613f4c565b6001600160a01b031614979650505050505050565b613110838383613627565b6131808361311c612f1a565b61317b84604051806060016040528060288152602001614ab3602891396001600160a01b03891660009081526001602052604081209061315a612f1a565b6001600160a01b031681526020810191909152604001600020549190613fa3565b612f29565b505050565b6001600160a01b0382166131ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180614b3c6021913960400191505060405180910390fd5b6131d682600083613180565b61321381604051806060016040528060228152602001614954602291396001600160a01b0385166000908152602081905260409020549190613fa3565b6001600160a01b038316600090815260208190526040902055600254613239908261403a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000828152600660205260409020613299908261407c565b156119a8576132a6612f1a565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206133029082614091565b156119a85761330f612f1a565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b03808416600090815260016020908152604080832093861683529290522054613180908490849061317b90856140a6565b80516119a890600390602084019061482c565b80516119a890600490602084019061482c565b6133bb8282614100565b6009555050565b6133cc8585614172565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b03871681830181905260608281018890528351808403909101815260809092019092526009549091906134339086868686613f4c565b6001600160a01b0316146134785760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6001600160a01b0386166000818152600b60209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b6134e2888588886141e0565b604080517f6c8f8f5f82f0c140edd12e80d10ff715a36d6e5f73e406394862b5f1eb44c4f960208201526001600160a01b038a16818301819052606082018a90526080820189905260a0820188905260c08083018890528351808403909101815260e090920190925260095490919061355e9086868686613f4c565b6001600160a01b0316146135a35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6135ad8986614266565b611f2e8989613185565b60006120d983836142c0565b60006120d9836001600160a01b038416614324565b613180838361317b84604051806060016040528060258152602001614c49602591396001600160a01b03808a166000908152600160209081526040808320938c16835292905220549190613fa3565b6001600160a01b03831661366c5760405162461bcd60e51b8152600401808060200182810382526025815260200180614b5d6025913960400191505060405180910390fd5b6001600160a01b0382166136b15760405162461bcd60e51b81526004018080602001828103825260238152602001806148e26023913960400191505060405180910390fd5b6136bc838383613180565b6136f9816040518060600160405280602681526020016149ef602691396001600160a01b0386166000908152602081905260409020549190613fa3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461372890826140a6565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b61378e898588886141e0565b604080517fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d860208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e0808301889052835180840390910181526101009092019092526009549091906138149086868686613f4c565b6001600160a01b0316146138595760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6138638a86614266565b61386e8a8a8a6135d8565b50505050505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261318090849061433c565b6138d8898588886141e0565b604080517f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e08083018890528351808403909101815261010090920190925260095490919061395e9086868686613f4c565b6001600160a01b0316146139a35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6139ad8a86614266565b61386e8a8a8a613353565b60006120dc826143ed565b6001600160a01b038216613a1e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613a2a60008383613180565b600254613a3790826140a6565b6002556001600160a01b038216600090815260208190526040902054613a5d90826140a6565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b33301415613b08576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973207468697320636f6e7472616374000000000000000000604482015290519081900360640190fd5b42841015613b5d576040805162461bcd60e51b815260206004820152601960248201527f5065726d69743a207065726d6974206973206578706972656400000000000000604482015290519081900360640190fd5b6001600160a01b038088166000818152600a602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e09093019052600954613bf39086868686613f4c565b6001600160a01b031614613c4e576040805162461bcd60e51b815260206004820152601960248201527f5065726d69743a20696e76616c6964207369676e617475726500000000000000604482015290519081900360640190fd5b613c59888888612f29565b5050505050505050565b6005805460ff191660ff92909216919091179055565b806040516020018082805190602001908083835b60208310613cac5780518252601f199092019160209182019101613c8d565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a909201905280516119a8955060079450920191905061482c565b613d23898588886141e0565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600954909190613da99086868686613f4c565b6001600160a01b031614613dee5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b613df88a86614266565b61386e8a8a8a612f29565b613e0f898588886141e0565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600954909190613e959086868686613f4c565b6001600160a01b031614613eda5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b613ee48a86614266565b61386e8a8a8a613627565b600033301415613f475760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061119d9050565b503390565b80516020808301919091206040805161190160f01b81850152602281018990526042808201939093528151808203909301835260620190528051910120600090613f98818787876143f1565b979650505050505050565b600081848411156140325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ff7578181015183820152602001613fdf565b50505050905090810190601f1680156140245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006120d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fa3565b60006120d9836001600160a01b038416614575565b60006120d9836001600160a01b0384166145bf565b6000828201838110156120d9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8151602092830120815191830191909120604080517f36c25de3e541d5d970f66e4210d728721220fff5c077cc6cd008b3a0c62adab7818601528082019390935260608301919091523060808301524660a0808401919091528151808403909101815260c09092019052805191012090565b6001600160a01b0382166000908152600b6020908152604080832084845290915281205460ff1660028111156141a457fe5b146119a85760405162461bcd60e51b81526004018080602001828103825260318152602001806149be6031913960400191505060405180910390fd5b81421161421e5760405162461bcd60e51b815260040180806020018281038252602e815260200180614b82602e913960400191505060405180910390fd5b80421061425c5760405162461bcd60e51b8152600401808060200182810382526028815260200180614a156028913960400191505060405180910390fd5b61258f8484614172565b6001600160a01b0382166000818152600b60209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b815460009082106143025760405162461bcd60e51b81526004018080602001828103825260228152602001806148c06022913960400191505060405180910390fd5b82600001828154811061431157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b6060614391826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166146859092919063ffffffff16565b805190915015613180578080602001905160208110156143b057600080fd5b50516131805760405162461bcd60e51b815260040180806020018281038252602a815260200180614bfa602a913960400191505060405180910390fd5b5490565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156144525760405162461bcd60e51b8152600401808060200182810382526026815260200180614bd46026913960400191505060405180910390fd5b8360ff16601b1415801561446a57508360ff16601c14155b156144a65760405162461bcd60e51b81526004018080602001828103825260268152602001806149766026913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015614502573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661456a576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b90505b949350505050565b60006145818383614324565b6145b7575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556120dc565b5060006120dc565b6000818152600183016020526040812054801561467b57835460001980830191908101906000908790839081106145f257fe5b906000526020600020015490508087600001848154811061460f57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061463f57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506120dc565b60009150506120dc565b606061456d8484600085606061469a856147fc565b6146eb576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061472a5780518252601f19909201916020918201910161470b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461478c576040519150601f19603f3d011682016040523d82523d6000602084013e614791565b606091505b509150915081156147a557915061456d9050565b8051156147b55780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613ff7578181015183820152602001613fdf565b3b151590565b60405180606001604052806000815260200160006001600160a01b03168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061486d57805160ff191683800117855561489a565b8280016001018555821561489a579182015b8281111561489a57825182559160200191906001019061487f565b506148a69291506148aa565b5090565b5b808211156148a657600081556001016148ab56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373cf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a050416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c756545524332303a20617070726f766520746f20746865207a65726f20616464726573734761734162737472616374696f6e3a20617574686f72697a6174696f6e2069732075736564206f722063616e63656c656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654761734162737472616374696f6e3a20617574686f72697a6174696f6e2069732065787069726564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524761734162737472616374696f6e3a20696e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636565d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a5369676e657220616e64207369676e617475726520646f206e6f74206d6174636898db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e945524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734761734162737472616374696f6e3a20617574686f72697a6174696f6e206973206e6f74207965742076616c696445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c75655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c697374656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220492e9326452cc70ce3cbc63fe2392b3afcd778b70aa095805a252595449c77a664736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106103815760003560e01c80639010d07c116101d1578063d505accf11610102578063e63ab1e9116100a0578063f515e6f21161006f578063f515e6f214611079578063f9f92be41461108e578063fa2c322d146110c1578063fe575a87146110d657610381565b8063e63ab1e914610fe0578063e8d6fc4714610ff5578063e94a01021461100a578063eccec5a81461106457610381565b8063dd62ed3e116100dc578063dd62ed3e14610df0578063de7ea79d14610e2b578063e1560fd314610f08578063e3ee160e14610f7457610381565b8063d505accf14610d44578063d547741f14610da2578063d916948714610ddb57610381565b8063a9059cbb1161016f578063c237108f11610149578063c237108f14610c0e578063c7b84f8d14610c7a578063ca15c87314610c8f578063cf2c52cb14610cb957610381565b8063a9059cbb14610b26578063b008609514610b5f578063b2118a8d14610bcb57610381565b8063a0cc6a68116101ab578063a0cc6a6814610aae578063a217fddf14610ac3578063a3b0b5a314610ad8578063a457c2d714610aed57610381565b80639010d07c14610a1457806391d1485414610a6057806395d89b4114610a9957610381565b8063313ce567116102b65780635a049a70116102545780637b766e5f116102235780637b766e5f146109565780637cfa1cfa146109b75780637ecebe00146109cc5780638456cb59146109ff57610381565b80635a049a70146108ab5780635c975abb146108f957806370a082311461090e578063713725441461094157610381565b80633950935111610290578063395093511461077d5780633f4ba83a146107b65780634b71f5c3146107cb57806356ce0e6c146107e057610381565b8063313ce567146107045780633644e5151461072f57806336568abe1461074457610381565b80631a89526611610323578063248a9ca3116102fd578063248a9ca3146106625780632e1a7d4d1461068c5780632f2ff15d146106b657806330adf81f146106ef57610381565b80631a895266146105d55780632004d2911461060a57806323b872dd1461061f57610381565b8063100a15601161035f578063100a15601461051f57806310c8b40414610584578063158ef93e146105ab57806318160ddd146105c057610381565b806306fdde0314610386578063095ea7b3146104105780630c53c51c1461045d575b600080fd5b34801561039257600080fd5b5061039b611109565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d55781810151838201526020016103bd565b50505050905090810190601f1680156104025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041c57600080fd5b506104496004803603604081101561043357600080fd5b506001600160a01b0381351690602001356111a0565b604080519115158252519081900360200190f35b61039b600480360360a081101561047357600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561049d57600080fd5b8201836020820111156104af57600080fd5b803590602001918460018302840111600160201b831117156104d057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550508235935050506020810135906040013560ff166112c5565b34801561052b57600080fd5b5061053461158d565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610570578181015183820152602001610558565b505050509050019250505060405180910390f35b34801561059057600080fd5b50610599611646565b60408051918252519081900360200190f35b3480156105b757600080fd5b5061044961166a565b3480156105cc57600080fd5b50610599611673565b3480156105e157600080fd5b50610608600480360360208110156105f857600080fd5b50356001600160a01b0316611679565b005b34801561061657600080fd5b50610599611784565b34801561062b57600080fd5b506104496004803603606081101561064257600080fd5b506001600160a01b038135811691602081013590911690604001356117a8565b34801561066e57600080fd5b506105996004803603602081101561068557600080fd5b5035611922565b34801561069857600080fd5b50610608600480360360208110156106af57600080fd5b5035611937565b3480156106c257600080fd5b50610608600480360360408110156106d957600080fd5b50803590602001356001600160a01b03166119ac565b3480156106fb57600080fd5b50610599611a0f565b34801561071057600080fd5b50610719611a33565b6040805160ff9092168252519081900360200190f35b34801561073b57600080fd5b50610599611a3c565b34801561075057600080fd5b506106086004803603604081101561076757600080fd5b50803590602001356001600160a01b0316611a42565b34801561078957600080fd5b50610449600480360360408110156107a057600080fd5b506001600160a01b038135169060200135611aa3565b3480156107c257600080fd5b50610608611bbd565b3480156107d757600080fd5b50610599611c75565b3480156107ec57600080fd5b506106086004803603604081101561080357600080fd5b810190602081018135600160201b81111561081d57600080fd5b82018360208201111561082f57600080fd5b803590602001918460018302840111600160201b8311171561085057600080fd5b919390929091602081019035600160201b81111561086d57600080fd5b82018360208201111561087f57600080fd5b803590602001918460018302840111600160201b831117156108a057600080fd5b509092509050611c99565b3480156108b757600080fd5b50610608600480360360a08110156108ce57600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135611deb565b34801561090557600080fd5b50610449611e43565b34801561091a57600080fd5b506105996004803603602081101561093157600080fd5b50356001600160a01b0316611e4c565b34801561094d57600080fd5b50610599611e67565b34801561096257600080fd5b50610608600480360361010081101561097a57600080fd5b506001600160a01b038135169060208101359060408101359060608101359060808101359060ff60a0820135169060c08101359060e00135611e79565b3480156109c357600080fd5b50610534611f39565b3480156109d857600080fd5b50610599600480360360208110156109ef57600080fd5b50356001600160a01b0316611feb565b348015610a0b57600080fd5b50610608612006565b348015610a2057600080fd5b50610a4460048036036040811015610a3757600080fd5b50803590602001356120c1565b604080516001600160a01b039092168252519081900360200190f35b348015610a6c57600080fd5b5061044960048036036040811015610a8357600080fd5b50803590602001356001600160a01b03166120e2565b348015610aa557600080fd5b5061039b6120fa565b348015610aba57600080fd5b5061059961215b565b348015610acf57600080fd5b5061059961217f565b348015610ae457600080fd5b50610599612184565b348015610af957600080fd5b5061044960048036036040811015610b1057600080fd5b506001600160a01b0381351690602001356121a8565b348015610b3257600080fd5b5061044960048036036040811015610b4957600080fd5b506001600160a01b0381351690602001356122c2565b348015610b6b57600080fd5b506106086004803603610120811015610b8357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e08101359061010001356123dc565b348015610bd757600080fd5b5061060860048036036060811015610bee57600080fd5b506001600160a01b038135811691602081013590911690604001356124f9565b348015610c1a57600080fd5b506106086004803603610120811015610c3257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612595565b348015610c8657600080fd5b506105996126a5565b348015610c9b57600080fd5b5061059960048036036020811015610cb257600080fd5b50356126c9565b348015610cc557600080fd5b5061060860048036036040811015610cdc57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610d0657600080fd5b820183602082011115610d1857600080fd5b803590602001918460018302840111600160201b83111715610d3957600080fd5b5090925090506126e0565b348015610d5057600080fd5b50610608600480360360e0811015610d6757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612794565b348015610dae57600080fd5b5061060860048036036040811015610dc557600080fd5b50803590602001356001600160a01b03166128a2565b348015610de757600080fd5b506105996128fb565b348015610dfc57600080fd5b5061059960048036036040811015610e1357600080fd5b506001600160a01b038135811691602001351661291f565b348015610e3757600080fd5b5061060860048036036080811015610e4e57600080fd5b810190602081018135600160201b811115610e6857600080fd5b820183602082011115610e7a57600080fd5b803590602001918460018302840111600160201b83111715610e9b57600080fd5b919390929091602081019035600160201b811115610eb857600080fd5b820183602082011115610eca57600080fd5b803590602001918460018302840111600160201b83111715610eeb57600080fd5b9193509150803560ff1690602001356001600160a01b031661294a565b348015610f1457600080fd5b506106086004803603610120811015610f2c57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612acb565b348015610f8057600080fd5b506106086004803603610120811015610f9857600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135612bdb565b348015610fec57600080fd5b50610599612ceb565b34801561100157600080fd5b50610534612cfd565b34801561101657600080fd5b506110436004803603604081101561102d57600080fd5b506001600160a01b038135169060200135612daf565b6040518082600281111561105357fe5b815260200191505060405180910390f35b34801561107057600080fd5b5061039b612dda565b34801561108557600080fd5b50610599612df7565b34801561109a57600080fd5b50610608600480360360208110156110b157600080fd5b50356001600160a01b0316612e09565b3480156110cd57600080fd5b50610599612ed8565b3480156110e257600080fd5b50610449600480360360208110156110f957600080fd5b50356001600160a01b0316612efc565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156111955780601f1061116a57610100808354040283529160200191611195565b820191906000526020600020905b81548152906001019060200180831161117857829003601f168201915b505050505090505b90565b600d5460009060ff16156111ee576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6111f6612f1a565b6001600160a01b0381166000908152600c602052604090205460ff161561124e5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156112a85760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6112b3612f1a565b8686612f29565b506001949350505050565b60606112cf614802565b50604080516060810182526001600160a01b0388166000818152600a60209081529084902080546001810190915583528201529081018690526113158782878787613015565b6113505760405162461bcd60e51b8152600401808060200182810382526021815260200180614afb6021913960400191505060405180910390fd5b7f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b87338860405180846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156113cf5781810151838201526020016113b7565b50505050905090810190601f1680156113fc5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160006060306001600160a01b0316888a6040516020018083805190602001908083835b6020831061144d5780518252601f19909201916020918201910161142e565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b602083106114c35780518252601f1990920191602091820191016114a4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611525576040519150601f19603f3d011682016040523d82523d6000602084013e61152a565b606091505b509150915081611581576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b98975050505050505050565b606060006115a86000805160206149058339815191526126c9565b905060608167ffffffffffffffff811180156115c357600080fd5b506040519080825280602002602001820160405280156115ed578160200160208202803683370190505b50905060005b8281101561163f57611613600080516020614905833981519152826120c1565b82828151811061161f57fe5b6001600160a01b03909216602092830291909101909101526001016115f3565b5091505090565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b60085460ff1690565b60025490565b600080516020614b1c83398151915261169981611694612f1a565b6120e2565b6007906117395760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b820191906000526020600020905b81548152906001019060200180831161170d57829003601f168201915b50509250505060405180910390fd5b506001600160a01b0382166000818152600c6020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a25050565b7f6c8f8f5f82f0c140edd12e80d10ff715a36d6e5f73e406394862b5f1eb44c4f981565b600d5460009060ff16156117f6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6117fe612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156118565760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0385166000908152600c6020526040902054859060ff16156118b05760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0385166000908152600c6020526040902054859060ff161561190a5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611915878787613105565b5060019695505050505050565b60009081526006602052604090206002015490565b61193f612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156119975760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6119a86119a2612f1a565b83613185565b5050565b6000828152600660205260409020600201546119ca90611694612f1a565b611a055760405162461bcd60e51b815260040180806020018281038252602f815260200180614925602f913960400191505060405180910390fd5b6119a88282613281565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60095481565b611a4a612f1a565b6001600160a01b0316816001600160a01b031614611a995760405162461bcd60e51b815260040180806020018281038252602f815260200180614c6e602f913960400191505060405180910390fd5b6119a882826132ea565b600d5460009060ff1615611af1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611af9612f1a565b6001600160a01b0381166000908152600c602052604090205460ff1615611b515760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff1615611bab5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba611bb6612f1a565b8686613353565b600080516020614adb833981519152611bd881611694612f1a565b600790611c3e5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50600d805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a150565b7fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d881565b6000611ca781611694612f1a565b600790611d0d5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50611d4d85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061338b92505050565b611d8c83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061339e92505050565b611de485858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152603160f81b602082015291506133b19050565b5050505050565b600d5460ff1615611e36576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b611de485858585856133c2565b600d5460ff1690565b6001600160a01b031660009081526020819052604090205490565b60008051602061490583398151915281565b600d5460ff1615611ec4576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0388166000908152600c6020526040902054889060ff1615611f1e5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611f2e89898989898989896134d6565b505050505050505050565b60606000611f54600080516020614b1c8339815191526126c9565b905060608167ffffffffffffffff81118015611f6f57600080fd5b50604051908082528060200260200182016040528015611f99578160200160208202803683370190505b50905060005b8281101561163f57611fbf600080516020614b1c833981519152826120c1565b828281518110611fcb57fe5b6001600160a01b0390921660209283029190910190910152600101611f9f565b6001600160a01b03166000908152600a602052604090205490565b600080516020614adb83398151915261202181611694612f1a565b6007906120875760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b50600d805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a150565b60008281526006602052604081206120d990836135b7565b90505b92915050565b60008281526006602052604081206120d990836135c3565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156111955780601f1061116a57610100808354040283529160200191611195565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b600081565b7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a981565b600d5460009060ff16156121f6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6121fe612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156122565760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156122b05760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6122bb612f1a565b86866135d8565b600d5460009060ff1615612310576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b612318612f1a565b6001600160a01b0381166000908152600c602052604090205460ff16156123705760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0384166000908152600c6020526040902054849060ff16156123ca5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6112ba6123d5612f1a565b8686613627565b600d5460ff1615612427576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156124815760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156124db5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613782565b5050505050505050505050565b60008051602061490583398151915261251481611694612f1a565b60079061257a5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b5061258f6001600160a01b038516848461387a565b50505050565b600d5460ff16156125e0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff161561263a5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff16156126945760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b6138cc565b7f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a81565b60008181526006602052604081206120dc906139b8565b7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a961270d81611694612f1a565b6007906127735760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b5060008383602081101561278657600080fd5b50359050611de485826139c3565b600d5460ff16156127df576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0387166000908152600c6020526040902054879060ff16156128395760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0387166000908152600c6020526040902054879060ff16156128935760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b611f2e89898989898989613ab3565b6000828152600660205260409020600201546128c090611694612f1a565b611a995760405162461bcd60e51b8152600401808060200182810382526030815260200180614a3d6030913960400191505060405180910390fd5b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60085460ff161561295a57600080fd5b61299986868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061338b92505050565b6129d884848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061339e92505050565b6129e182613c63565b612a22848460405160200180806410da1a5b1960da1b8152506005018383808284378083019250505092505050604051602081830303815290604052613c79565b612a346000612a2f612f1a565b611a05565b612a5e7f8f4f2da22e8ac8f11e15f9fc141cddbb5deea8800186560abb6e68c5496619a982611a05565b612ab686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260018152603160f81b602082015291506133b19050565b50506008805460ff1916600117905550505050565b600d5460ff1615612b16576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612b705760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612bca5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613d17565b600d5460ff1615612c26576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612c805760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6001600160a01b0389166000908152600c6020526040902054899060ff1615612cda5760405162461bcd60e51b8152600401808060200182810382526025815260200180614c246025913960400191505060405180910390fd5b6124ec8b8b8b8b8b8b8b8b8b613e03565b600080516020614adb83398151915281565b60606000612d18600080516020614adb8339815191526126c9565b905060608167ffffffffffffffff81118015612d3357600080fd5b50604051908082528060200260200182016040528015612d5d578160200160208202803683370190505b50905060005b8281101561163f57612d83600080516020614adb833981519152826120c1565b828281518110612d8f57fe5b6001600160a01b0390921660209283029190910190910152600101612d63565b6001600160a01b03919091166000908152600b60209081526040808320938352929052205460ff1690565b604051806040016040528060018152602001603160f81b81525081565b600080516020614b1c83398151915281565b600080516020614b1c833981519152612e2481611694612f1a565b600790612e8a5760405162461bcd60e51b815260206004820190815282546002600019610100600184161502019091160460248301819052909182916044909101908490801561172a5780601f106116ff5761010080835404028352916020019161172a565b506001600160a01b0382166000818152600c6020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a25050565b7f23d10def3caacba2e4042e0c75d44a42d2558aabcf5ce951d0642a8032e1e65381565b6001600160a01b03166000908152600c602052604090205460ff1690565b6000612f24613eef565b905090565b6001600160a01b038316612f6e5760405162461bcd60e51b8152600401808060200182810382526024815260200180614bb06024913960400191505060405180910390fd5b6001600160a01b038216612fb35760405162461bcd60e51b815260040180806020018281038252602281526020018061499c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006001600160a01b03861661305c5760405162461bcd60e51b8152600401808060200182810382526025815260200180614a6d6025913960400191505060405180910390fd5b60607f23d10def3caacba2e4042e0c75d44a42d2558aabcf5ce951d0642a8032e1e65360001b8660000151876020015188604001518051906020012060405160200180858152602001848152602001836001600160a01b031681526020018281526020019450505050506040516020818303038152906040529050866001600160a01b03166130f060095485888886613f4c565b6001600160a01b031614979650505050505050565b613110838383613627565b6131808361311c612f1a565b61317b84604051806060016040528060288152602001614ab3602891396001600160a01b03891660009081526001602052604081209061315a612f1a565b6001600160a01b031681526020810191909152604001600020549190613fa3565b612f29565b505050565b6001600160a01b0382166131ca5760405162461bcd60e51b8152600401808060200182810382526021815260200180614b3c6021913960400191505060405180910390fd5b6131d682600083613180565b61321381604051806060016040528060228152602001614954602291396001600160a01b0385166000908152602081905260409020549190613fa3565b6001600160a01b038316600090815260208190526040902055600254613239908261403a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000828152600660205260409020613299908261407c565b156119a8576132a6612f1a565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206133029082614091565b156119a85761330f612f1a565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b03808416600090815260016020908152604080832093861683529290522054613180908490849061317b90856140a6565b80516119a890600390602084019061482c565b80516119a890600490602084019061482c565b6133bb8282614100565b6009555050565b6133cc8585614172565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b03871681830181905260608281018890528351808403909101815260809092019092526009549091906134339086868686613f4c565b6001600160a01b0316146134785760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6001600160a01b0386166000818152600b60209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b6134e2888588886141e0565b604080517f6c8f8f5f82f0c140edd12e80d10ff715a36d6e5f73e406394862b5f1eb44c4f960208201526001600160a01b038a16818301819052606082018a90526080820189905260a0820188905260c08083018890528351808403909101815260e090920190925260095490919061355e9086868686613f4c565b6001600160a01b0316146135a35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6135ad8986614266565b611f2e8989613185565b60006120d983836142c0565b60006120d9836001600160a01b038416614324565b613180838361317b84604051806060016040528060258152602001614c49602591396001600160a01b03808a166000908152600160209081526040808320938c16835292905220549190613fa3565b6001600160a01b03831661366c5760405162461bcd60e51b8152600401808060200182810382526025815260200180614b5d6025913960400191505060405180910390fd5b6001600160a01b0382166136b15760405162461bcd60e51b81526004018080602001828103825260238152602001806148e26023913960400191505060405180910390fd5b6136bc838383613180565b6136f9816040518060600160405280602681526020016149ef602691396001600160a01b0386166000908152602081905260409020549190613fa3565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461372890826140a6565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b61378e898588886141e0565b604080517fb70559e94cbda91958ebec07f9b65b3b490097c8d25c8dacd71105df1015b6d860208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e0808301889052835180840390910181526101009092019092526009549091906138149086868686613f4c565b6001600160a01b0316146138595760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6138638a86614266565b61386e8a8a8a6135d8565b50505050505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261318090849061433c565b6138d8898588886141e0565b604080517f424222bb050a1f7f14017232a5671f2680a2d3420f504bd565cf03035c53198a60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e08083018890528351808403909101815261010090920190925260095490919061395e9086868686613f4c565b6001600160a01b0316146139a35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b6139ad8a86614266565b61386e8a8a8a613353565b60006120dc826143ed565b6001600160a01b038216613a1e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b613a2a60008383613180565b600254613a3790826140a6565b6002556001600160a01b038216600090815260208190526040902054613a5d90826140a6565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b33301415613b08576040805162461bcd60e51b815260206004820152601760248201527f43616c6c6572206973207468697320636f6e7472616374000000000000000000604482015290519081900360640190fd5b42841015613b5d576040805162461bcd60e51b815260206004820152601960248201527f5065726d69743a207065726d6974206973206578706972656400000000000000604482015290519081900360640190fd5b6001600160a01b038088166000818152600a602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e09093019052600954613bf39086868686613f4c565b6001600160a01b031614613c4e576040805162461bcd60e51b815260206004820152601960248201527f5065726d69743a20696e76616c6964207369676e617475726500000000000000604482015290519081900360640190fd5b613c59888888612f29565b5050505050505050565b6005805460ff191660ff92909216919091179055565b806040516020018082805190602001908083835b60208310613cac5780518252601f199092019160209182019101613c8d565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a909201905280516119a8955060079450920191905061482c565b613d23898588886141e0565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600954909190613da99086868686613f4c565b6001600160a01b031614613dee5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b613df88a86614266565b61386e8a8a8a612f29565b613e0f898588886141e0565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252600954909190613e959086868686613f4c565b6001600160a01b031614613eda5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b613ee48a86614266565b61386e8a8a8a613627565b600033301415613f475760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061119d9050565b503390565b80516020808301919091206040805161190160f01b81850152602281018990526042808201939093528151808203909301835260620190528051910120600090613f98818787876143f1565b979650505050505050565b600081848411156140325760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ff7578181015183820152602001613fdf565b50505050905090810190601f1680156140245780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006120d983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613fa3565b60006120d9836001600160a01b038416614575565b60006120d9836001600160a01b0384166145bf565b6000828201838110156120d9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8151602092830120815191830191909120604080517f36c25de3e541d5d970f66e4210d728721220fff5c077cc6cd008b3a0c62adab7818601528082019390935260608301919091523060808301524660a0808401919091528151808403909101815260c09092019052805191012090565b6001600160a01b0382166000908152600b6020908152604080832084845290915281205460ff1660028111156141a457fe5b146119a85760405162461bcd60e51b81526004018080602001828103825260318152602001806149be6031913960400191505060405180910390fd5b81421161421e5760405162461bcd60e51b815260040180806020018281038252602e815260200180614b82602e913960400191505060405180910390fd5b80421061425c5760405162461bcd60e51b8152600401808060200182810382526028815260200180614a156028913960400191505060405180910390fd5b61258f8484614172565b6001600160a01b0382166000818152600b60209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b815460009082106143025760405162461bcd60e51b81526004018080602001828103825260228152602001806148c06022913960400191505060405180910390fd5b82600001828154811061431157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b6060614391826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166146859092919063ffffffff16565b805190915015613180578080602001905160208110156143b057600080fd5b50516131805760405162461bcd60e51b815260040180806020018281038252602a815260200180614bfa602a913960400191505060405180910390fd5b5490565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156144525760405162461bcd60e51b8152600401808060200182810382526026815260200180614bd46026913960400191505060405180910390fd5b8360ff16601b1415801561446a57508360ff16601c14155b156144a65760405162461bcd60e51b81526004018080602001828103825260268152602001806149766026913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015614502573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661456a576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b90505b949350505050565b60006145818383614324565b6145b7575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556120dc565b5060006120dc565b6000818152600183016020526040812054801561467b57835460001980830191908101906000908790839081106145f257fe5b906000526020600020015490508087600001848154811061460f57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061463f57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506120dc565b60009150506120dc565b606061456d8484600085606061469a856147fc565b6146eb576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061472a5780518252601f19909201916020918201910161470b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461478c576040519150601f19603f3d011682016040523d82523d6000602084013e614791565b606091505b509150915081156147a557915061456d9050565b8051156147b55780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613ff7578181015183820152602001613fdf565b3b151590565b60405180606001604052806000815260200160006001600160a01b03168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061486d57805160ff191683800117855561489a565b8280016001018555821561489a579182015b8281111561489a57825182559160200191906001019061487f565b506148a69291506148aa565b5090565b5b808211156148a657600081556001016148ab56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373cf6f9f892731e14b8859835f2ff35575f447fb501f46243c4eb8bac19e31a050416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c756545524332303a20617070726f766520746f20746865207a65726f20616464726573734761734162737472616374696f6e3a20617574686f72697a6174696f6e2069732075736564206f722063616e63656c656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654761734162737472616374696f6e3a20617574686f72697a6174696f6e2069732065787069726564416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45524761734162737472616374696f6e3a20696e76616c6964207369676e617475726545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636565d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a5369676e657220616e64207369676e617475726520646f206e6f74206d6174636898db8a220cd0f09badce9f22d0ba7e93edb3d404448cc3560d391ab096ad16e945524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734761734162737472616374696f6e3a20617574686f72697a6174696f6e206973206e6f74207965742076616c696445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c75655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c697374656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220492e9326452cc70ce3cbc63fe2392b3afcd778b70aa095805a252595449c77a664736f6c634300060c0033
Deployed Bytecode Sourcemap
93555:5775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20472:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94339:289;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;94339:289:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;56384:1093;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56384:1093:0;;;;;;;;;;;;;;;-1:-1:-1;;;56384:1093:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;56384:1093:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56384:1093:0;;-1:-1:-1;;56384:1093:0;;;-1:-1:-1;;;56384:1093:0;;;;;;;;;;;:::i;92723:322::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63302:137;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48031:90;;;;;;;;;;;;;:::i;21845:102::-;;;;;;;;;;;;;:::i;86361:156::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;86361:156:0;-1:-1:-1;;;;;86361:156:0;;:::i;:::-;;74153:138;;;;;;;;;;;;;:::i;94636:381::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;94636:381:0;;;;;;;;;;;;;;;;;:::i;43748:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43748:114:0;;:::i;93867:159::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93867:159:0;;:::i;44124:264::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44124:264:0;;;;;;-1:-1:-1;;;;;44124:264:0;;:::i;60169:117::-;;;;;;;;;;;;;:::i;21595:85::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54878:31;;;;;;;;;;;;;:::i;45407:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45407:246:0;;;;;;-1:-1:-1;;;;;45407:246:0;;:::i;95025:317::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;95025:317:0;;;;;;;;:::i;87818:105::-;;;;;;;;;;;;;:::i;63907:148::-;;;;;;;;;;;;;:::i;76503:256::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;76503:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;76503:256:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;76503:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;76503:256:0;;;;;;;;;;-1:-1:-1;76503:256:0;;-1:-1:-1;76503:256:0;-1:-1:-1;76503:256:0;:::i;99081:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;99081:246:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;87512:80::-;;;;;;;;;;;;;:::i;22010:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22010:162:0;-1:-1:-1;;;;;22010:162:0;;:::i;92494:64::-;;;;;;;;;;;;;:::i;98573:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;98573:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;85377:334::-;;;;;;;;;;;;;:::i;55390:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55390:103:0;-1:-1:-1;;;;;55390:103:0;;:::i;87654:100::-;;;;;;;;;;;;;:::i;43389:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43389:170:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;43389:170:0;;;;;;;;;;;;;;42350:139;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42350:139:0;;;;;;-1:-1:-1;;;;;42350:139:0;;:::i;20768:89::-;;;;;;;;;;;;;:::i;63016:138::-;;;;;;;;;;;;;:::i;40993:49::-;;;;;;;;;;;;;:::i;75336:68::-;;;;;;;;;;;;;:::i;95350:327::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;95350:327:0;;;;;;;;:::i;94034:297::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;94034:297:0;;;;;;;;:::i;97917:648::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;97917:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;93280:190::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;93280:190:0;;;;;;;;;;;;;;;;;:::i;97261:648::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;97261:648:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;63592:148::-;;;;;;;;;;;;;:::i;42663:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42663:127:0;;:::i;77140:230::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;77140:230:0;;;;;;;;;;;;;;;-1:-1:-1;;;77140:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;77140:230:0;;;;;;;;;;-1:-1:-1;77140:230:0;;-1:-1:-1;77140:230:0;-1:-1:-1;77140:230:0;:::i;95685:378::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;95685:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;44633:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44633:267:0;;;;;;-1:-1:-1;;;;;44633:267:0;;:::i;64222:131::-;;;;;;;;;;;;;:::i;22666:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22666:203:0;;;;;;;;;;:::i;75660:525::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75660:525:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75660:525:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75660:525:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;75660:525:0;;;;;;;;;;;;-1:-1:-1;75660:525:0;-1:-1:-1;75660:525:0;;;;;;;;-1:-1:-1;;;;;75660:525:0;;:::i;96633:620::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96633:620:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;96071:554::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96071:554:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;86660:62::-;;;;;;;;;;;;;:::i;87080:319::-;;;;;;;;;;;;;:::i;65091:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;65091:203:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;75411:43;;;;;;;;;;;;;:::i;84729:72::-;;;;;;;;;;;;;:::i;86066:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;86066:151:0;-1:-1:-1;;;;;86066:151:0;;:::i;55739:127::-;;;;;;;;;;;;;:::i;85830:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85830:116:0;-1:-1:-1;;;;;85830:116:0;;:::i;20472:85::-;20544:5;20537:12;;;;;;;;-1:-1:-1;;20537:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20511:13;;20537:12;;20544:5;;20537:12;;20544:5;20537:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20472:85;;:::o;94339:289::-;86926:7;;94537:4;;86926:7;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;94472:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;94510:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94559:39:::3;94568:12;:10;:12::i;:::-;94582:7;94591:6;94559:8;:39::i;:::-;-1:-1:-1::0;94616:4:0::3;::::0;94339:289;-1:-1:-1;;;;94339:289:0:o;56384:1093::-;56587:12;56612:29;;:::i;:::-;-1:-1:-1;56644:155:0;;;;;;;;-1:-1:-1;;;;;56682:20:0;;-1:-1:-1;56682:20:0;;;:7;:20;;;;;;;;:22;;;;;;;;56644:155;;;;;;;;;;;56834:46;56690:11;56644:155;56863:4;56869;56875;56834:7;:46::i;:::-;56812:129;;;;-1:-1:-1;;;56812:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56959:117;56997:11;57023:10;57048:17;56959:117;;;;-1:-1:-1;;;;;56959:117:0;;;;;;-1:-1:-1;;;;;56959:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57247:12;57261:23;57296:4;-1:-1:-1;;;;;57288:18:0;57338:17;57357:11;57321:48;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57321:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57321:48:0;;;;;;;;;;;;;;;;;;;;;;;57288:92;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57288:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57246:134;;;;57399:7;57391:48;;;;;-1:-1:-1;;;57391:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;57459:10;56384:1093;-1:-1:-1;;;;;;;;56384:1093:0:o;92723:322::-;92766:16;92795:13;92811:32;-1:-1:-1;;;;;;;;;;;92811:18:0;:32::i;:::-;92795:48;;92854:21;92892:5;92878:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;92878:20:0;;92854:44;;92916:9;92911:103;92935:5;92931:1;:9;92911:103;;;92972:30;-1:-1:-1;;;;;;;;;;;93000:1:0;92972:13;:30::i;:::-;92962:4;92967:1;92962:7;;;;;;;;-1:-1:-1;;;;;92962:40:0;;;:7;;;;;;;;;;;:40;92942:3;;92911:103;;;-1:-1:-1;93033:4:0;-1:-1:-1;;92723:322:0;:::o;63302:137::-;63373:66;63302:137;:::o;48031:90::-;48101:12;;;;48031:90;:::o;21845:102::-;21927:12;;21845:102;:::o;86361:156::-;-1:-1:-1;;;;;;;;;;;47482:27:0;47490:4;47496:12;:10;:12::i;:::-;47482:7;:27::i;:::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;86442:21:0;::::1;86466:5;86442:21:::0;;;:12:::1;:21;::::0;;;;;:29;;-1:-1:-1;;86442:29:0::1;::::0;;86487:22;::::1;::::0;86466:5;86487:22:::1;86361:156:::0;;:::o;74153:138::-;74225:66;74153:138;:::o;94636:381::-;86926:7;;94925:4;;86926:7;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;94826:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;94864:6;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::3;;::::0;;;:12:::3;:21;::::0;;;;;94896:9;;85160:21:::3;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94947:40:::4;94961:6;94969:9;94980:6;94947:13;:40::i;:::-;-1:-1:-1::0;95005:4:0::4;::::0;94636:381;-1:-1:-1;;;;;;94636:381:0:o;43748:114::-;43805:7;43832:12;;;:6;:12;;;;;:22;;;;43748:114::o;93867:159::-;93961:12;:10;:12::i;:::-;-1:-1:-1;;;;;85160:21:0;;;;;;:12;:21;;;;;;;;85159:22;85137:109;;;;-1:-1:-1;;;85137:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93991:27:::1;93997:12;:10;:12::i;:::-;94011:6;93991:5;:27::i;:::-;93867:159:::0;;:::o;44124:264::-;44230:12;;;;:6;:12;;;;;:22;;;44222:45;;44254:12;:10;:12::i;44222:45::-;44200:142;;;;-1:-1:-1;;;44200:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44355:25;44366:4;44372:7;44355:10;:25::i;60169:117::-;60220:66;60169:117;:::o;21595:85::-;21663:9;;;;21595:85;:::o;54878:31::-;;;;:::o;45407:246::-;45519:12;:10;:12::i;:::-;-1:-1:-1;;;;;45508:23:0;:7;-1:-1:-1;;;;;45508:23:0;;45486:120;;;;-1:-1:-1;;;45486:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45619:26;45631:4;45637:7;45619:11;:26::i;95025:317::-;86926:7;;95237:4;;86926:7;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;95172:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;95210:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95259:53:::3;95278:12;:10;:12::i;:::-;95292:7;95301:10;95259:18;:53::i;87818:105::-:0;-1:-1:-1;;;;;;;;;;;47482:27:0;47490:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87875:7:0::1;:15:::0;;-1:-1:-1;;87875:15:0::1;::::0;;87906:9:::1;::::0;::::1;::::0;87885:5:::1;::::0;87906:9:::1;87818:105:::0;:::o;63907:148::-;63989:66;63907:148;:::o;76503:256::-;41038:4;47482:27;41038:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76647:17:::1;76656:7;;76647:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;76647:8:0::1;::::0;-1:-1:-1;;;76647:17:0:i:1;:::-;76675:21;76686:9;;76675:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;76675:10:0::1;::::0;-1:-1:-1;;;76675:21:0:i:1;:::-;76707:44;76727:7;;76707:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;76736:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;76736:14:0::1;::::0;::::1;::::0;;-1:-1:-1;76707:19:0::1;::::0;-1:-1:-1;76707:44:0:i:1;:::-;76503:256:::0;;;;;:::o;99081:246::-;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;99271:48:::1;99292:10;99304:5;99311:1;99314;99317;99271:20;:48::i;87512:80::-:0;87577:7;;;;87512:80;:::o;22010:162::-;-1:-1:-1;;;;;22146:18:0;22114:7;22146:18;;;;;;;;;;;;22010:162::o;92494:64::-;-1:-1:-1;;;;;;;;;;;92494:64:0;:::o;98573:500::-;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;98851:5;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98869:196:::2;98910:5;98930;98950:10;98975:11;99001:5;99021:1;99037;99053;98869:26;:196::i;:::-;86965:1:::1;98573:500:::0;;;;;;;;:::o;85377:334::-;85424:16;85453:13;85469:36;-1:-1:-1;;;;;;;;;;;85469:18:0;:36::i;:::-;85453:52;;85516:21;85554:5;85540:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;85540:20:0;;85516:44;;85578:9;85573:107;85597:5;85593:1;:9;85573:107;;;85634:34;-1:-1:-1;;;;;;;;;;;85666:1:0;85634:13;:34::i;:::-;85624:4;85629:1;85624:7;;;;;;;;-1:-1:-1;;;;;85624:44:0;;;:7;;;;;;;;;;;:44;85604:3;;85573:107;;55390:103;-1:-1:-1;;;;;55471:14:0;55444:7;55471:14;;;:7;:14;;;;;;;55390:103::o;87654:100::-;-1:-1:-1;;;;;;;;;;;47482:27:0;47490:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87709:7:0::1;:14:::0;;-1:-1:-1;;87709:14:0::1;87719:4;87709:14;::::0;;87739:7:::1;::::0;::::1;::::0;87709::::1;::::0;87739::::1;87654:100:::0;:::o;43389:170::-;43489:7;43521:12;;;:6;:12;;;;;:30;;43545:5;43521:23;:30::i;:::-;43514:37;;43389:170;;;;;:::o;42350:139::-;42419:4;42443:12;;;:6;:12;;;;;:38;;42473:7;42443:29;:38::i;20768:89::-;20842:7;20835:14;;;;;;;;-1:-1:-1;;20835:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20809:13;;20835:14;;20842:7;;20835:14;;20842:7;20835:14;;;;;;;;;;;;;;;;;;;;;;;;63016:138;63088:66;63016:138;:::o;40993:49::-;41038:4;40993:49;:::o;75336:68::-;75377:27;75336:68;:::o;95350:327::-;86926:7;;95567:4;;86926:7;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;95502:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;95540:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95589:58:::3;95608:12;:10;:12::i;:::-;95622:7;95631:15;95589:18;:58::i;94034:297::-:0;86926:7;;94237:4;;86926:7;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;94170:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;::::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;94208:9;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94259:42:::3;94269:12;:10;:12::i;:::-;94283:9;94294:6;94259:9;:42::i;97917:648::-:0;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;98270:5;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;98301:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98326:231:::3;98376:5;98396:7;98418:9;98442:10;98467:11;98493:5;98513:1;98529;98545;98326:35;:231::i;:::-;85257:1:::2;86965::::1;97917:648:::0;;;;;;;;;:::o;93280:190::-;-1:-1:-1;;;;;;;;;;;47482:27:0;47490:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93424:38:0::1;-1:-1:-1::0;;;;;93424:26:0;::::1;93451:2:::0;93455:6;93424:26:::1;:38::i;:::-;93280:190:::0;;;;:::o;97261:648::-;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;97614:5;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;97645:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97670:231:::3;97720:5;97740:7;97762:9;97786:10;97811:11;97837:5;97857:1;97873;97889;97670:35;:231::i;63592:148::-:0;63674:66;63592:148;:::o;42663:127::-;42726:7;42753:12;;;:6;:12;;;;;:29;;:27;:29::i;77140:230::-;75377:27;47482;47490:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77281:14:::1;77309:11;;77298:34;;;;;;;::::0;::::1;;-1:-1:-1::0;77298:34:0::1;::::0;-1:-1:-1;77343:19:0::1;77349:4:::0;77298:34;77343:5:::1;:19::i;95685:378::-:0;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;95950:5;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;95981:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96006:49:::3;96014:5;96021:7;96030:5;96037:8;96047:1;96050;96053;96006:7;:49::i;44633:267::-:0;44740:12;;;;:6;:12;;;;;:22;;;44732:45;;44764:12;:10;:12::i;44732:45::-;44710:143;;;;-1:-1:-1;;;44710:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64222:131;64287:66;64222:131;:::o;22666:203::-;-1:-1:-1;;;;;22834:18:0;;;22802:7;22834:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22666:203::o;75660:525::-;47960:12;;;;47959:13;47951:22;;;;;;75853:17:::1;75862:7;;75853:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;75853:8:0::1;::::0;-1:-1:-1;;;75853:17:0:i:1;:::-;75881:21;75892:9;;75881:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;75881:10:0::1;::::0;-1:-1:-1;;;75881:21:0:i:1;:::-;75913:25;75926:11;75913:12;:25::i;:::-;75949:62;75999:9;;75973:36;;;;;;-1:-1:-1::0;;;75973:36:0::1;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75949:16;:62::i;:::-;76022:44;41038:4;76053:12;:10;:12::i;:::-;76022:10;:44::i;:::-;76077:45;75377:27;76104:17;76077:10;:45::i;:::-;76133:44;76153:7;;76133:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;76162:14:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;76162:14:0::1;::::0;::::1;::::0;;-1:-1:-1;76133:19:0::1;::::0;-1:-1:-1;76133:44:0:i:1;:::-;-1:-1:-1::0;;47996:12:0;:19;;-1:-1:-1;;47996:19:0;48011:4;47996:19;;;-1:-1:-1;;;;75660:525:0:o;96633:620::-;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;96972:5;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;97003:7;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97028:217:::3;97068:5;97088:7;97110:5;97130:10;97155:11;97181:5;97201:1;97217;97233;97028:25;:217::i;96071:554::-:0;86926:7;;;;86925:8;86917:37;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;-1:-1:-1;;;86917:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;85160:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;96369:4;;85160:21:::1;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;85160:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;96390:2;;85160:21:::2;;85159:22;85137:109;;;;-1:-1:-1::0;;;85137:109:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96405:212:::3;96446:4;96465:2;96482:5;96502:10;96527:11;96553:5;96573:1;96589;96605;96405:26;:212::i;86660:62::-:0;-1:-1:-1;;;;;;;;;;;86660:62:0;:::o;87080:319::-;87122:16;87151:13;87167:31;-1:-1:-1;;;;;;;;;;;87167:18:0;:31::i;:::-;87151:47;;87209:21;87247:5;87233:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87233:20:0;;87209:44;;87271:9;87266:102;87290:5;87286:1;:9;87266:102;;;87327:29;-1:-1:-1;;;;;;;;;;;87354:1:0;87327:13;:29::i;:::-;87317:4;87322:1;87317:7;;;;;;;;-1:-1:-1;;;;;87317:39:0;;;:7;;;;;;;;;;;:39;87297:3;;87266:102;;65091:203;-1:-1:-1;;;;;65247:32:0;;;;65204:18;65247:32;;;:20;:32;;;;;;;;:39;;;;;;;;;;;65091:203::o;75411:43::-;;;;;;;;;;;;;;-1:-1:-1;;;75411:43:0;;;;:::o;84729:72::-;-1:-1:-1;;;;;;;;;;;84729:72:0;:::o;86066:151::-;-1:-1:-1;;;;;;;;;;;47482:27:0;47490:4;47496:12;:10;:12::i;47482:27::-;47511:10;47474:48;;;;;-1:-1:-1;;;47474:48:0;;;;;;;;;;;;-1:-1:-1;;47474:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;86145:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:28;;-1:-1:-1;;86145:28:0::1;86169:4;86145:28;::::0;;86189:20;::::1;::::0;86145:21;86189:20:::1;86066:151:::0;;:::o;55739:127::-;55800:66;55739:127;:::o;85830:116::-;-1:-1:-1;;;;;85917:21:0;85893:4;85917:21;;;:12;:21;;;;;;;;;85830:116::o;93668:191::-;93780:22;93827:24;:22;:24::i;:::-;93820:31;;93668:191;:::o;28310:389::-;-1:-1:-1;;;;;28455:19:0;;28447:68;;;;-1:-1:-1;;;28447:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28534:21:0;;28526:68;;;;-1:-1:-1;;;28526:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28607:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28659:32;;;;;;;;;;;;;;;;;28310:389;;;:::o;57485:570::-;57664:4;-1:-1:-1;;;;;57689:20:0;;57681:70;;;;-1:-1:-1;;;57681:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57764:17;55800:66;57809:25;;57849:6;:12;;;57876:6;:11;;;57912:6;:24;;;57902:35;;;;;;57784:164;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57784:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;57764:184;;58041:6;-1:-1:-1;;;;;57981:66:0;:56;57996:16;;58014:4;58020;58026;58032;57981:14;:56::i;:::-;-1:-1:-1;;;;;57981:66:0;;;57485:570;-1:-1:-1;;;;;;;57485:570:0:o;29857:420::-;30002:36;30012:6;30020:9;30031:6;30002:9;:36::i;:::-;30049:220;30072:6;30093:12;:10;:12::i;:::-;30120:138;30176:6;30120:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30120:19:0;;;;;;:11;:19;;;;;;30140:12;:10;:12::i;:::-;-1:-1:-1;;;;;30120:33:0;;;;;;;;;;;;-1:-1:-1;30120:33:0;;;:138;:37;:138::i;:::-;30049:8;:220::i;:::-;29857:420;;;:::o;27406:464::-;-1:-1:-1;;;;;27499:21:0;;27491:67;;;;-1:-1:-1;;;27491:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27571:49;27592:7;27609:1;27613:6;27571:20;:49::i;:::-;27654:105;27691:6;27654:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27654:18:0;;:9;:18;;;;;;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;27633:18:0;;:9;:18;;;;;;;;;;:126;27785:12;;:24;;27802:6;27785:16;:24::i;:::-;27770:12;:39;27825:37;;;;;;;;27851:1;;-1:-1:-1;;;;;27825:37:0;;;;;;;;;;;;27406:464;;:::o;46687:188::-;46761:12;;;;:6;:12;;;;;:33;;46786:7;46761:24;:33::i;:::-;46757:111;;;46843:12;:10;:12::i;:::-;-1:-1:-1;;;;;46816:40:0;46834:7;-1:-1:-1;;;;;46816:40:0;46828:4;46816:40;;;;;;;;;;46687:188;;:::o;46883:192::-;46958:12;;;;:6;:12;;;;;:36;;46986:7;46958:27;:36::i;:::-;46954:114;;;47043:12;:10;:12::i;:::-;-1:-1:-1;;;;;47016:40:0;47034:7;-1:-1:-1;;;;;47016:40:0;47028:4;47016:40;;;;;;;;;;46883:192;;:::o;30285:228::-;-1:-1:-1;;;;;30461:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;30436:69;;30445:5;;30452:7;;30461:43;;30493:10;30461:31;:43::i;20565:84::-;20626:15;;;;:5;;:15;;;;;:::i;20865:92::-;20930:19;;;;:7;;:19;;;;;:::i;54918:174::-;55043:41;55070:4;55076:7;55043:26;:41::i;:::-;55024:16;:60;-1:-1:-1;;54918:174:0:o;71543:658::-;71711:46;71739:10;71751:5;71711:27;:46::i;:::-;71790:110;;;64287:66;71790:110;;;;-1:-1:-1;;;;;71790:110:0;;;;;;;;71770:17;71790:110;;;;;;;;;;;;;;;;;;;;;;;71948:16;;71790:110;;;71933:47;;71966:1;71969;71972;71790:110;71933:14;:47::i;:::-;-1:-1:-1;;;;;71933:61:0;;71911:144;;;;-1:-1:-1;;;71911:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;72068:32:0;;;;;;:20;:32;;;;;;;;:39;;;;;;;;;:69;;-1:-1:-1;;72068:69:0;72110:27;72068:69;;;72153:40;72068:39;;:32;72153:40;;;71543:658;;;;;;:::o;74300:772::-;74552:65;74579:5;74586;74593:10;74605:11;74552:26;:65::i;:::-;74650:183;;;74225:66;74650:183;;;;-1:-1:-1;;;;;74650:183:0;;;;;;;;74630:17;74650:183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74881:16;;74650:183;;;74866:47;;74899:1;74902;74905;74650:183;74866:14;:47::i;:::-;-1:-1:-1;;;;;74866:56:0;;74844:139;;;;-1:-1:-1;;;74844:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74996:38;75021:5;75028;74996:24;:38::i;:::-;75045:19;75051:5;75058;75045;:19::i;37409:181::-;37510:7;37558:22;37562:3;37574:5;37558:3;:22::i;36662:190::-;36769:4;36798:46;36808:3;-1:-1:-1;;;;;36828:14:0;;36798:9;:46::i;30521:378::-;30677:214;30700:5;30720:7;30742:138;30792:15;30742:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30742:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;:138;:31;:138::i;25787:619::-;-1:-1:-1;;;;;25936:20:0;;25928:70;;;;-1:-1:-1;;;25928:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26017:23:0;;26009:71;;;;-1:-1:-1;;;26009:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26093:47;26114:6;26122:9;26133:6;26093:20;:47::i;:::-;26173:108;26209:6;26173:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26173:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;26153:17:0;;;:9;:17;;;;;;;;;;;:128;;;;26315:20;;;;;;;:32;;26340:6;26315:24;:32::i;:::-;-1:-1:-1;;;;;26292:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;26363:35;;;;;;;26292:20;;26363:35;;;;;;;;;;;;;25787:619;;;:::o;68912:873::-;69203:65;69230:5;69237;69244:10;69256:11;69203:26;:65::i;:::-;69301:219;;;63989:66;69301:219;;;;-1:-1:-1;;;;;69301:219:0;;;;;;;;;;;;69281:17;69301:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69568:16;;69301:219;;;69553:47;;69586:1;69589;69592;69301:219;69553:14;:47::i;:::-;-1:-1:-1;;;;;69553:56:0;;69531:139;;;;-1:-1:-1;;;69531:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69683:38;69708:5;69715;69683:24;:38::i;:::-;69732:45;69751:5;69758:7;69767:9;69732:18;:45::i;:::-;68912:873;;;;;;;;;;:::o;88578:248::-;88749:58;;;-1:-1:-1;;;;;88749:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;88749:58:0;-1:-1:-1;;;88749:58:0;;;88695:123;;88729:5;;88695:19;:123::i;67372:873::-;67663:65;67690:5;67697;67704:10;67716:11;67663:26;:65::i;:::-;67761:219;;;63674:66;67761:219;;;;-1:-1:-1;;;;;67761:219:0;;;;;;;;;;;;67741:17;67761:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68028:16;;67761:219;;;68013:47;;68046:1;68049;68052;67761:219;68013:14;:47::i;:::-;-1:-1:-1;;;;;68013:56:0;;67991:139;;;;-1:-1:-1;;;67991:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68143:38;68168:5;68175;68143:24;:38::i;:::-;68192:45;68211:5;68218:7;68227:9;68192:18;:45::i;36938:117::-;37001:7;37028:19;37036:3;37028:7;:19::i;26687:387::-;-1:-1:-1;;;;;26780:21:0;;26772:65;;;;;-1:-1:-1;;;26772:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26850:49;26879:1;26883:7;26892:6;26850:20;:49::i;:::-;26927:12;;:24;;26944:6;26927:16;:24::i;:::-;26912:12;:39;-1:-1:-1;;;;;26983:18:0;;:9;:18;;;;;;;;;;;:30;;27006:6;26983:22;:30::i;:::-;-1:-1:-1;;;;;26962:18:0;;:9;:18;;;;;;;;;;;:51;;;;27029:37;;;;;;;26962:18;;:9;;27029:37;;;;;;;;;;26687:387;;:::o;60730:724::-;60941:10;60963:4;60941:27;;60933:63;;;;;-1:-1:-1;;;60933:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61027:3;61015:8;:15;;61007:53;;;;;-1:-1:-1;;;61007:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61210:14:0;;;61118:15;61210:14;;;:7;:14;;;;;;;;;:16;;;;;;;;61093:167;;60220:66;61093:167;;;;;;;;;;;;;;;;61073:17;61093:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61308:16;;61293:47;;61326:1;61329;61332;61093:167;61293:14;:47::i;:::-;-1:-1:-1;;;;;61293:56:0;;61271:131;;;;;-1:-1:-1;;;61271:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61415:31;61424:5;61431:7;61440:5;61415:8;:31::i;:::-;60730:724;;;;;;;;:::o;21688:92::-;21749:9;:23;;-1:-1:-1;;21749:23:0;;;;;;;;;;;;21688:92::o;47244:183::-;47367:10;47350:58;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47350:58:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47350:58:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47350:58:0;;;;;;;;;47316:103;;;;-1:-1:-1;47316:10:0;;-1:-1:-1;47316:103:0;;;;-1:-1:-1;47316:103:0;:::i;70386:830::-;70663:65;70690:5;70697;70704:10;70716:11;70663:26;:65::i;:::-;70761:204;;;63373:66;70761:204;;;;-1:-1:-1;;;;;70761:204:0;;;;;;;;;;;;70741:17;70761:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71013:16;;70761:204;;;70998:47;;71031:1;71034;71037;70761:204;70998:14;:47::i;:::-;-1:-1:-1;;;;;70998:56:0;;70976:139;;;;-1:-1:-1;;;70976:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71128:38;71153:5;71160;71128:24;:38::i;:::-;71177:31;71186:5;71193:7;71202:5;71177:8;:31::i;65892:812::-;66164:64;66191:4;66197:5;66204:10;66216:11;66164:26;:64::i;:::-;66261:199;;;63088:66;66261:199;;;;-1:-1:-1;;;;;66261:199:0;;;;;;;;;;;;66241:17;66261:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66508:16;;66261:199;;;66493:47;;66526:1;66529;66532;66261:199;66493:14;:47::i;:::-;-1:-1:-1;;;;;66493:55:0;;66471:138;;;;-1:-1:-1;;;66471:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66622:37;66647:4;66653:5;66622:24;:37::i;:::-;66670:26;66680:4;66686:2;66690:5;66670:9;:26::i;58170:609::-;58214:22;58253:10;58275:4;58253:27;58249:499;;;58297:18;58318:8;;58297:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;58357:8:0;58568:17;58562:24;-1:-1:-1;;;;;58536:134:0;;-1:-1:-1;58396:289:0;;-1:-1:-1;58396:289:0;;-1:-1:-1;58726:10:0;58170:609;:::o;54314:449::-;54651:26;;;;;;;;;;54553:139;;;-1:-1:-1;;;54553:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54529:174;;;;;54492:7;;54721:34;54529:174;54747:1;54750;54753;54721:17;:34::i;:::-;54714:41;54314:449;-1:-1:-1;;;;;;;54314:449:0:o;5747:226::-;5867:7;5903:12;5895:6;;;;5887:29;;;;-1:-1:-1;;;5887:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5939:5:0;;;5747:226::o;5308:136::-;5366:7;5393:43;5397:1;5400;5393:43;;;;;;;;;;;;;;;;;:3;:43::i;36062:166::-;36150:4;36179:41;36184:3;-1:-1:-1;;;;;36204:14:0;;36179:4;:41::i;36404:172::-;36495:4;36524:44;36532:3;-1:-1:-1;;;;;36552:14:0;;36524:7;:44::i;4844:181::-;4902:7;4934:5;;;4958:6;;;;4950:46;;;;;-1:-1:-1;;;4950:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;53365:553;53731:22;;;;;;;53776:25;;;;;;;;;53653:242;;;53113:66;53653:242;;;;;;;;;;;;;;;;;;53832:4;53653:242;;;;53573:9;53653:242;;;;;;;;;;;;;;;;;;;;;;;;53625:285;;;;;;53365:553::o;72387:311::-;-1:-1:-1;;;;;72528:32:0;;72588:25;72528:32;;;:20;:32;;;;;;;;:39;;;;;;;;;;;:85;;;;;;;;;72506:184;;;;-1:-1:-1;;;72506:184:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73033:438;73241:10;73235:3;:16;73213:112;;;;-1:-1:-1;;;73213:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73350:11;73344:3;:17;73336:70;;;;-1:-1:-1;;;73336:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73417:46;73445:10;73457:5;73417:27;:46::i;73649:228::-;-1:-1:-1;;;;;73752:32:0;;;;;;:20;:32;;;;;;;;:39;;;;;;;;;:65;;-1:-1:-1;;73752:65:0;73794:23;73752:65;;;73833:36;73752:39;;:32;73833:36;;;73649:228;;:::o;35535:273::-;35676:18;;35629:7;;35676:26;-1:-1:-1;35654:110:0;;;;-1:-1:-1;;;35654:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35782:3;:11;;35794:5;35782:18;;;;;;;;;;;;;;;;35775:25;;35535:273;;;;:::o;34825:161::-;34925:4;34954:19;;;:12;;;;;:19;;;;;;:24;;;34825:161::o;91454:860::-;91878:23;91904:106;91946:4;91904:106;;;;;;;;;;;;;;;;;91912:5;-1:-1:-1;;;;;91904:27:0;;;:106;;;;;:::i;:::-;92025:17;;91878:132;;-1:-1:-1;92025:21:0;92021:286;;92198:10;92187:30;;;;;;;;;;;;;;;-1:-1:-1;92187:30:0;92161:134;;;;-1:-1:-1;;;92161:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35072:109;35155:18;;35072:109::o;50045:1587::-;50175:7;51122:66;51096:92;;51078:197;;;51215:48;;-1:-1:-1;;;51215:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51078:197;51291:1;:7;;51296:2;51291:7;;:18;;;;;51302:1;:7;;51307:2;51302:7;;51291:18;51287:99;;;51326:48;;-1:-1:-1;;;51326:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51287:99;51483:14;51500:26;51510:6;51518:1;51521;51524;51500:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51500:26:0;;-1:-1:-1;;51500:26:0;;;-1:-1:-1;;;;;;;51545:20:0;;51537:61;;;;;-1:-1:-1;;;51537:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51618:6;-1:-1:-1;50045:1587:0;;;;;;;:::o;32592:414::-;32655:4;32677:21;32687:3;32692:5;32677:9;:21::i;:::-;32672:327;;-1:-1:-1;32715:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32898:18;;32876:19;;;:12;;;:19;;;;;;:40;;;;32931:11;;32672:327;-1:-1:-1;32982:5:0;32975:12;;33182:1557;33248:4;33387:19;;;:12;;;:19;;;;;;33423:15;;33419:1313;;33871:18;;-1:-1:-1;;33822:14:0;;;;33871:22;;;;33798:21;;33871:3;;:22;;34158;;;;;;;;;;;;;;34138:42;;34304:9;34275:3;:11;;34287:13;34275:26;;;;;;;;;;;;;;;;;;;:38;;;;34381:23;;;34423:1;34381:12;;;:23;;;;;;34407:17;;;34381:43;;34533:17;;34381:3;;34533:17;;;;;;;;;;;;;;;;;;;;;;34628:3;:12;;:19;34641:5;34628:19;;;;;;;;;;;34621:26;;;34671:4;34664:11;;;;;;;;33419:1313;34715:5;34708:12;;;;;13207:230;13344:12;13376:53;13399:6;13407:4;13413:1;13416:12;15001;15034:18;15045:6;15034:10;:18::i;:::-;15026:60;;;;;-1:-1:-1;;;15026:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15160:12;15174:23;15201:6;-1:-1:-1;;;;;15201:11:0;15234:8;15254:4;15201:58;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15201:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15159:100;;;;15274:7;15270:595;;;15305:10;-1:-1:-1;15298:17:0;;-1:-1:-1;15298:17:0;15270:595;15419:17;;:21;15415:439;;15682:10;15676:17;15743:15;15730:10;15726:2;15722:19;15715:44;15630:148;15818:20;;-1:-1:-1;;;15818:20:0;;;;;;;;;;;;;;;;;15825:12;;15818:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10168:444;10548:20;10596:8;;;10168:444::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;
Swarm Source
ipfs://492e9326452cc70ce3cbc63fe2392b3afcd778b70aa095805a252595449c77a6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.