ERC-721
Overview
Max Total Supply
14 NFTXmas
Holders
13
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NFTXmasLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFTXmasTree
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-05 */ // SPDX-License-Identifier: MIT // GO TO LINE 1904 TO SEE WHERE THE TREE CONTRACT STARTS // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.6; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity >=0.6.2 <0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity >=0.6.2 <0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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 <0.8.0; /** * @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 on 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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity >=0.6.0 <0.8.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.3.0, sets of type `bytes32` (`Bytes32Set`), `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]; } // Bytes32Set struct Bytes32Set { 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, 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(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set 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(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, 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(uint160(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(uint160(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(uint160(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(uint160(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/utils/EnumerableMap.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry 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. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity >=0.6.0 <0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // Our website (https://nftxmas.net) // Xmas Tree Team: // JLong - @_jdl // MDB - @CodeByMDB // Santa Claus - North Pole pragma solidity ^0.7.0; pragma abicoder v2; contract NFTXmasTree is ERC721, Ownable { using SafeMath for uint256; string public TREE_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN TREES ARE ALL SOLD OUT uint256 public constant treePrice = 48000000000000000; // 0.048 ETH uint public constant maxTreePurchase = 20; uint256 public constant MAX_TREES = 8888; bool public saleIsActive = false; mapping(uint => string) public treeNames; // Reserve 125 trees for team - Giveaways/Prizes etc uint public treeReserve = 125; event treeNameChange(address _by, uint _tokenId, string _name); constructor() ERC721("NFTXmas.net", "NFTXmas") { } function withdraw() public onlyOwner { uint balance = address(this).balance; msg.sender.transfer(balance); } function reserveTrees(address _to, uint256 _reserveAmount) public onlyOwner { uint supply = totalSupply(); require(_reserveAmount > 0 && _reserveAmount <= treeReserve, "Not enough reserve left for team"); for (uint i = 0; i < _reserveAmount; i++) { _safeMint(_to, supply + i); } treeReserve = treeReserve.sub(_reserveAmount); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { TREE_PROVENANCE = provenanceHash; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function mintXmasTree(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint tree"); require(numberOfTokens > 0 && numberOfTokens <= maxTreePurchase, "Can only mint 20 tokens at a time"); require(totalSupply().add(numberOfTokens) <= MAX_TREES, "Purchase would exceed max supply of Trees"); require(msg.value >= treePrice.mul(numberOfTokens), "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TREES) { _safeMint(msg.sender, mintIndex); } } } function changeTreeName(uint _tokenId, string memory _name) public { require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this tree!"); require(sha256(bytes(_name)) != sha256(bytes(treeNames[_tokenId])), "New name is same as the current one"); treeNames[_tokenId] = _name; emit treeNameChange(msg.sender, _tokenId, _name); } function viewTreeName(uint _tokenId) public view returns( string memory ){ require( _tokenId < totalSupply(), "Choose a tree within range" ); return treeNames[_tokenId]; } // GET ALL TREES OF A WALLET AS AN ARRAY OF STRINGS. WOULD BE BETTER MAYBE IF IT RETURNED A STRUCT WITH ID-NAME MATCH function treeNamesOfOwner(address _owner) external view returns(string[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new string[](0); } else { string[] memory result = new string[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = treeNames[ tokenOfOwnerByIndex(_owner, index) ] ; } return result; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"treeNameChange","type":"event"},{"inputs":[],"name":"MAX_TREES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREE_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeTreeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTreePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintXmasTree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTrees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treeNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"treeNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treeReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewTreeName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b929190620002f1565b506000600c60006101000a81548160ff021916908315150217905550607d600e553480156200005957600080fd5b506040518060400160405280600b81526020017f4e4654586d61732e6e65740000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4e4654586d617300000000000000000000000000000000000000000000000000815250620000de6301ffc9a760e01b6200021160201b60201c565b8160069080519060200190620000f6929190620002f1565b5080600790805190602001906200010f929190620002f1565b50620001286380ac58cd60e01b6200021160201b60201c565b62000140635b5e139f60e01b6200021160201b60201c565b6200015863780e9d6360e01b6200021160201b60201c565b505060006200016c620002e960201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041c565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200027d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027490620003e9565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000329576000855562000375565b82601f106200034457805160ff191683800117855562000375565b8280016001018555821562000375579182015b828111156200037457825182559160200191906001019062000357565b5b50905062000384919062000388565b5090565b5b80821115620003a357600081600090555060010162000389565b5090565b6000620003b6601c836200040b565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040481620003a7565b9050919050565b600082825260208201905092915050565b614dfb806200042c6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146107e5578063e985e9c514610822578063eb8d24441461085f578063f2fde38b1461088a578063fdccb32c146108b35761021a565b8063a22cb46514610702578063a4a6709d1461072b578063ac12e9ff14610768578063b88d4fde14610791578063c151b4f8146107ba5761021a565b80637dec764a116100f25780637dec764a1461061b5780638462151c146106465780638da5cb5b146106835780639449b838146106ae57806395d89b41146106d75761021a565b80636352211e1461055f5780636c0360eb1461059c57806370a08231146105c7578063715018a6146106045761021a565b806323b872dd116101a65780633ccfd60b116101755780633ccfd60b1461048e57806342842e0e146104a55780634f6ccce7146104ce57806355f804b31461050b5780635c2a23bd146105345761021a565b806323b872dd146103d45780632afb9766146103fd5780632f745c591461043a57806334918dfd146104775761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630d2551a114610318578063109695231461035557806318160ddd1461037e5780631ed7203e146103a95761021a565b806301ffc9a71461021f5780630605f54c1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906136bc565b6108cf565b604051610253919061464d565b60405180910390f35b34801561026857600080fd5b50610271610936565b60405161027e9190614a4a565b60405180910390f35b34801561029357600080fd5b5061029c610941565b6040516102a99190614668565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061374f565b6109e3565b6040516102e69190614564565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613657565b610a68565b005b34801561032457600080fd5b5061033f600480360381019061033a91906134ec565b610b80565b60405161034c9190614609565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061370e565b610d2d565b005b34801561038a57600080fd5b50610393610dc3565b6040516103a09190614a4a565b60405180910390f35b3480156103b557600080fd5b506103be610dd4565b6040516103cb9190614a4a565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613551565b610dd9565b005b34801561040957600080fd5b50610424600480360381019061041f919061374f565b610e39565b6040516104319190614668565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613657565b610f37565b60405161046e9190614a4a565b60405180910390f35b34801561048357600080fd5b5061048c610f92565b005b34801561049a57600080fd5b506104a361103a565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613551565b611105565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061374f565b611125565b6040516105029190614a4a565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061370e565b611148565b005b34801561054057600080fd5b506105496111d0565b6040516105569190614a4a565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061374f565b6111d6565b6040516105939190614564565b60405180910390f35b3480156105a857600080fd5b506105b161120d565b6040516105be9190614668565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906134ec565b6112af565b6040516105fb9190614a4a565b60405180910390f35b34801561061057600080fd5b5061061961136e565b005b34801561062757600080fd5b506106306114ab565b60405161063d9190614668565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906134ec565b611549565b60405161067a919061462b565b60405180910390f35b34801561068f57600080fd5b50610698611642565b6040516106a59190614564565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613778565b61166c565b005b3480156106e357600080fd5b506106ec61183c565b6040516106f99190614668565b60405180910390f35b34801561070e57600080fd5b506107296004803603810190610724919061361b565b6118de565b005b34801561073757600080fd5b50610752600480360381019061074d919061374f565b611a5f565b60405161075f9190614668565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190613657565b611b0f565b005b34801561079d57600080fd5b506107b860048036038101906107b391906135a0565b611c2d565b005b3480156107c657600080fd5b506107cf611c8f565b6040516107dc9190614a4a565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061374f565b611c95565b6040516108199190614668565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190613515565b611e18565b604051610856919061464d565b60405180910390f35b34801561086b57600080fd5b50610874611eac565b604051610881919061464d565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac91906134ec565b611ebf565b005b6108cd60048036038101906108c8919061374f565b61206b565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b66aa87bee538000081565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60006109ee82612209565b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a249061492a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a73826111d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb906149ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b03612226565b73ffffffffffffffffffffffffffffffffffffffff161480610b325750610b3181610b2c612226565b611e18565b5b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061486a565b60405180910390fd5b610b7b838361222e565b505050565b60606000610b8d836112af565b90506000811415610bed57600067ffffffffffffffff81118015610bb057600080fd5b50604051908082528060200260200182016040528015610be457816020015b6060815260200190600190039081610bcf5790505b50915050610d28565b60008167ffffffffffffffff81118015610c0657600080fd5b50604051908082528060200260200182016040528015610c3a57816020015b6060815260200190600190039081610c255790505b50905060005b82811015610d2157600d6000610c568784610f37565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cf85780601f10610ccd57610100808354040283529160200191610cf8565b820191906000526020600020905b815481529060010190602001808311610cdb57829003601f168201915b5050505050828281518110610d0957fe5b60200260200101819052508080600101915050610c40565b8193505050505b919050565b610d35612226565b73ffffffffffffffffffffffffffffffffffffffff16610d53611642565b73ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061494a565b60405180910390fd5b80600b9080519060200190610dbf9291906132f3565b5050565b6000610dcf60026122e7565b905090565b601481565b610dea610de4612226565b826122fc565b610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906149ea565b60405180910390fd5b610e348383836123da565b505050565b6060610e43610dc3565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b9061472a565b60405180910390fd5b600d60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b50505050509050919050565b6000610f8a82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125f190919063ffffffff16565b905092915050565b610f9a612226565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611642565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061494a565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611042612226565b73ffffffffffffffffffffffffffffffffffffffff16611060611642565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061494a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611101573d6000803e3d6000fd5b5050565b61112083838360405180602001604052806000815250611c2d565b505050565b60008061113c83600261260b90919063ffffffff16565b50905080915050919050565b611150612226565b73ffffffffffffffffffffffffffffffffffffffff1661116e611642565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb9061494a565b60405180910390fd5b6111cd81612637565b50565b600e5481565b600061120682604051806060016040528060298152602001614d9d6029913960026126519092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112a55780601f1061127a576101008083540402835291602001916112a5565b820191906000526020600020905b81548152906001019060200180831161128857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061488a565b60405180910390fd5b611367600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612670565b9050919050565b611376612226565b73ffffffffffffffffffffffffffffffffffffffff16611394611642565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061494a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b505050505081565b60606000611556836112af565b905060008114156115b157600067ffffffffffffffff8111801561157957600080fd5b506040519080825280602002602001820160405280156115a85781602001602082028036833780820191505090505b5091505061163d565b60008167ffffffffffffffff811180156115ca57600080fd5b506040519080825280602002602001820160405280156115f95781602001602082028036833780820191505090505b50905060005b82811015611636576116118582610f37565b82828151811061161d57fe5b60200260200101818152505080806001019150506115ff565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661168c836111d6565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d9906148aa565b60405180910390fd5b6002600d60008481526020019081526020016000206040516117049190614529565b602060405180830381855afa158015611721573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117449190613693565b6002826040516117549190614512565b602060405180830381855afa158015611771573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117949190613693565b14156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906149aa565b60405180910390fd5b80600d600084815260200190815260200160002090805190602001906117fc9291906132f3565b507fbc67d2d896709afaee8112462fb5e3ec1d1353e9e589b297788fe066edf30222338383604051611830939291906145cb565b60405180910390a15050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b6118e6612226565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b9061478a565b60405180910390fd5b8060056000611961612226565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0e612226565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a53919061464d565b60405180910390a35050565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b075780601f10611adc57610100808354040283529160200191611b07565b820191906000526020600020905b815481529060010190602001808311611aea57829003601f168201915b505050505081565b611b17612226565b73ffffffffffffffffffffffffffffffffffffffff16611b35611642565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061494a565b60405180910390fd5b6000611b95610dc3565b9050600082118015611ba95750600e548211155b611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061474a565b60405180910390fd5b60005b82811015611c0c57611bff84828401612685565b8080600101915050611beb565b50611c2282600e546126a390919063ffffffff16565b600e81905550505050565b611c3e611c38612226565b836122fc565b611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906149ea565b60405180910390fd5b611c89848484846126f3565b50505050565b6122b881565b6060611ca082612209565b611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061498a565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d885780601f10611d5d57610100808354040283529160200191611d88565b820191906000526020600020905b815481529060010190602001808311611d6b57829003601f168201915b505050505090506000611d9961120d565b9050600081511415611daf578192505050611e13565b600082511115611de4578082604051602001611dcc929190614540565b60405160208183030381529060405292505050611e13565b80611dee8561274f565b604051602001611dff929190614540565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611ec7612226565b73ffffffffffffffffffffffffffffffffffffffff16611ee5611642565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f329061494a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa2906146ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff166120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b19061482a565b60405180910390fd5b6000811180156120cb575060148111155b61210a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121019061484a565b60405180910390fd5b6122b861212782612119610dc3565b61289690919063ffffffff16565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90614a2a565b60405180910390fd5b6121828166aa87bee53800006128eb90919063ffffffff16565b3410156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb906147aa565b60405180910390fd5b60005b818110156122055760006121d9610dc3565b90506122b86121e6610dc3565b10156121f7576121f63382612685565b5b5080806001019150506121c7565b5050565b600061221f82600261295b90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a1836111d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122f582600001612975565b9050919050565b600061230782612209565b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061480a565b60405180910390fd5b6000612351836111d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c057508373ffffffffffffffffffffffffffffffffffffffff166123a8846109e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d157506123d08185611e18565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123fa826111d6565b73ffffffffffffffffffffffffffffffffffffffff1614612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061496a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b79061476a565b60405180910390fd5b6124cb838383612986565b6124d660008261222e565b61252781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061298b90919063ffffffff16565b5061257981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129a590919063ffffffff16565b50612590818360026129bf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061260083600001836129f4565b60001c905092915050565b60008060008061261e8660000186612a61565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061264d9291906132f3565b5050565b6000612664846000018460001b84612ae4565b60001c90509392505050565b600061267e82600001612b75565b9050919050565b61269f828260405180602001604052806000815250612b86565b5050565b6000828211156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906147ca565b60405180910390fd5b818303905092915050565b6126fe8484846123da565b61270a84848484612be1565b612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906146aa565b60405180910390fd5b50505050565b60606000821415612797576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612891565b600082905060005b600082146127c1578080600101915050600a82816127b957fe5b04915061279f565b60008167ffffffffffffffff811180156127da57600080fd5b506040519080825280601f01601f19166020018201604052801561280d5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461288957600a848161282e57fe5b0660300160f81b8282806001900393508151811061284857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161288157fe5b04935061281c565b819450505050505b919050565b6000808284019050838110156128e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d89061470a565b60405180910390fd5b8091505092915050565b6000808314156128fe5760009050612955565b600082840290508284828161290f57fe5b0414612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061490a565b60405180910390fd5b809150505b92915050565b600061296d836000018360001b612d45565b905092915050565b600081600001805490509050919050565b505050565b600061299d836000018360001b612d68565b905092915050565b60006129b7836000018360001b612e50565b905092915050565b60006129eb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ec0565b90509392505050565b600081836000018054905011612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a369061468a565b60405180910390fd5b826000018281548110612a4e57fe5b9060005260206000200154905092915050565b60008082846000018054905011612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa4906148ca565b60405180910390fd5b6000846000018481548110612abe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d9190614668565b60405180910390fd5b50846000016001820381548110612b5957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b908383612f9c565b612b9d6000848484612be1565b612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd3906146aa565b60405180910390fd5b505050565b6000612c028473ffffffffffffffffffffffffffffffffffffffff1661312a565b612c0f5760019050612d3d565b6000612cd663150b7a0260e01b612c24612226565b888787604051602401612c3a949392919061457f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614d6b603291398773ffffffffffffffffffffffffffffffffffffffff1661313d9092919063ffffffff16565b9050600081806020019051810190612cee91906136e5565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612e445760006001820390506000600186600001805490500390506000866000018281548110612db357fe5b9060005260206000200154905080876000018481548110612dd057fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612e0857fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612e4a565b60009150505b92915050565b6000612e5c8383613155565b612eb5578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612eba565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612f6757846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f95565b82856000016001830381548110612f7a57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561300c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613003906148ea565b60405180910390fd5b61301581612209565b15613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c906146ea565b60405180910390fd5b61306160008383612986565b6130b281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129a590919063ffffffff16565b506130c9818360026129bf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061314c8484600085613178565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b4906147ea565b60405180910390fd5b6131c68561312a565b613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614a0a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161322e9190614512565b60006040518083038185875af1925050503d806000811461326b576040519150601f19603f3d011682016040523d82523d6000602084013e613270565b606091505b509150915061328082828661328c565b92505050949350505050565b6060831561329c578290506132ec565b6000835111156132af5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e39190614668565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826133295760008555613370565b82601f1061334257805160ff1916838001178555613370565b82800160010185558215613370579182015b8281111561336f578251825591602001919060010190613354565b5b50905061337d9190613381565b5090565b5b8082111561339a576000816000905550600101613382565b5090565b60006133b16133ac84614a96565b614a65565b9050828152602081018484840111156133c957600080fd5b6133d4848285614ca2565b509392505050565b60006133ef6133ea84614ac6565b614a65565b90508281526020810184848401111561340757600080fd5b613412848285614ca2565b509392505050565b60008135905061342981614cf7565b92915050565b60008135905061343e81614d0e565b92915050565b60008151905061345381614d25565b92915050565b60008135905061346881614d3c565b92915050565b60008151905061347d81614d3c565b92915050565b600082601f83011261349457600080fd5b81356134a484826020860161339e565b91505092915050565b600082601f8301126134be57600080fd5b81356134ce8482602086016133dc565b91505092915050565b6000813590506134e681614d53565b92915050565b6000602082840312156134fe57600080fd5b600061350c8482850161341a565b91505092915050565b6000806040838503121561352857600080fd5b60006135368582860161341a565b92505060206135478582860161341a565b9150509250929050565b60008060006060848603121561356657600080fd5b60006135748682870161341a565b93505060206135858682870161341a565b9250506040613596868287016134d7565b9150509250925092565b600080600080608085870312156135b657600080fd5b60006135c48782880161341a565b94505060206135d58782880161341a565b93505060406135e6878288016134d7565b925050606085013567ffffffffffffffff81111561360357600080fd5b61360f87828801613483565b91505092959194509250565b6000806040838503121561362e57600080fd5b600061363c8582860161341a565b925050602061364d8582860161342f565b9150509250929050565b6000806040838503121561366a57600080fd5b60006136788582860161341a565b9250506020613689858286016134d7565b9150509250929050565b6000602082840312156136a557600080fd5b60006136b384828501613444565b91505092915050565b6000602082840312156136ce57600080fd5b60006136dc84828501613459565b91505092915050565b6000602082840312156136f757600080fd5b60006137058482850161346e565b91505092915050565b60006020828403121561372057600080fd5b600082013567ffffffffffffffff81111561373a57600080fd5b613746848285016134ad565b91505092915050565b60006020828403121561376157600080fd5b600061376f848285016134d7565b91505092915050565b6000806040838503121561378b57600080fd5b6000613799858286016134d7565b925050602083013567ffffffffffffffff8111156137b657600080fd5b6137c2858286016134ad565b9150509250929050565b60006137d883836139ff565b905092915050565b60006137ec83836144f4565b60208301905092915050565b61380181614c6c565b82525050565b61381081614bee565b82525050565b61381f81614bdc565b82525050565b600061383082614b2b565b61383a8185614b71565b93508360208202850161384c85614af6565b8060005b85811015613888578484038952815161386985826137cc565b945061387483614b57565b925060208a01995050600181019050613850565b50829750879550505050505092915050565b60006138a582614b36565b6138af8185614b82565b93506138ba83614b06565b8060005b838110156138eb5781516138d288826137e0565b97506138dd83614b64565b9250506001810190506138be565b5085935050505092915050565b61390181614c00565b82525050565b600061391282614b41565b61391c8185614b93565b935061392c818560208601614cb1565b61393581614ce6565b840191505092915050565b600061394b82614b41565b6139558185614ba4565b9350613965818560208601614cb1565b80840191505092915050565b60008154600181166000811461398e57600181146139b3576139f7565b607f600283041661399f8187614ba4565b955060ff19831686528086019350506139f7565b600282046139c18187614ba4565b95506139cc85614b16565b60005b828110156139ee578154818901526001820191506020810190506139cf565b82880195505050505b505092915050565b6000613a0a82614b4c565b613a148185614baf565b9350613a24818560208601614cb1565b613a2d81614ce6565b840191505092915050565b6000613a4382614b4c565b613a4d8185614bc0565b9350613a5d818560208601614cb1565b613a6681614ce6565b840191505092915050565b6000613a7c82614b4c565b613a868185614bd1565b9350613a96818560208601614cb1565b80840191505092915050565b6000613aaf602283614bc0565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b15603283614bc0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613b7b602683614bc0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be1601c83614bc0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c21601b83614bc0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613c61601a83614bc0565b91507f43686f6f7365206120747265652077697468696e2072616e67650000000000006000830152602082019050919050565b6000613ca1602083614bc0565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613ce1602483614bc0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d47601983614bc0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613d87601f83614bc0565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613dc7601e83614bc0565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613e07602683614bc0565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6d602c83614bc0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ed3602083614bc0565b91507f53616c65206d7573742062652061637469766520746f206d696e7420747265656000830152602082019050919050565b6000613f13602183614bc0565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f79603883614bc0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613fdf602a83614bc0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614045602783614bc0565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73207472656521000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ab602283614bc0565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614111602083614bc0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614151602183614bc0565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b7602c83614bc0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061421d602083614bc0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061425d602983614bc0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c3602f83614bc0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614329602383614bc0565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061438f602183614bc0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143f5603183614bc0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061445b601d83614bc0565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061449b602983614bc0565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620547265657300000000000000000000000000000000000000000000006020830152604082019050919050565b6144fd81614c62565b82525050565b61450c81614c62565b82525050565b600061451e8284613940565b915081905092915050565b60006145358284613971565b915081905092915050565b600061454c8285613a71565b91506145588284613a71565b91508190509392505050565b60006020820190506145796000830184613816565b92915050565b60006080820190506145946000830187613807565b6145a16020830186613816565b6145ae6040830185614503565b81810360608301526145c08184613907565b905095945050505050565b60006060820190506145e060008301866137f8565b6145ed6020830185614503565b81810360408301526145ff8184613a38565b9050949350505050565b600060208201905081810360008301526146238184613825565b905092915050565b60006020820190508181036000830152614645818461389a565b905092915050565b600060208201905061466260008301846138f8565b92915050565b600060208201905081810360008301526146828184613a38565b905092915050565b600060208201905081810360008301526146a381613aa2565b9050919050565b600060208201905081810360008301526146c381613b08565b9050919050565b600060208201905081810360008301526146e381613b6e565b9050919050565b6000602082019050818103600083015261470381613bd4565b9050919050565b6000602082019050818103600083015261472381613c14565b9050919050565b6000602082019050818103600083015261474381613c54565b9050919050565b6000602082019050818103600083015261476381613c94565b9050919050565b6000602082019050818103600083015261478381613cd4565b9050919050565b600060208201905081810360008301526147a381613d3a565b9050919050565b600060208201905081810360008301526147c381613d7a565b9050919050565b600060208201905081810360008301526147e381613dba565b9050919050565b6000602082019050818103600083015261480381613dfa565b9050919050565b6000602082019050818103600083015261482381613e60565b9050919050565b6000602082019050818103600083015261484381613ec6565b9050919050565b6000602082019050818103600083015261486381613f06565b9050919050565b6000602082019050818103600083015261488381613f6c565b9050919050565b600060208201905081810360008301526148a381613fd2565b9050919050565b600060208201905081810360008301526148c381614038565b9050919050565b600060208201905081810360008301526148e38161409e565b9050919050565b6000602082019050818103600083015261490381614104565b9050919050565b6000602082019050818103600083015261492381614144565b9050919050565b60006020820190508181036000830152614943816141aa565b9050919050565b6000602082019050818103600083015261496381614210565b9050919050565b6000602082019050818103600083015261498381614250565b9050919050565b600060208201905081810360008301526149a3816142b6565b9050919050565b600060208201905081810360008301526149c38161431c565b9050919050565b600060208201905081810360008301526149e381614382565b9050919050565b60006020820190508181036000830152614a03816143e8565b9050919050565b60006020820190508181036000830152614a238161444e565b9050919050565b60006020820190508181036000830152614a438161448e565b9050919050565b6000602082019050614a5f6000830184614503565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a8c57614a8b614ce4565b5b8060405250919050565b600067ffffffffffffffff821115614ab157614ab0614ce4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ae157614ae0614ce4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614be782614c42565b9050919050565b6000614bf982614c42565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614c7782614c7e565b9050919050565b6000614c8982614c90565b9050919050565b6000614c9b82614c42565b9050919050565b82818337600083830152505050565b60005b83811015614ccf578082015181840152602081019050614cb4565b83811115614cde576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614d0081614bdc565b8114614d0b57600080fd5b50565b614d1781614c00565b8114614d2257600080fd5b50565b614d2e81614c0c565b8114614d3957600080fd5b50565b614d4581614c16565b8114614d5057600080fd5b50565b614d5c81614c62565b8114614d6757600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220eb0609629345eb2ad9aa8aa934f3dc8420d010fa303653b8ab49b8c6d1db757c64736f6c63430007060033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146107e5578063e985e9c514610822578063eb8d24441461085f578063f2fde38b1461088a578063fdccb32c146108b35761021a565b8063a22cb46514610702578063a4a6709d1461072b578063ac12e9ff14610768578063b88d4fde14610791578063c151b4f8146107ba5761021a565b80637dec764a116100f25780637dec764a1461061b5780638462151c146106465780638da5cb5b146106835780639449b838146106ae57806395d89b41146106d75761021a565b80636352211e1461055f5780636c0360eb1461059c57806370a08231146105c7578063715018a6146106045761021a565b806323b872dd116101a65780633ccfd60b116101755780633ccfd60b1461048e57806342842e0e146104a55780634f6ccce7146104ce57806355f804b31461050b5780635c2a23bd146105345761021a565b806323b872dd146103d45780632afb9766146103fd5780632f745c591461043a57806334918dfd146104775761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630d2551a114610318578063109695231461035557806318160ddd1461037e5780631ed7203e146103a95761021a565b806301ffc9a71461021f5780630605f54c1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906136bc565b6108cf565b604051610253919061464d565b60405180910390f35b34801561026857600080fd5b50610271610936565b60405161027e9190614a4a565b60405180910390f35b34801561029357600080fd5b5061029c610941565b6040516102a99190614668565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061374f565b6109e3565b6040516102e69190614564565b60405180910390f35b3480156102fb57600080fd5b5061031660048036038101906103119190613657565b610a68565b005b34801561032457600080fd5b5061033f600480360381019061033a91906134ec565b610b80565b60405161034c9190614609565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061370e565b610d2d565b005b34801561038a57600080fd5b50610393610dc3565b6040516103a09190614a4a565b60405180910390f35b3480156103b557600080fd5b506103be610dd4565b6040516103cb9190614a4a565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613551565b610dd9565b005b34801561040957600080fd5b50610424600480360381019061041f919061374f565b610e39565b6040516104319190614668565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613657565b610f37565b60405161046e9190614a4a565b60405180910390f35b34801561048357600080fd5b5061048c610f92565b005b34801561049a57600080fd5b506104a361103a565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613551565b611105565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061374f565b611125565b6040516105029190614a4a565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061370e565b611148565b005b34801561054057600080fd5b506105496111d0565b6040516105569190614a4a565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061374f565b6111d6565b6040516105939190614564565b60405180910390f35b3480156105a857600080fd5b506105b161120d565b6040516105be9190614668565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906134ec565b6112af565b6040516105fb9190614a4a565b60405180910390f35b34801561061057600080fd5b5061061961136e565b005b34801561062757600080fd5b506106306114ab565b60405161063d9190614668565b60405180910390f35b34801561065257600080fd5b5061066d600480360381019061066891906134ec565b611549565b60405161067a919061462b565b60405180910390f35b34801561068f57600080fd5b50610698611642565b6040516106a59190614564565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613778565b61166c565b005b3480156106e357600080fd5b506106ec61183c565b6040516106f99190614668565b60405180910390f35b34801561070e57600080fd5b506107296004803603810190610724919061361b565b6118de565b005b34801561073757600080fd5b50610752600480360381019061074d919061374f565b611a5f565b60405161075f9190614668565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a9190613657565b611b0f565b005b34801561079d57600080fd5b506107b860048036038101906107b391906135a0565b611c2d565b005b3480156107c657600080fd5b506107cf611c8f565b6040516107dc9190614a4a565b60405180910390f35b3480156107f157600080fd5b5061080c6004803603810190610807919061374f565b611c95565b6040516108199190614668565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190613515565b611e18565b604051610856919061464d565b60405180910390f35b34801561086b57600080fd5b50610874611eac565b604051610881919061464d565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac91906134ec565b611ebf565b005b6108cd60048036038101906108c8919061374f565b61206b565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b66aa87bee538000081565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60006109ee82612209565b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a249061492a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a73826111d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb906149ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b03612226565b73ffffffffffffffffffffffffffffffffffffffff161480610b325750610b3181610b2c612226565b611e18565b5b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061486a565b60405180910390fd5b610b7b838361222e565b505050565b60606000610b8d836112af565b90506000811415610bed57600067ffffffffffffffff81118015610bb057600080fd5b50604051908082528060200260200182016040528015610be457816020015b6060815260200190600190039081610bcf5790505b50915050610d28565b60008167ffffffffffffffff81118015610c0657600080fd5b50604051908082528060200260200182016040528015610c3a57816020015b6060815260200190600190039081610c255790505b50905060005b82811015610d2157600d6000610c568784610f37565b81526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cf85780601f10610ccd57610100808354040283529160200191610cf8565b820191906000526020600020905b815481529060010190602001808311610cdb57829003601f168201915b5050505050828281518110610d0957fe5b60200260200101819052508080600101915050610c40565b8193505050505b919050565b610d35612226565b73ffffffffffffffffffffffffffffffffffffffff16610d53611642565b73ffffffffffffffffffffffffffffffffffffffff1614610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061494a565b60405180910390fd5b80600b9080519060200190610dbf9291906132f3565b5050565b6000610dcf60026122e7565b905090565b601481565b610dea610de4612226565b826122fc565b610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906149ea565b60405180910390fd5b610e348383836123da565b505050565b6060610e43610dc3565b8210610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b9061472a565b60405180910390fd5b600d60008381526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f2b5780601f10610f0057610100808354040283529160200191610f2b565b820191906000526020600020905b815481529060010190602001808311610f0e57829003601f168201915b50505050509050919050565b6000610f8a82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125f190919063ffffffff16565b905092915050565b610f9a612226565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611642565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061494a565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611042612226565b73ffffffffffffffffffffffffffffffffffffffff16611060611642565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061494a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611101573d6000803e3d6000fd5b5050565b61112083838360405180602001604052806000815250611c2d565b505050565b60008061113c83600261260b90919063ffffffff16565b50905080915050919050565b611150612226565b73ffffffffffffffffffffffffffffffffffffffff1661116e611642565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb9061494a565b60405180910390fd5b6111cd81612637565b50565b600e5481565b600061120682604051806060016040528060298152602001614d9d6029913960026126519092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112a55780601f1061127a576101008083540402835291602001916112a5565b820191906000526020600020905b81548152906001019060200180831161128857829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113179061488a565b60405180910390fd5b611367600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612670565b9050919050565b611376612226565b73ffffffffffffffffffffffffffffffffffffffff16611394611642565b73ffffffffffffffffffffffffffffffffffffffff16146113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061494a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115415780601f1061151657610100808354040283529160200191611541565b820191906000526020600020905b81548152906001019060200180831161152457829003601f168201915b505050505081565b60606000611556836112af565b905060008114156115b157600067ffffffffffffffff8111801561157957600080fd5b506040519080825280602002602001820160405280156115a85781602001602082028036833780820191505090505b5091505061163d565b60008167ffffffffffffffff811180156115ca57600080fd5b506040519080825280602002602001820160405280156115f95781602001602082028036833780820191505090505b50905060005b82811015611636576116118582610f37565b82828151811061161d57fe5b60200260200101818152505080806001019150506115ff565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661168c836111d6565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d9906148aa565b60405180910390fd5b6002600d60008481526020019081526020016000206040516117049190614529565b602060405180830381855afa158015611721573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117449190613693565b6002826040516117549190614512565b602060405180830381855afa158015611771573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117949190613693565b14156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906149aa565b60405180910390fd5b80600d600084815260200190815260200160002090805190602001906117fc9291906132f3565b507fbc67d2d896709afaee8112462fb5e3ec1d1353e9e589b297788fe066edf30222338383604051611830939291906145cb565b60405180910390a15050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b6118e6612226565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b9061478a565b60405180910390fd5b8060056000611961612226565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0e612226565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a53919061464d565b60405180910390a35050565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b075780601f10611adc57610100808354040283529160200191611b07565b820191906000526020600020905b815481529060010190602001808311611aea57829003601f168201915b505050505081565b611b17612226565b73ffffffffffffffffffffffffffffffffffffffff16611b35611642565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061494a565b60405180910390fd5b6000611b95610dc3565b9050600082118015611ba95750600e548211155b611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf9061474a565b60405180910390fd5b60005b82811015611c0c57611bff84828401612685565b8080600101915050611beb565b50611c2282600e546126a390919063ffffffff16565b600e81905550505050565b611c3e611c38612226565b836122fc565b611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c74906149ea565b60405180910390fd5b611c89848484846126f3565b50505050565b6122b881565b6060611ca082612209565b611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd69061498a565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d885780601f10611d5d57610100808354040283529160200191611d88565b820191906000526020600020905b815481529060010190602001808311611d6b57829003601f168201915b505050505090506000611d9961120d565b9050600081511415611daf578192505050611e13565b600082511115611de4578082604051602001611dcc929190614540565b60405160208183030381529060405292505050611e13565b80611dee8561274f565b604051602001611dff929190614540565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611ec7612226565b73ffffffffffffffffffffffffffffffffffffffff16611ee5611642565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f329061494a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa2906146ca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900460ff166120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b19061482a565b60405180910390fd5b6000811180156120cb575060148111155b61210a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121019061484a565b60405180910390fd5b6122b861212782612119610dc3565b61289690919063ffffffff16565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f90614a2a565b60405180910390fd5b6121828166aa87bee53800006128eb90919063ffffffff16565b3410156121c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bb906147aa565b60405180910390fd5b60005b818110156122055760006121d9610dc3565b90506122b86121e6610dc3565b10156121f7576121f63382612685565b5b5080806001019150506121c7565b5050565b600061221f82600261295b90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a1836111d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122f582600001612975565b9050919050565b600061230782612209565b612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061480a565b60405180910390fd5b6000612351836111d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c057508373ffffffffffffffffffffffffffffffffffffffff166123a8846109e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d157506123d08185611e18565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123fa826111d6565b73ffffffffffffffffffffffffffffffffffffffff1614612450576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124479061496a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b79061476a565b60405180910390fd5b6124cb838383612986565b6124d660008261222e565b61252781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061298b90919063ffffffff16565b5061257981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129a590919063ffffffff16565b50612590818360026129bf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061260083600001836129f4565b60001c905092915050565b60008060008061261e8660000186612a61565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061264d9291906132f3565b5050565b6000612664846000018460001b84612ae4565b60001c90509392505050565b600061267e82600001612b75565b9050919050565b61269f828260405180602001604052806000815250612b86565b5050565b6000828211156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906147ca565b60405180910390fd5b818303905092915050565b6126fe8484846123da565b61270a84848484612be1565b612749576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612740906146aa565b60405180910390fd5b50505050565b60606000821415612797576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612891565b600082905060005b600082146127c1578080600101915050600a82816127b957fe5b04915061279f565b60008167ffffffffffffffff811180156127da57600080fd5b506040519080825280601f01601f19166020018201604052801561280d5781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461288957600a848161282e57fe5b0660300160f81b8282806001900393508151811061284857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161288157fe5b04935061281c565b819450505050505b919050565b6000808284019050838110156128e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d89061470a565b60405180910390fd5b8091505092915050565b6000808314156128fe5760009050612955565b600082840290508284828161290f57fe5b0414612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061490a565b60405180910390fd5b809150505b92915050565b600061296d836000018360001b612d45565b905092915050565b600081600001805490509050919050565b505050565b600061299d836000018360001b612d68565b905092915050565b60006129b7836000018360001b612e50565b905092915050565b60006129eb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612ec0565b90509392505050565b600081836000018054905011612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a369061468a565b60405180910390fd5b826000018281548110612a4e57fe5b9060005260206000200154905092915050565b60008082846000018054905011612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa4906148ca565b60405180910390fd5b6000846000018481548110612abe57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3d9190614668565b60405180910390fd5b50846000016001820381548110612b5957fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b612b908383612f9c565b612b9d6000848484612be1565b612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd3906146aa565b60405180910390fd5b505050565b6000612c028473ffffffffffffffffffffffffffffffffffffffff1661312a565b612c0f5760019050612d3d565b6000612cd663150b7a0260e01b612c24612226565b888787604051602401612c3a949392919061457f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614d6b603291398773ffffffffffffffffffffffffffffffffffffffff1661313d9092919063ffffffff16565b9050600081806020019051810190612cee91906136e5565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612e445760006001820390506000600186600001805490500390506000866000018281548110612db357fe5b9060005260206000200154905080876000018481548110612dd057fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612e0857fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612e4a565b60009150505b92915050565b6000612e5c8383613155565b612eb5578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612eba565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612f6757846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612f95565b82856000016001830381548110612f7a57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561300c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613003906148ea565b60405180910390fd5b61301581612209565b15613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c906146ea565b60405180910390fd5b61306160008383612986565b6130b281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129a590919063ffffffff16565b506130c9818360026129bf9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606061314c8484600085613178565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b4906147ea565b60405180910390fd5b6131c68561312a565b613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614a0a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161322e9190614512565b60006040518083038185875af1925050503d806000811461326b576040519150601f19603f3d011682016040523d82523d6000602084013e613270565b606091505b509150915061328082828661328c565b92505050949350505050565b6060831561329c578290506132ec565b6000835111156132af5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e39190614668565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826133295760008555613370565b82601f1061334257805160ff1916838001178555613370565b82800160010185558215613370579182015b8281111561336f578251825591602001919060010190613354565b5b50905061337d9190613381565b5090565b5b8082111561339a576000816000905550600101613382565b5090565b60006133b16133ac84614a96565b614a65565b9050828152602081018484840111156133c957600080fd5b6133d4848285614ca2565b509392505050565b60006133ef6133ea84614ac6565b614a65565b90508281526020810184848401111561340757600080fd5b613412848285614ca2565b509392505050565b60008135905061342981614cf7565b92915050565b60008135905061343e81614d0e565b92915050565b60008151905061345381614d25565b92915050565b60008135905061346881614d3c565b92915050565b60008151905061347d81614d3c565b92915050565b600082601f83011261349457600080fd5b81356134a484826020860161339e565b91505092915050565b600082601f8301126134be57600080fd5b81356134ce8482602086016133dc565b91505092915050565b6000813590506134e681614d53565b92915050565b6000602082840312156134fe57600080fd5b600061350c8482850161341a565b91505092915050565b6000806040838503121561352857600080fd5b60006135368582860161341a565b92505060206135478582860161341a565b9150509250929050565b60008060006060848603121561356657600080fd5b60006135748682870161341a565b93505060206135858682870161341a565b9250506040613596868287016134d7565b9150509250925092565b600080600080608085870312156135b657600080fd5b60006135c48782880161341a565b94505060206135d58782880161341a565b93505060406135e6878288016134d7565b925050606085013567ffffffffffffffff81111561360357600080fd5b61360f87828801613483565b91505092959194509250565b6000806040838503121561362e57600080fd5b600061363c8582860161341a565b925050602061364d8582860161342f565b9150509250929050565b6000806040838503121561366a57600080fd5b60006136788582860161341a565b9250506020613689858286016134d7565b9150509250929050565b6000602082840312156136a557600080fd5b60006136b384828501613444565b91505092915050565b6000602082840312156136ce57600080fd5b60006136dc84828501613459565b91505092915050565b6000602082840312156136f757600080fd5b60006137058482850161346e565b91505092915050565b60006020828403121561372057600080fd5b600082013567ffffffffffffffff81111561373a57600080fd5b613746848285016134ad565b91505092915050565b60006020828403121561376157600080fd5b600061376f848285016134d7565b91505092915050565b6000806040838503121561378b57600080fd5b6000613799858286016134d7565b925050602083013567ffffffffffffffff8111156137b657600080fd5b6137c2858286016134ad565b9150509250929050565b60006137d883836139ff565b905092915050565b60006137ec83836144f4565b60208301905092915050565b61380181614c6c565b82525050565b61381081614bee565b82525050565b61381f81614bdc565b82525050565b600061383082614b2b565b61383a8185614b71565b93508360208202850161384c85614af6565b8060005b85811015613888578484038952815161386985826137cc565b945061387483614b57565b925060208a01995050600181019050613850565b50829750879550505050505092915050565b60006138a582614b36565b6138af8185614b82565b93506138ba83614b06565b8060005b838110156138eb5781516138d288826137e0565b97506138dd83614b64565b9250506001810190506138be565b5085935050505092915050565b61390181614c00565b82525050565b600061391282614b41565b61391c8185614b93565b935061392c818560208601614cb1565b61393581614ce6565b840191505092915050565b600061394b82614b41565b6139558185614ba4565b9350613965818560208601614cb1565b80840191505092915050565b60008154600181166000811461398e57600181146139b3576139f7565b607f600283041661399f8187614ba4565b955060ff19831686528086019350506139f7565b600282046139c18187614ba4565b95506139cc85614b16565b60005b828110156139ee578154818901526001820191506020810190506139cf565b82880195505050505b505092915050565b6000613a0a82614b4c565b613a148185614baf565b9350613a24818560208601614cb1565b613a2d81614ce6565b840191505092915050565b6000613a4382614b4c565b613a4d8185614bc0565b9350613a5d818560208601614cb1565b613a6681614ce6565b840191505092915050565b6000613a7c82614b4c565b613a868185614bd1565b9350613a96818560208601614cb1565b80840191505092915050565b6000613aaf602283614bc0565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b15603283614bc0565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613b7b602683614bc0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be1601c83614bc0565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613c21601b83614bc0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613c61601a83614bc0565b91507f43686f6f7365206120747265652077697468696e2072616e67650000000000006000830152602082019050919050565b6000613ca1602083614bc0565b91507f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6000830152602082019050919050565b6000613ce1602483614bc0565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d47601983614bc0565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613d87601f83614bc0565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613dc7601e83614bc0565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000613e07602683614bc0565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6d602c83614bc0565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613ed3602083614bc0565b91507f53616c65206d7573742062652061637469766520746f206d696e7420747265656000830152602082019050919050565b6000613f13602183614bc0565b91507f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f79603883614bc0565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613fdf602a83614bc0565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614045602783614bc0565b91507f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960008301527f73207472656521000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ab602283614bc0565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614111602083614bc0565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614151602183614bc0565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141b7602c83614bc0565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061421d602083614bc0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061425d602983614bc0565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142c3602f83614bc0565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614329602383614bc0565b91507f4e6577206e616d652069732073616d65206173207468652063757272656e742060008301527f6f6e6500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061438f602183614bc0565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143f5603183614bc0565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061445b601d83614bc0565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061449b602983614bc0565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620547265657300000000000000000000000000000000000000000000006020830152604082019050919050565b6144fd81614c62565b82525050565b61450c81614c62565b82525050565b600061451e8284613940565b915081905092915050565b60006145358284613971565b915081905092915050565b600061454c8285613a71565b91506145588284613a71565b91508190509392505050565b60006020820190506145796000830184613816565b92915050565b60006080820190506145946000830187613807565b6145a16020830186613816565b6145ae6040830185614503565b81810360608301526145c08184613907565b905095945050505050565b60006060820190506145e060008301866137f8565b6145ed6020830185614503565b81810360408301526145ff8184613a38565b9050949350505050565b600060208201905081810360008301526146238184613825565b905092915050565b60006020820190508181036000830152614645818461389a565b905092915050565b600060208201905061466260008301846138f8565b92915050565b600060208201905081810360008301526146828184613a38565b905092915050565b600060208201905081810360008301526146a381613aa2565b9050919050565b600060208201905081810360008301526146c381613b08565b9050919050565b600060208201905081810360008301526146e381613b6e565b9050919050565b6000602082019050818103600083015261470381613bd4565b9050919050565b6000602082019050818103600083015261472381613c14565b9050919050565b6000602082019050818103600083015261474381613c54565b9050919050565b6000602082019050818103600083015261476381613c94565b9050919050565b6000602082019050818103600083015261478381613cd4565b9050919050565b600060208201905081810360008301526147a381613d3a565b9050919050565b600060208201905081810360008301526147c381613d7a565b9050919050565b600060208201905081810360008301526147e381613dba565b9050919050565b6000602082019050818103600083015261480381613dfa565b9050919050565b6000602082019050818103600083015261482381613e60565b9050919050565b6000602082019050818103600083015261484381613ec6565b9050919050565b6000602082019050818103600083015261486381613f06565b9050919050565b6000602082019050818103600083015261488381613f6c565b9050919050565b600060208201905081810360008301526148a381613fd2565b9050919050565b600060208201905081810360008301526148c381614038565b9050919050565b600060208201905081810360008301526148e38161409e565b9050919050565b6000602082019050818103600083015261490381614104565b9050919050565b6000602082019050818103600083015261492381614144565b9050919050565b60006020820190508181036000830152614943816141aa565b9050919050565b6000602082019050818103600083015261496381614210565b9050919050565b6000602082019050818103600083015261498381614250565b9050919050565b600060208201905081810360008301526149a3816142b6565b9050919050565b600060208201905081810360008301526149c38161431c565b9050919050565b600060208201905081810360008301526149e381614382565b9050919050565b60006020820190508181036000830152614a03816143e8565b9050919050565b60006020820190508181036000830152614a238161444e565b9050919050565b60006020820190508181036000830152614a438161448e565b9050919050565b6000602082019050614a5f6000830184614503565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a8c57614a8b614ce4565b5b8060405250919050565b600067ffffffffffffffff821115614ab157614ab0614ce4565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ae157614ae0614ce4565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614be782614c42565b9050919050565b6000614bf982614c42565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614c7782614c7e565b9050919050565b6000614c8982614c90565b9050919050565b6000614c9b82614c42565b9050919050565b82818337600083830152505050565b60005b83811015614ccf578082015181840152602081019050614cb4565b83811115614cde576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b614d0081614bdc565b8114614d0b57600080fd5b50565b614d1781614c00565b8114614d2257600080fd5b50565b614d2e81614c0c565b8114614d3957600080fd5b50565b614d4581614c16565b8114614d5057600080fd5b50565b614d5c81614c62565b8114614d6757600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220eb0609629345eb2ad9aa8aa934f3dc8420d010fa303653b8ab49b8c6d1db757c64736f6c63430007060033
Deployed Bytecode Sourcemap
67034:4157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10296:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67219:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51581:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54367:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53897:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70629:553;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68279:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53375:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67294:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55257:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70294:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53137:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68521:89;;;;;;;;;;;;;:::i;:::-;;67728:131;;;;;;;;;;;;;:::i;:::-;;55633:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53663:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68412:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67549:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51337:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52956:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51054:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66292:148;;;;;;;;;;;;;:::i;:::-;;67122:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68628:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65641:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69879:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51750:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54660:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67438:40;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67871:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55855:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67344:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51925:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55026:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67393:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66595:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69180:686;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10296:150;10381:4;10405:20;:33;10426:11;10405:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10398:40;;10296:150;;;:::o;67219:53::-;67255:17;67219:53;:::o;51581:100::-;51635:13;51668:5;51661:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51581:100;:::o;54367:221::-;54443:7;54471:16;54479:7;54471;:16::i;:::-;54463:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54556:15;:24;54572:7;54556:24;;;;;;;;;;;;;;;;;;;;;54549:31;;54367:221;;;:::o;53897:404::-;53978:13;53994:23;54009:7;53994:14;:23::i;:::-;53978:39;;54042:5;54036:11;;:2;:11;;;;54028:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54122:5;54106:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54131:44;54155:5;54162:12;:10;:12::i;:::-;54131:23;:44::i;:::-;54106:69;54098:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54272:21;54281:2;54285:7;54272:8;:21::i;:::-;53897:404;;;:::o;70629:553::-;70693:15;70722:18;70743:17;70753:6;70743:9;:17::i;:::-;70722:38;;70789:1;70775:10;:15;70771:404;;;70865:1;70852:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70845:22;;;;;70771:404;70900:22;70938:10;70925:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70900:49;;70964:13;70992:144;71016:10;71008:5;:18;70992:144;;;71072:9;:47;71083:34;71103:6;71111:5;71083:19;:34::i;:::-;71072:47;;;;;;;;;;;71056:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71063:5;71056:13;;;;;;;;;;;;;:63;;;;71028:7;;;;;;;70992:144;;;71157:6;71150:13;;;;;70629:553;;;;:::o;68279:125::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68382:14:::1;68364:15;:32;;;;;;;;;;;;:::i;:::-;;68279:125:::0;:::o;53375:211::-;53436:7;53557:21;:12;:19;:21::i;:::-;53550:28;;53375:211;:::o;67294:41::-;67333:2;67294:41;:::o;55257:305::-;55418:41;55437:12;:10;:12::i;:::-;55451:7;55418:18;:41::i;:::-;55410:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:28;55536:4;55542:2;55546:7;55526:9;:28::i;:::-;55257:305;;;:::o;70294:194::-;70352:13;70398;:11;:13::i;:::-;70387:8;:24;70378:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70461:9;:19;70471:8;70461:19;;;;;;;;;;;70454:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70294:194;;;:::o;53137:162::-;53234:7;53261:30;53285:5;53261:13;:20;53275:5;53261:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53254:37;;53137:162;;;;:::o;68521:89::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68590:12:::1;;;;;;;;;;;68589:13;68574:12;;:28;;;;;;;;;;;;;;;;;;68521:89::o:0;67728:131::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67776:12:::1;67791:21;67776:36;;67823:10;:19;;:28;67843:7;67823:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65932:1;67728:131::o:0;55633:151::-;55737:39;55754:4;55760:2;55764:7;55737:39;;;;;;;;;;;;:16;:39::i;:::-;55633:151;;;:::o;53663:172::-;53738:7;53759:15;53780:22;53796:5;53780:12;:15;;:22;;;;:::i;:::-;53758:44;;;53820:7;53813:14;;;53663:172;;;:::o;68412:99::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68483:20:::1;68495:7;68483:11;:20::i;:::-;68412:99:::0;:::o;67549:29::-;;;;:::o;51337:177::-;51409:7;51436:70;51453:7;51436:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51429:77;;51337:177;;;:::o;52956:97::-;53004:13;53037:8;53030:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52956:97;:::o;51054:221::-;51126:7;51171:1;51154:19;;:5;:19;;;;51146:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51238:29;:13;:20;51252:5;51238:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51231:36;;51054:221;;;:::o;66292:148::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66399:1:::1;66362:40;;66383:6;;;;;;;;;;;66362:40;;;;;;;;;;;;66430:1;66413:6;;:19;;;;;;;;;;;;;;;;;;66292:148::o:0;67122:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68628:540::-;68689:16;68719:18;68740:17;68750:6;68740:9;:17::i;:::-;68719:38;;68786:1;68772:10;:15;68768:393;;;68863:1;68849:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68842:23;;;;;68768:393;68898:23;68938:10;68924:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68898:51;;68964:13;68992:130;69016:10;69008:5;:18;68992:130;;;69072:34;69092:6;69100:5;69072:19;:34::i;:::-;69056:6;69063:5;69056:13;;;;;;;;;;;;;:50;;;;;69028:7;;;;;;;68992:130;;;69143:6;69136:13;;;;;68628:540;;;;:::o;65641:87::-;65687:7;65714:6;;;;;;;;;;;65707:13;;65641:87;:::o;69879:403::-;69986:10;69965:31;;:17;69973:8;69965:7;:17::i;:::-;:31;;;69957:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;70083:34;70096:9;:19;70106:8;70096:19;;;;;;;;;;;70083:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70059:20;70072:5;70059:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;70051:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;70190:5;70168:9;:19;70178:8;70168:19;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;70221:43;70236:10;70248:8;70258:5;70221:43;;;;;;;;:::i;:::-;;;;;;;;69879:403;;:::o;51750:104::-;51806:13;51839:7;51832:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51750:104;:::o;54660:295::-;54775:12;:10;:12::i;:::-;54763:24;;:8;:24;;;;54755:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54875:8;54830:18;:32;54849:12;:10;:12::i;:::-;54830:32;;;;;;;;;;;;;;;:42;54863:8;54830:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54928:8;54899:48;;54914:12;:10;:12::i;:::-;54899:48;;;54938:8;54899:48;;;;;;:::i;:::-;;;;;;;;54660:295;;:::o;67438:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67871:398::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67966:11:::1;67980:13;:11;:13::i;:::-;67966:27;;68029:1;68012:14;:18;:51;;;;;68052:11;;68034:14;:29;;68012:51;68004:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;68116:6;68111:95;68132:14;68128:1;:18;68111:95;;;68168:26;68178:3;68192:1;68183:6;:10;68168:9;:26::i;:::-;68148:3;;;;;;;68111:95;;;;68230:31;68246:14;68230:11;;:15;;:31;;;;:::i;:::-;68216:11;:45;;;;65932:1;67871:398:::0;;:::o;55855:285::-;55987:41;56006:12;:10;:12::i;:::-;56020:7;55987:18;:41::i;:::-;55979:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56093:39;56107:4;56113:2;56117:7;56126:5;56093:13;:39::i;:::-;55855:285;;;;:::o;67344:40::-;67380:4;67344:40;:::o;51925:792::-;51998:13;52032:16;52040:7;52032;:16::i;:::-;52024:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52113:23;52139:10;:19;52150:7;52139:19;;;;;;;;;;;52113:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52169:18;52190:9;:7;:9::i;:::-;52169:30;;52297:1;52281:4;52275:18;:23;52271:72;;;52322:9;52315:16;;;;;;52271:72;52473:1;52453:9;52447:23;:27;52443:108;;;52522:4;52528:9;52505:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52491:48;;;;;;52443:108;52683:4;52689:18;:7;:16;:18::i;:::-;52666:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52652:57;;;;51925:792;;;;:::o;55026:164::-;55123:4;55147:18;:25;55166:5;55147:25;;;;;;;;;;;;;;;:35;55173:8;55147:35;;;;;;;;;;;;;;;;;;;;;;;;;55140:42;;55026:164;;;;:::o;67393:32::-;;;;;;;;;;;;;:::o;66595:244::-;65872:12;:10;:12::i;:::-;65861:23;;:7;:5;:7::i;:::-;:23;;;65853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66704:1:::1;66684:22;;:8;:22;;;;66676:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66794:8;66765:38;;66786:6;;;;;;;;;;;66765:38;;;;;;;;;;;;66823:8;66814:6;;:17;;;;;;;;;;;;;;;;;;66595:244:::0;:::o;69180:686::-;69257:12;;;;;;;;;;;69249:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69342:1;69325:14;:18;:55;;;;;67333:2;69347:14;:33;;69325:55;69317:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;67380:4;69437:33;69455:14;69437:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;69429:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69561:29;69575:14;67255:17;69561:13;;:29;;;;:::i;:::-;69548:9;:42;;69540:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;69651:6;69647:210;69667:14;69663:1;:18;69647:210;;;69703:14;69720:13;:11;:13::i;:::-;69703:30;;67380:4;69752:13;:11;:13::i;:::-;:25;69748:98;;;69798:32;69808:10;69820:9;69798;:32::i;:::-;69748:98;69647:210;69683:3;;;;;;;69647:210;;;;69180:686;:::o;57607:127::-;57672:4;57696:30;57718:7;57696:12;:21;;:30;;;;:::i;:::-;57689:37;;57607:127;;;:::o;728:106::-;781:15;816:10;809:17;;728:106;:::o;63625:192::-;63727:2;63700:15;:24;63716:7;63700:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63783:7;63779:2;63745:46;;63754:23;63769:7;63754:14;:23::i;:::-;63745:46;;;;;;;;;;;;63625:192;;:::o;44339:123::-;44408:7;44435:19;44443:3;:10;;44435:7;:19::i;:::-;44428:26;;44339:123;;;:::o;57901:355::-;57994:4;58019:16;58027:7;58019;:16::i;:::-;58011:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58095:13;58111:23;58126:7;58111:14;:23::i;:::-;58095:39;;58164:5;58153:16;;:7;:16;;;:51;;;;58197:7;58173:31;;:20;58185:7;58173:11;:20::i;:::-;:31;;;58153:51;:94;;;;58208:39;58232:5;58239:7;58208:23;:39::i;:::-;58153:94;58145:103;;;57901:355;;;;:::o;61037:599::-;61162:4;61135:31;;:23;61150:7;61135:14;:23::i;:::-;:31;;;61127:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61263:1;61249:16;;:2;:16;;;;61241:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61319:39;61340:4;61346:2;61350:7;61319:20;:39::i;:::-;61423:29;61440:1;61444:7;61423:8;:29::i;:::-;61465:35;61492:7;61465:13;:19;61479:4;61465:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61511:30;61533:7;61511:13;:17;61525:2;61511:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61554:29;61571:7;61580:2;61554:12;:16;;:29;;;;;:::i;:::-;;61620:7;61616:2;61601:27;;61610:4;61601:27;;;;;;;;;;;;61037:599;;;:::o;36130:137::-;36201:7;36236:22;36240:3;:10;;36252:5;36236:3;:22::i;:::-;36228:31;;36221:38;;36130:137;;;;:::o;44801:236::-;44881:7;44890;44911:11;44924:13;44941:22;44945:3;:10;;44957:5;44941:3;:22::i;:::-;44910:53;;;;44990:3;44982:12;;45020:5;45012:14;;44974:55;;;;;;44801:236;;;;;:::o;62237:100::-;62321:8;62310;:19;;;;;;;;;;;;:::i;:::-;;62237:100;:::o;46087:213::-;46194:7;46245:44;46250:3;:10;;46270:3;46262:12;;46276;46245:4;:44::i;:::-;46237:53;;46214:78;;46087:213;;;;;:::o;35672:114::-;35732:7;35759:19;35767:3;:10;;35759:7;:19::i;:::-;35752:26;;35672:114;;;:::o;58599:110::-;58675:26;58685:2;58689:7;58675:26;;;;;;;;;;;;:9;:26::i;:::-;58599:110;;:::o;14320:158::-;14378:7;14411:1;14406;:6;;14398:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14469:1;14465;:5;14458:12;;14320:158;;;;:::o;57022:272::-;57136:28;57146:4;57152:2;57156:7;57136:9;:28::i;:::-;57183:48;57206:4;57212:2;57216:7;57225:5;57183:22;:48::i;:::-;57175:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57022:272;;;;:::o;46551:746::-;46607:13;46837:1;46828:5;:10;46824:53;;;46855:10;;;;;;;;;;;;;;;;;;;;;46824:53;46887:12;46902:5;46887:20;;46918:14;46943:78;46958:1;46950:4;:9;46943:78;;46976:8;;;;;;;47007:2;46999:10;;;;;;;;;46943:78;;;47031:19;47063:6;47053:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47031:39;;47081:13;47106:1;47097:6;:10;47081:26;;47125:5;47118:12;;47141:117;47156:1;47148:4;:9;47141:117;;47217:2;47210:4;:9;;;;;;47205:2;:14;47192:29;;47174:6;47181:7;;;;;;;47174:15;;;;;;;;;;;:47;;;;;;;;;;;47244:2;47236:10;;;;;;;;;47141:117;;;47282:6;47268:21;;;;;;46551:746;;;;:::o;13858:179::-;13916:7;13936:9;13952:1;13948;:5;13936:17;;13977:1;13972;:6;;13964:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;14028:1;14021:8;;;13858:179;;;;:::o;14737:220::-;14795:7;14824:1;14819;:6;14815:20;;;14834:1;14827:8;;;;14815:20;14846:9;14862:1;14858;:5;14846:17;;14891:1;14886;14882;:5;;;;;;:10;14874:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14948:1;14941:8;;;14737:220;;;;;:::o;44100:151::-;44184:4;44208:35;44218:3;:10;;44238:3;44230:12;;44208:9;:35::i;:::-;44201:42;;44100:151;;;;:::o;40918:110::-;40974:7;41001:3;:12;;:19;;;;40994:26;;40918:110;;;:::o;64430:93::-;;;;:::o;35217:137::-;35287:4;35311:35;35319:3;:10;;35339:5;35331:14;;35311:7;:35::i;:::-;35304:42;;35217:137;;;;:::o;34910:131::-;34977:4;35001:32;35006:3;:10;;35026:5;35018:14;;35001:4;:32::i;:::-;34994:39;;34910:131;;;;:::o;43523:185::-;43612:4;43636:64;43641:3;:10;;43661:3;43653:12;;43691:5;43675:23;;43667:32;;43636:4;:64::i;:::-;43629:71;;43523:185;;;;;:::o;31168:204::-;31235:7;31284:5;31263:3;:11;;:18;;;;:26;31255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31346:3;:11;;31358:5;31346:18;;;;;;;;;;;;;;;;31339:25;;31168:204;;;;:::o;41383:279::-;41450:7;41459;41509:5;41487:3;:12;;:19;;;;:27;41479:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41566:22;41591:3;:12;;41604:5;41591:19;;;;;;;;;;;;;;;;;;41566:44;;41629:5;:10;;;41641:5;:12;;;41621:33;;;;;41383:279;;;;;:::o;42880:319::-;42974:7;42994:16;43013:3;:12;;:17;43026:3;43013:17;;;;;;;;;;;;42994:36;;43061:1;43049:8;:13;;43064:12;43041:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43131:3;:12;;43155:1;43144:8;:12;43131:26;;;;;;;;;;;;;;;;;;:33;;;43124:40;;;42880:319;;;;;:::o;30715:109::-;30771:7;30798:3;:11;;:18;;;;30791:25;;30715:109;;;:::o;58936:250::-;59032:18;59038:2;59042:7;59032:5;:18::i;:::-;59069:54;59100:1;59104:2;59108:7;59117:5;59069:22;:54::i;:::-;59061:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58936:250;;;:::o;62902:604::-;63023:4;63050:15;:2;:13;;;:15::i;:::-;63045:60;;63089:4;63082:11;;;;63045:60;63115:23;63141:252;63194:45;;;63254:12;:10;:12::i;:::-;63281:4;63300:7;63322:5;63157:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63141:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63115:278;;63404:13;63431:10;63420:32;;;;;;;;;;;;:::i;:::-;63404:48;;48051:10;63481:16;;63471:26;;;:6;:26;;;;63463:35;;;;62902:604;;;;;;;:::o;40698:125::-;40769:4;40814:1;40793:3;:12;;:17;40806:3;40793:17;;;;;;;;;;;;:22;;40786:29;;40698:125;;;;:::o;28870:1544::-;28936:4;29054:18;29075:3;:12;;:19;29088:5;29075:19;;;;;;;;;;;;29054:40;;29125:1;29111:10;:15;29107:1300;;29473:21;29510:1;29497:10;:14;29473:38;;29526:17;29567:1;29546:3;:11;;:18;;;;:22;29526:42;;29813:17;29833:3;:11;;29845:9;29833:22;;;;;;;;;;;;;;;;29813:42;;29979:9;29950:3;:11;;29962:13;29950:26;;;;;;;;;;;;;;;:38;;;;30098:1;30082:13;:17;30056:3;:12;;:23;30069:9;30056:23;;;;;;;;;;;:43;;;;30208:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30303:3;:12;;:19;30316:5;30303:19;;;;;;;;;;;30296:26;;;30346:4;30339:11;;;;;;;;29107:1300;30390:5;30383:12;;;28870:1544;;;;;:::o;28280:414::-;28343:4;28365:21;28375:3;28380:5;28365:9;:21::i;:::-;28360:327;;28403:3;:11;;28420:5;28403:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28586:3;:11;;:18;;;;28564:3;:12;;:19;28577:5;28564:19;;;;;;;;;;;:40;;;;28626:4;28619:11;;;;28360:327;28670:5;28663:12;;28280:414;;;;;:::o;38198:692::-;38274:4;38390:16;38409:3;:12;;:17;38422:3;38409:17;;;;;;;;;;;;38390:36;;38455:1;38443:8;:13;38439:444;;;38510:3;:12;;38528:38;;;;;;;;38545:3;38528:38;;;;38558:5;38528:38;;;38510:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38725:3;:12;;:19;;;;38705:3;:12;;:17;38718:3;38705:17;;;;;;;;;;;:39;;;;38766:4;38759:11;;;;;38439:444;38839:5;38803:3;:12;;38827:1;38816:8;:12;38803:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38866:5;38859:12;;;38198:692;;;;;;:::o;59522:404::-;59616:1;59602:16;;:2;:16;;;;59594:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59675:16;59683:7;59675;:16::i;:::-;59674:17;59666:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59737:45;59766:1;59770:2;59774:7;59737:20;:45::i;:::-;59795:30;59817:7;59795:13;:17;59809:2;59795:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59838:29;59855:7;59864:2;59838:12;:16;;:29;;;;;:::i;:::-;;59910:7;59906:2;59885:33;;59902:1;59885:33;;;;;;;;;;;;59522:404;;:::o;19299:422::-;19359:4;19567:12;19678:7;19666:20;19658:28;;19712:1;19705:4;:8;19698:15;;;19299:422;;;:::o;22217:195::-;22320:12;22352:52;22374:6;22382:4;22388:1;22391:12;22352:21;:52::i;:::-;22345:59;;22217:195;;;;;:::o;30500:129::-;30573:4;30620:1;30597:3;:12;;:19;30610:5;30597:19;;;;;;;;;;;;:24;;30590:31;;30500:129;;;;:::o;23269:530::-;23396:12;23454:5;23429:21;:30;;23421:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23521:18;23532:6;23521:10;:18::i;:::-;23513:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23647:12;23661:23;23688:6;:11;;23708:5;23716:4;23688:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23646:75;;;;23739:52;23757:7;23766:10;23778:12;23739:17;:52::i;:::-;23732:59;;;;23269:530;;;;;;:::o;25809:742::-;25924:12;25953:7;25949:595;;;25984:10;25977:17;;;;25949:595;26118:1;26098:10;:17;:21;26094:439;;;26361:10;26355:17;26422:15;26409:10;26405:2;26401:19;26394:44;26309:148;26504:12;26497:20;;;;;;;;;;;:::i;:::-;;;;;;;;25809:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:143::-;;1077:6;1071:13;1062:22;;1093:33;1120:5;1093:33;:::i;:::-;1052:80;;;;:::o;1138:137::-;;1221:6;1208:20;1199:29;;1237:32;1263:5;1237:32;:::i;:::-;1189:86;;;;:::o;1281:141::-;;1368:6;1362:13;1353:22;;1384:32;1410:5;1384:32;:::i;:::-;1343:79;;;;:::o;1441:271::-;;1545:3;1538:4;1530:6;1526:17;1522:27;1512:2;;1563:1;1560;1553:12;1512:2;1603:6;1590:20;1628:78;1702:3;1694:6;1687:4;1679:6;1675:17;1628:78;:::i;:::-;1619:87;;1502:210;;;;;:::o;1732:273::-;;1837:3;1830:4;1822:6;1818:17;1814:27;1804:2;;1855:1;1852;1845:12;1804:2;1895:6;1882:20;1920:79;1995:3;1987:6;1980:4;1972:6;1968:17;1920:79;:::i;:::-;1911:88;;1794:211;;;;;:::o;2011:139::-;;2095:6;2082:20;2073:29;;2111:33;2138:5;2111:33;:::i;:::-;2063:87;;;;:::o;2156:262::-;;2264:2;2252:9;2243:7;2239:23;2235:32;2232:2;;;2280:1;2277;2270:12;2232:2;2323:1;2348:53;2393:7;2384:6;2373:9;2369:22;2348:53;:::i;:::-;2338:63;;2294:117;2222:196;;;;:::o;2424:407::-;;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:53;2678:7;2669:6;2658:9;2654:22;2633:53;:::i;:::-;2623:63;;2579:117;2735:2;2761:53;2806:7;2797:6;2786:9;2782:22;2761:53;:::i;:::-;2751:63;;2706:118;2507:324;;;;;:::o;2837:552::-;;;;2979:2;2967:9;2958:7;2954:23;2950:32;2947:2;;;2995:1;2992;2985:12;2947:2;3038:1;3063:53;3108:7;3099:6;3088:9;3084:22;3063:53;:::i;:::-;3053:63;;3009:117;3165:2;3191:53;3236:7;3227:6;3216:9;3212:22;3191:53;:::i;:::-;3181:63;;3136:118;3293:2;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3264:118;2937:452;;;;;:::o;3395:809::-;;;;;3563:3;3551:9;3542:7;3538:23;3534:33;3531:2;;;3580:1;3577;3570:12;3531:2;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3878:2;3904:53;3949:7;3940:6;3929:9;3925:22;3904:53;:::i;:::-;3894:63;;3849:118;4034:2;4023:9;4019:18;4006:32;4065:18;4057:6;4054:30;4051:2;;;4097:1;4094;4087:12;4051:2;4125:62;4179:7;4170:6;4159:9;4155:22;4125:62;:::i;:::-;4115:72;;3977:220;3521:683;;;;;;;:::o;4210:401::-;;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4348:1;4345;4338:12;4300:2;4391:1;4416:53;4461:7;4452:6;4441:9;4437:22;4416:53;:::i;:::-;4406:63;;4362:117;4518:2;4544:50;4586:7;4577:6;4566:9;4562:22;4544:50;:::i;:::-;4534:60;;4489:115;4290:321;;;;;:::o;4617:407::-;;;4742:2;4730:9;4721:7;4717:23;4713:32;4710:2;;;4758:1;4755;4748:12;4710:2;4801:1;4826:53;4871:7;4862:6;4851:9;4847:22;4826:53;:::i;:::-;4816:63;;4772:117;4928:2;4954:53;4999:7;4990:6;4979:9;4975:22;4954:53;:::i;:::-;4944:63;;4899:118;4700:324;;;;;:::o;5030:284::-;;5149:2;5137:9;5128:7;5124:23;5120:32;5117:2;;;5165:1;5162;5155:12;5117:2;5208:1;5233:64;5289:7;5280:6;5269:9;5265:22;5233:64;:::i;:::-;5223:74;;5179:128;5107:207;;;;:::o;5320:260::-;;5427:2;5415:9;5406:7;5402:23;5398:32;5395:2;;;5443:1;5440;5433:12;5395:2;5486:1;5511:52;5555:7;5546:6;5535:9;5531:22;5511:52;:::i;:::-;5501:62;;5457:116;5385:195;;;;:::o;5586:282::-;;5704:2;5692:9;5683:7;5679:23;5675:32;5672:2;;;5720:1;5717;5710:12;5672:2;5763:1;5788:63;5843:7;5834:6;5823:9;5819:22;5788:63;:::i;:::-;5778:73;;5734:127;5662:206;;;;:::o;5874:375::-;;5992:2;5980:9;5971:7;5967:23;5963:32;5960:2;;;6008:1;6005;5998:12;5960:2;6079:1;6068:9;6064:17;6051:31;6109:18;6101:6;6098:30;6095:2;;;6141:1;6138;6131:12;6095:2;6169:63;6224:7;6215:6;6204:9;6200:22;6169:63;:::i;:::-;6159:73;;6022:220;5950:299;;;;:::o;6255:262::-;;6363:2;6351:9;6342:7;6338:23;6334:32;6331:2;;;6379:1;6376;6369:12;6331:2;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6321:196;;;;:::o;6523:520::-;;;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:53;6787:7;6778:6;6767:9;6763:22;6742:53;:::i;:::-;6732:63;;6688:117;6872:2;6861:9;6857:18;6844:32;6903:18;6895:6;6892:30;6889:2;;;6935:1;6932;6925:12;6889:2;6963:63;7018:7;7009:6;6998:9;6994:22;6963:63;:::i;:::-;6953:73;;6815:221;6616:427;;;;;:::o;7049:196::-;;7173:66;7235:3;7227:6;7173:66;:::i;:::-;7159:80;;7149:96;;;;:::o;7251:179::-;;7341:46;7383:3;7375:6;7341:46;:::i;:::-;7419:4;7414:3;7410:14;7396:28;;7331:99;;;;:::o;7436:147::-;7531:45;7570:5;7531:45;:::i;:::-;7526:3;7519:58;7509:74;;:::o;7589:142::-;7692:32;7718:5;7692:32;:::i;:::-;7687:3;7680:45;7670:61;;:::o;7737:118::-;7824:24;7842:5;7824:24;:::i;:::-;7819:3;7812:37;7802:53;;:::o;7889:991::-;;8057:64;8115:5;8057:64;:::i;:::-;8137:96;8226:6;8221:3;8137:96;:::i;:::-;8130:103;;8259:3;8304:4;8296:6;8292:17;8287:3;8283:27;8334:66;8394:5;8334:66;:::i;:::-;8423:7;8454:1;8439:396;8464:6;8461:1;8458:13;8439:396;;;8535:9;8529:4;8525:20;8520:3;8513:33;8586:6;8580:13;8614:84;8693:4;8678:13;8614:84;:::i;:::-;8606:92;;8721:70;8784:6;8721:70;:::i;:::-;8711:80;;8820:4;8815:3;8811:14;8804:21;;8499:336;8486:1;8483;8479:9;8474:14;;8439:396;;;8443:14;8851:4;8844:11;;8871:3;8864:10;;8033:847;;;;;;;;;:::o;8916:732::-;;9064:54;9112:5;9064:54;:::i;:::-;9134:86;9213:6;9208:3;9134:86;:::i;:::-;9127:93;;9244:56;9294:5;9244:56;:::i;:::-;9323:7;9354:1;9339:284;9364:6;9361:1;9358:13;9339:284;;;9440:6;9434:13;9467:63;9526:3;9511:13;9467:63;:::i;:::-;9460:70;;9553:60;9606:6;9553:60;:::i;:::-;9543:70;;9399:224;9386:1;9383;9379:9;9374:14;;9339:284;;;9343:14;9639:3;9632:10;;9040:608;;;;;;;:::o;9654:109::-;9735:21;9750:5;9735:21;:::i;:::-;9730:3;9723:34;9713:50;;:::o;9769:360::-;;9883:38;9915:5;9883:38;:::i;:::-;9937:70;10000:6;9995:3;9937:70;:::i;:::-;9930:77;;10016:52;10061:6;10056:3;10049:4;10042:5;10038:16;10016:52;:::i;:::-;10093:29;10115:6;10093:29;:::i;:::-;10088:3;10084:39;10077:46;;9859:270;;;;;:::o;10135:373::-;;10267:38;10299:5;10267:38;:::i;:::-;10321:88;10402:6;10397:3;10321:88;:::i;:::-;10314:95;;10418:52;10463:6;10458:3;10451:4;10444:5;10440:16;10418:52;:::i;:::-;10495:6;10490:3;10486:16;10479:23;;10243:265;;;;;:::o;10536:1001::-;;10678:5;10672:12;10715:1;10704:9;10700:17;10731:1;10726:300;;;;11040:1;11035:496;;;;10693:838;;10726:300;10816:4;10812:1;10801:9;10797:17;10793:28;10841:88;10922:6;10917:3;10841:88;:::i;:::-;10834:95;;10973:4;10969:9;10958;10954:25;10949:3;10942:38;11009:6;11004:3;11000:16;10993:23;;10733:293;10726:300;;11035:496;11116:1;11105:9;11101:17;11138:88;11219:6;11214:3;11138:88;:::i;:::-;11131:95;;11254:41;11289:5;11254:41;:::i;:::-;11317:1;11331:154;11345:6;11342:1;11339:13;11331:154;;;11419:7;11413:14;11409:1;11404:3;11400:11;11393:35;11469:1;11460:7;11456:15;11445:26;;11367:4;11364:1;11360:12;11355:17;;11331:154;;;11514:6;11509:3;11505:16;11498:23;;11042:489;;;10693:838;;10645:892;;;;;:::o;11543:344::-;;11649:39;11682:5;11649:39;:::i;:::-;11704:61;11758:6;11753:3;11704:61;:::i;:::-;11697:68;;11774:52;11819:6;11814:3;11807:4;11800:5;11796:16;11774:52;:::i;:::-;11851:29;11873:6;11851:29;:::i;:::-;11846:3;11842:39;11835:46;;11625:262;;;;;:::o;11893:364::-;;12009:39;12042:5;12009:39;:::i;:::-;12064:71;12128:6;12123:3;12064:71;:::i;:::-;12057:78;;12144:52;12189:6;12184:3;12177:4;12170:5;12166:16;12144:52;:::i;:::-;12221:29;12243:6;12221:29;:::i;:::-;12216:3;12212:39;12205:46;;11985:272;;;;;:::o;12263:377::-;;12397:39;12430:5;12397:39;:::i;:::-;12452:89;12534:6;12529:3;12452:89;:::i;:::-;12445:96;;12550:52;12595:6;12590:3;12583:4;12576:5;12572:16;12550:52;:::i;:::-;12627:6;12622:3;12618:16;12611:23;;12373:267;;;;;:::o;12646:366::-;;12809:67;12873:2;12868:3;12809:67;:::i;:::-;12802:74;;12906:34;12902:1;12897:3;12893:11;12886:55;12972:4;12967:2;12962:3;12958:12;12951:26;13003:2;12998:3;12994:12;12987:19;;12792:220;;;:::o;13018:382::-;;13181:67;13245:2;13240:3;13181:67;:::i;:::-;13174:74;;13278:34;13274:1;13269:3;13265:11;13258:55;13344:20;13339:2;13334:3;13330:12;13323:42;13391:2;13386:3;13382:12;13375:19;;13164:236;;;:::o;13406:370::-;;13569:67;13633:2;13628:3;13569:67;:::i;:::-;13562:74;;13666:34;13662:1;13657:3;13653:11;13646:55;13732:8;13727:2;13722:3;13718:12;13711:30;13767:2;13762:3;13758:12;13751:19;;13552:224;;;:::o;13782:326::-;;13945:67;14009:2;14004:3;13945:67;:::i;:::-;13938:74;;14042:30;14038:1;14033:3;14029:11;14022:51;14099:2;14094:3;14090:12;14083:19;;13928:180;;;:::o;14114:325::-;;14277:67;14341:2;14336:3;14277:67;:::i;:::-;14270:74;;14374:29;14370:1;14365:3;14361:11;14354:50;14430:2;14425:3;14421:12;14414:19;;14260:179;;;:::o;14445:324::-;;14608:67;14672:2;14667:3;14608:67;:::i;:::-;14601:74;;14705:28;14701:1;14696:3;14692:11;14685:49;14760:2;14755:3;14751:12;14744:19;;14591:178;;;:::o;14775:330::-;;14938:67;15002:2;14997:3;14938:67;:::i;:::-;14931:74;;15035:34;15031:1;15026:3;15022:11;15015:55;15096:2;15091:3;15087:12;15080:19;;14921:184;;;:::o;15111:368::-;;15274:67;15338:2;15333:3;15274:67;:::i;:::-;15267:74;;15371:34;15367:1;15362:3;15358:11;15351:55;15437:6;15432:2;15427:3;15423:12;15416:28;15470:2;15465:3;15461:12;15454:19;;15257:222;;;:::o;15485:323::-;;15648:67;15712:2;15707:3;15648:67;:::i;:::-;15641:74;;15745:27;15741:1;15736:3;15732:11;15725:48;15799:2;15794:3;15790:12;15783:19;;15631:177;;;:::o;15814:329::-;;15977:67;16041:2;16036:3;15977:67;:::i;:::-;15970:74;;16074:33;16070:1;16065:3;16061:11;16054:54;16134:2;16129:3;16125:12;16118:19;;15960:183;;;:::o;16149:328::-;;16312:67;16376:2;16371:3;16312:67;:::i;:::-;16305:74;;16409:32;16405:1;16400:3;16396:11;16389:53;16468:2;16463:3;16459:12;16452:19;;16295:182;;;:::o;16483:370::-;;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16743:34;16739:1;16734:3;16730:11;16723:55;16809:8;16804:2;16799:3;16795:12;16788:30;16844:2;16839:3;16835:12;16828:19;;16629:224;;;:::o;16859:376::-;;17022:67;17086:2;17081:3;17022:67;:::i;:::-;17015:74;;17119:34;17115:1;17110:3;17106:11;17099:55;17185:14;17180:2;17175:3;17171:12;17164:36;17226:2;17221:3;17217:12;17210:19;;17005:230;;;:::o;17241:330::-;;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17501:34;17497:1;17492:3;17488:11;17481:55;17562:2;17557:3;17553:12;17546:19;;17387:184;;;:::o;17577:365::-;;17740:67;17804:2;17799:3;17740:67;:::i;:::-;17733:74;;17837:34;17833:1;17828:3;17824:11;17817:55;17903:3;17898:2;17893:3;17889:12;17882:25;17933:2;17928:3;17924:12;17917:19;;17723:219;;;:::o;17948:388::-;;18111:67;18175:2;18170:3;18111:67;:::i;:::-;18104:74;;18208:34;18204:1;18199:3;18195:11;18188:55;18274:26;18269:2;18264:3;18260:12;18253:48;18327:2;18322:3;18318:12;18311:19;;18094:242;;;:::o;18342:374::-;;18505:67;18569:2;18564:3;18505:67;:::i;:::-;18498:74;;18602:34;18598:1;18593:3;18589:11;18582:55;18668:12;18663:2;18658:3;18654:12;18647:34;18707:2;18702:3;18698:12;18691:19;;18488:228;;;:::o;18722:371::-;;18885:67;18949:2;18944:3;18885:67;:::i;:::-;18878:74;;18982:34;18978:1;18973:3;18969:11;18962:55;19048:9;19043:2;19038:3;19034:12;19027:31;19084:2;19079:3;19075:12;19068:19;;18868:225;;;:::o;19099:366::-;;19262:67;19326:2;19321:3;19262:67;:::i;:::-;19255:74;;19359:34;19355:1;19350:3;19346:11;19339:55;19425:4;19420:2;19415:3;19411:12;19404:26;19456:2;19451:3;19447:12;19440:19;;19245:220;;;:::o;19471:330::-;;19634:67;19698:2;19693:3;19634:67;:::i;:::-;19627:74;;19731:34;19727:1;19722:3;19718:11;19711:55;19792:2;19787:3;19783:12;19776:19;;19617:184;;;:::o;19807:365::-;;19970:67;20034:2;20029:3;19970:67;:::i;:::-;19963:74;;20067:34;20063:1;20058:3;20054:11;20047:55;20133:3;20128:2;20123:3;20119:12;20112:25;20163:2;20158:3;20154:12;20147:19;;19953:219;;;:::o;20178:376::-;;20341:67;20405:2;20400:3;20341:67;:::i;:::-;20334:74;;20438:34;20434:1;20429:3;20425:11;20418:55;20504:14;20499:2;20494:3;20490:12;20483:36;20545:2;20540:3;20536:12;20529:19;;20324:230;;;:::o;20560:330::-;;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20820:34;20816:1;20811:3;20807:11;20800:55;20881:2;20876:3;20872:12;20865:19;;20706:184;;;:::o;20896:373::-;;21059:67;21123:2;21118:3;21059:67;:::i;:::-;21052:74;;21156:34;21152:1;21147:3;21143:11;21136:55;21222:11;21217:2;21212:3;21208:12;21201:33;21260:2;21255:3;21251:12;21244:19;;21042:227;;;:::o;21275:379::-;;21438:67;21502:2;21497:3;21438:67;:::i;:::-;21431:74;;21535:34;21531:1;21526:3;21522:11;21515:55;21601:17;21596:2;21591:3;21587:12;21580:39;21645:2;21640:3;21636:12;21629:19;;21421:233;;;:::o;21660:367::-;;21823:67;21887:2;21882:3;21823:67;:::i;:::-;21816:74;;21920:34;21916:1;21911:3;21907:11;21900:55;21986:5;21981:2;21976:3;21972:12;21965:27;22018:2;22013:3;22009:12;22002:19;;21806:221;;;:::o;22033:365::-;;22196:67;22260:2;22255:3;22196:67;:::i;:::-;22189:74;;22293:34;22289:1;22284:3;22280:11;22273:55;22359:3;22354:2;22349:3;22345:12;22338:25;22389:2;22384:3;22380:12;22373:19;;22179:219;;;:::o;22404:381::-;;22567:67;22631:2;22626:3;22567:67;:::i;:::-;22560:74;;22664:34;22660:1;22655:3;22651:11;22644:55;22730:19;22725:2;22720:3;22716:12;22709:41;22776:2;22771:3;22767:12;22760:19;;22550:235;;;:::o;22791:327::-;;22954:67;23018:2;23013:3;22954:67;:::i;:::-;22947:74;;23051:31;23047:1;23042:3;23038:11;23031:52;23109:2;23104:3;23100:12;23093:19;;22937:181;;;:::o;23124:373::-;;23287:67;23351:2;23346:3;23287:67;:::i;:::-;23280:74;;23384:34;23380:1;23375:3;23371:11;23364:55;23450:11;23445:2;23440:3;23436:12;23429:33;23488:2;23483:3;23479:12;23472:19;;23270:227;;;:::o;23503:108::-;23580:24;23598:5;23580:24;:::i;:::-;23575:3;23568:37;23558:53;;:::o;23617:118::-;23704:24;23722:5;23704:24;:::i;:::-;23699:3;23692:37;23682:53;;:::o;23741:271::-;;23893:93;23982:3;23973:6;23893:93;:::i;:::-;23886:100;;24003:3;23996:10;;23875:137;;;;:::o;24018:273::-;;24171:94;24261:3;24252:6;24171:94;:::i;:::-;24164:101;;24282:3;24275:10;;24153:138;;;;:::o;24297:435::-;;24499:95;24590:3;24581:6;24499:95;:::i;:::-;24492:102;;24611:95;24702:3;24693:6;24611:95;:::i;:::-;24604:102;;24723:3;24716:10;;24481:251;;;;;:::o;24738:222::-;;24869:2;24858:9;24854:18;24846:26;;24882:71;24950:1;24939:9;24935:17;24926:6;24882:71;:::i;:::-;24836:124;;;;:::o;24966:672::-;;25215:3;25204:9;25200:19;25192:27;;25229:87;25313:1;25302:9;25298:17;25289:6;25229:87;:::i;:::-;25326:72;25394:2;25383:9;25379:18;25370:6;25326:72;:::i;:::-;25408;25476:2;25465:9;25461:18;25452:6;25408:72;:::i;:::-;25527:9;25521:4;25517:20;25512:2;25501:9;25497:18;25490:48;25555:76;25626:4;25617:6;25555:76;:::i;:::-;25547:84;;25182:456;;;;;;;:::o;25644:549::-;;25859:2;25848:9;25844:18;25836:26;;25872:79;25948:1;25937:9;25933:17;25924:6;25872:79;:::i;:::-;25961:72;26029:2;26018:9;26014:18;26005:6;25961:72;:::i;:::-;26080:9;26074:4;26070:20;26065:2;26054:9;26050:18;26043:48;26108:78;26181:4;26172:6;26108:78;:::i;:::-;26100:86;;25826:367;;;;;;:::o;26199:413::-;;26400:2;26389:9;26385:18;26377:26;;26449:9;26443:4;26439:20;26435:1;26424:9;26420:17;26413:47;26477:128;26600:4;26591:6;26477:128;:::i;:::-;26469:136;;26367:245;;;;:::o;26618:373::-;;26799:2;26788:9;26784:18;26776:26;;26848:9;26842:4;26838:20;26834:1;26823:9;26819:17;26812:47;26876:108;26979:4;26970:6;26876:108;:::i;:::-;26868:116;;26766:225;;;;:::o;26997:210::-;;27122:2;27111:9;27107:18;27099:26;;27135:65;27197:1;27186:9;27182:17;27173:6;27135:65;:::i;:::-;27089:118;;;;:::o;27213:313::-;;27364:2;27353:9;27349:18;27341:26;;27413:9;27407:4;27403:20;27399:1;27388:9;27384:17;27377:47;27441:78;27514:4;27505:6;27441:78;:::i;:::-;27433:86;;27331:195;;;;:::o;27532:419::-;;27736:2;27725:9;27721:18;27713:26;;27785:9;27779:4;27775:20;27771:1;27760:9;27756:17;27749:47;27813:131;27939:4;27813:131;:::i;:::-;27805:139;;27703:248;;;:::o;27957:419::-;;28161:2;28150:9;28146:18;28138:26;;28210:9;28204:4;28200:20;28196:1;28185:9;28181:17;28174:47;28238:131;28364:4;28238:131;:::i;:::-;28230:139;;28128:248;;;:::o;28382:419::-;;28586:2;28575:9;28571:18;28563:26;;28635:9;28629:4;28625:20;28621:1;28610:9;28606:17;28599:47;28663:131;28789:4;28663:131;:::i;:::-;28655:139;;28553:248;;;:::o;28807:419::-;;29011:2;29000:9;28996:18;28988:26;;29060:9;29054:4;29050:20;29046:1;29035:9;29031:17;29024:47;29088:131;29214:4;29088:131;:::i;:::-;29080:139;;28978:248;;;:::o;29232:419::-;;29436:2;29425:9;29421:18;29413:26;;29485:9;29479:4;29475:20;29471:1;29460:9;29456:17;29449:47;29513:131;29639:4;29513:131;:::i;:::-;29505:139;;29403:248;;;:::o;29657:419::-;;29861:2;29850:9;29846:18;29838:26;;29910:9;29904:4;29900:20;29896:1;29885:9;29881:17;29874:47;29938:131;30064:4;29938:131;:::i;:::-;29930:139;;29828:248;;;:::o;30082:419::-;;30286:2;30275:9;30271:18;30263:26;;30335:9;30329:4;30325:20;30321:1;30310:9;30306:17;30299:47;30363:131;30489:4;30363:131;:::i;:::-;30355:139;;30253:248;;;:::o;30507:419::-;;30711:2;30700:9;30696:18;30688:26;;30760:9;30754:4;30750:20;30746:1;30735:9;30731:17;30724:47;30788:131;30914:4;30788:131;:::i;:::-;30780:139;;30678:248;;;:::o;30932:419::-;;31136:2;31125:9;31121:18;31113:26;;31185:9;31179:4;31175:20;31171:1;31160:9;31156:17;31149:47;31213:131;31339:4;31213:131;:::i;:::-;31205:139;;31103:248;;;:::o;31357:419::-;;31561:2;31550:9;31546:18;31538:26;;31610:9;31604:4;31600:20;31596:1;31585:9;31581:17;31574:47;31638:131;31764:4;31638:131;:::i;:::-;31630:139;;31528:248;;;:::o;31782:419::-;;31986:2;31975:9;31971:18;31963:26;;32035:9;32029:4;32025:20;32021:1;32010:9;32006:17;31999:47;32063:131;32189:4;32063:131;:::i;:::-;32055:139;;31953:248;;;:::o;32207:419::-;;32411:2;32400:9;32396:18;32388:26;;32460:9;32454:4;32450:20;32446:1;32435:9;32431:17;32424:47;32488:131;32614:4;32488:131;:::i;:::-;32480:139;;32378:248;;;:::o;32632:419::-;;32836:2;32825:9;32821:18;32813:26;;32885:9;32879:4;32875:20;32871:1;32860:9;32856:17;32849:47;32913:131;33039:4;32913:131;:::i;:::-;32905:139;;32803:248;;;:::o;33057:419::-;;33261:2;33250:9;33246:18;33238:26;;33310:9;33304:4;33300:20;33296:1;33285:9;33281:17;33274:47;33338:131;33464:4;33338:131;:::i;:::-;33330:139;;33228:248;;;:::o;33482:419::-;;33686:2;33675:9;33671:18;33663:26;;33735:9;33729:4;33725:20;33721:1;33710:9;33706:17;33699:47;33763:131;33889:4;33763:131;:::i;:::-;33755:139;;33653:248;;;:::o;33907:419::-;;34111:2;34100:9;34096:18;34088:26;;34160:9;34154:4;34150:20;34146:1;34135:9;34131:17;34124:47;34188:131;34314:4;34188:131;:::i;:::-;34180:139;;34078:248;;;:::o;34332:419::-;;34536:2;34525:9;34521:18;34513:26;;34585:9;34579:4;34575:20;34571:1;34560:9;34556:17;34549:47;34613:131;34739:4;34613:131;:::i;:::-;34605:139;;34503:248;;;:::o;34757:419::-;;34961:2;34950:9;34946:18;34938:26;;35010:9;35004:4;35000:20;34996:1;34985:9;34981:17;34974:47;35038:131;35164:4;35038:131;:::i;:::-;35030:139;;34928:248;;;:::o;35182:419::-;;35386:2;35375:9;35371:18;35363:26;;35435:9;35429:4;35425:20;35421:1;35410:9;35406:17;35399:47;35463:131;35589:4;35463:131;:::i;:::-;35455:139;;35353:248;;;:::o;35607:419::-;;35811:2;35800:9;35796:18;35788:26;;35860:9;35854:4;35850:20;35846:1;35835:9;35831:17;35824:47;35888:131;36014:4;35888:131;:::i;:::-;35880:139;;35778:248;;;:::o;36032:419::-;;36236:2;36225:9;36221:18;36213:26;;36285:9;36279:4;36275:20;36271:1;36260:9;36256:17;36249:47;36313:131;36439:4;36313:131;:::i;:::-;36305:139;;36203:248;;;:::o;36457:419::-;;36661:2;36650:9;36646:18;36638:26;;36710:9;36704:4;36700:20;36696:1;36685:9;36681:17;36674:47;36738:131;36864:4;36738:131;:::i;:::-;36730:139;;36628:248;;;:::o;36882:419::-;;37086:2;37075:9;37071:18;37063:26;;37135:9;37129:4;37125:20;37121:1;37110:9;37106:17;37099:47;37163:131;37289:4;37163:131;:::i;:::-;37155:139;;37053:248;;;:::o;37307:419::-;;37511:2;37500:9;37496:18;37488:26;;37560:9;37554:4;37550:20;37546:1;37535:9;37531:17;37524:47;37588:131;37714:4;37588:131;:::i;:::-;37580:139;;37478:248;;;:::o;37732:419::-;;37936:2;37925:9;37921:18;37913:26;;37985:9;37979:4;37975:20;37971:1;37960:9;37956:17;37949:47;38013:131;38139:4;38013:131;:::i;:::-;38005:139;;37903:248;;;:::o;38157:419::-;;38361:2;38350:9;38346:18;38338:26;;38410:9;38404:4;38400:20;38396:1;38385:9;38381:17;38374:47;38438:131;38564:4;38438:131;:::i;:::-;38430:139;;38328:248;;;:::o;38582:419::-;;38786:2;38775:9;38771:18;38763:26;;38835:9;38829:4;38825:20;38821:1;38810:9;38806:17;38799:47;38863:131;38989:4;38863:131;:::i;:::-;38855:139;;38753:248;;;:::o;39007:419::-;;39211:2;39200:9;39196:18;39188:26;;39260:9;39254:4;39250:20;39246:1;39235:9;39231:17;39224:47;39288:131;39414:4;39288:131;:::i;:::-;39280:139;;39178:248;;;:::o;39432:419::-;;39636:2;39625:9;39621:18;39613:26;;39685:9;39679:4;39675:20;39671:1;39660:9;39656:17;39649:47;39713:131;39839:4;39713:131;:::i;:::-;39705:139;;39603:248;;;:::o;39857:419::-;;40061:2;40050:9;40046:18;40038:26;;40110:9;40104:4;40100:20;40096:1;40085:9;40081:17;40074:47;40138:131;40264:4;40138:131;:::i;:::-;40130:139;;40028:248;;;:::o;40282:222::-;;40413:2;40402:9;40398:18;40390:26;;40426:71;40494:1;40483:9;40479:17;40470:6;40426:71;:::i;:::-;40380:124;;;;:::o;40510:278::-;;40576:2;40570:9;40560:19;;40618:4;40610:6;40606:17;40725:6;40713:10;40710:22;40689:18;40677:10;40674:34;40671:62;40668:2;;;40736:13;;:::i;:::-;40668:2;40771:10;40767:2;40760:22;40550:238;;;;:::o;40794:326::-;;40945:18;40937:6;40934:30;40931:2;;;40967:13;;:::i;:::-;40931:2;41047:4;41043:9;41036:4;41028:6;41024:17;41020:33;41012:41;;41108:4;41102;41098:15;41090:23;;40860:260;;;:::o;41126:327::-;;41278:18;41270:6;41267:30;41264:2;;;41300:13;;:::i;:::-;41264:2;41380:4;41376:9;41369:4;41361:6;41357:17;41353:33;41345:41;;41441:4;41435;41431:15;41423:23;;41193:260;;;:::o;41459:142::-;;41559:3;41551:11;;41589:4;41584:3;41580:14;41572:22;;41541:60;;;:::o;41607:132::-;;41697:3;41689:11;;41727:4;41722:3;41718:14;41710:22;;41679:60;;;:::o;41745:144::-;;41820:3;41812:11;;41843:3;41840:1;41833:14;41877:4;41874:1;41864:18;41856:26;;41802:87;;;:::o;41895:124::-;;42006:5;42000:12;41990:22;;41979:40;;;:::o;42025:114::-;;42126:5;42120:12;42110:22;;42099:40;;;:::o;42145:98::-;;42230:5;42224:12;42214:22;;42203:40;;;:::o;42249:99::-;;42335:5;42329:12;42319:22;;42308:40;;;:::o;42354:123::-;;42466:4;42461:3;42457:14;42449:22;;42439:38;;;:::o;42483:113::-;;42585:4;42580:3;42576:14;42568:22;;42558:38;;;:::o;42602:194::-;;42745:6;42740:3;42733:19;42785:4;42780:3;42776:14;42761:29;;42723:73;;;;:::o;42802:184::-;;42935:6;42930:3;42923:19;42975:4;42970:3;42966:14;42951:29;;42913:73;;;;:::o;42992:168::-;;43109:6;43104:3;43097:19;43149:4;43144:3;43140:14;43125:29;;43087:73;;;;:::o;43166:147::-;;43304:3;43289:18;;43279:34;;;;:::o;43319:159::-;;43427:6;43422:3;43415:19;43467:4;43462:3;43458:14;43443:29;;43405:73;;;;:::o;43484:169::-;;43602:6;43597:3;43590:19;43642:4;43637:3;43633:14;43618:29;;43580:73;;;;:::o;43659:148::-;;43798:3;43783:18;;43773:34;;;;:::o;43813:96::-;;43879:24;43897:5;43879:24;:::i;:::-;43868:35;;43858:51;;;:::o;43915:104::-;;43989:24;44007:5;43989:24;:::i;:::-;43978:35;;43968:51;;;:::o;44025:90::-;;44102:5;44095:13;44088:21;44077:32;;44067:48;;;:::o;44121:77::-;;44187:5;44176:16;;44166:32;;;:::o;44204:149::-;;44280:66;44273:5;44269:78;44258:89;;44248:105;;;:::o;44359:126::-;;44436:42;44429:5;44425:54;44414:65;;44404:81;;;:::o;44491:77::-;;44557:5;44546:16;;44536:32;;;:::o;44574:134::-;;44665:37;44696:5;44665:37;:::i;:::-;44652:50;;44642:66;;;:::o;44714:126::-;;44797:37;44828:5;44797:37;:::i;:::-;44784:50;;44774:66;;;:::o;44846:113::-;;44929:24;44947:5;44929:24;:::i;:::-;44916:37;;44906:53;;;:::o;44965:154::-;45049:6;45044:3;45039;45026:30;45111:1;45102:6;45097:3;45093:16;45086:27;45016:103;;;:::o;45125:307::-;45193:1;45203:113;45217:6;45214:1;45211:13;45203:113;;;45302:1;45297:3;45293:11;45287:18;45283:1;45278:3;45274:11;45267:39;45239:2;45236:1;45232:10;45227:15;;45203:113;;;45334:6;45331:1;45328:13;45325:2;;;45414:1;45405:6;45400:3;45396:16;45389:27;45325:2;45174:258;;;;:::o;45438:48::-;45471:9;45492:102;;45584:2;45580:7;45575:2;45568:5;45564:14;45560:28;45550:38;;45540:54;;;:::o;45600:122::-;45673:24;45691:5;45673:24;:::i;:::-;45666:5;45663:35;45653:2;;45712:1;45709;45702:12;45653:2;45643:79;:::o;45728:116::-;45798:21;45813:5;45798:21;:::i;:::-;45791:5;45788:32;45778:2;;45834:1;45831;45824:12;45778:2;45768:76;:::o;45850:122::-;45923:24;45941:5;45923:24;:::i;:::-;45916:5;45913:35;45903:2;;45962:1;45959;45952:12;45903:2;45893:79;:::o;45978:120::-;46050:23;46067:5;46050:23;:::i;:::-;46043:5;46040:34;46030:2;;46088:1;46085;46078:12;46030:2;46020:78;:::o;46104:122::-;46177:24;46195:5;46177:24;:::i;:::-;46170:5;46167:35;46157:2;;46216:1;46213;46206:12;46157:2;46147:79;:::o
Swarm Source
ipfs://eb0609629345eb2ad9aa8aa934f3dc8420d010fa303653b8ab49b8c6d1db757c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.