Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
888 SB
Holders
372
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SpectralBeings
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/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; } } // ======== Spectral Beings ======== // pragma solidity ^0.7.0; pragma abicoder v2; contract SpectralBeings is ERC721, Ownable { constructor() ERC721("Spectral Beings", "SB") {} using SafeMath for uint256; // price of a CH uint256 public constant aliensPrice = 100000000000000000; // 0.1 ETH // max number of CH to purchase uint public constant MAX_ALIEN_PURCHASE = 1; // max number of CH overall uint256 public constant MAX_ALIENS_MAIN = 888; // are individual sales active? bool public preSaleIsActive = false; bool public publicSaleIsActive = false; // reconstructed code string public origReconstructedCode; bool public isOrigReconstructed = false; // Reserve 24 uint public ALIEN_RESERVE = 24; function withdraw() public onlyOwner { uint balance = address(this).balance; msg.sender.transfer(balance); } // track how many has a given address minted mapping (address => uint256) public preSaleMinted; // set whitelisted mapping (address => uint256) public whitelisted; function setWhitelistAddress (address[] memory users, uint[] memory allowedMint) public onlyOwner { for (uint i = 0; i < users.length; i++) { whitelisted[users[i]] = allowedMint[i]; } } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function flipSaleStatePresale() public onlyOwner { preSaleIsActive = !preSaleIsActive; } function flipSaleStatePublic() public onlyOwner { publicSaleIsActive = !publicSaleIsActive; } function setOrigReconstruction(string calldata _currName) public onlyOwner { require(isOrigReconstructed == false, "already reconstructed"); isOrigReconstructed = true; origReconstructedCode = _currName; } function viewReconstructedCode() public view returns(string memory) { return origReconstructedCode; } function publicMint(uint _numberOfTokens) public payable { require(publicSaleIsActive, "public not open"); // open minting require(_numberOfTokens == MAX_ALIEN_PURCHASE, "precisely 1"); // exactly 1 require(totalSupply().add(_numberOfTokens) <= MAX_ALIENS_MAIN, "too many"); // does adding 1 exceed max? require(msg.value >= aliensPrice, "more eth"); // value needs to be correct uint mintIndex = totalSupply(); if (totalSupply() < MAX_ALIENS_MAIN) { _safeMint(msg.sender, mintIndex); } } function preMint(uint _numberOfTokens) public payable { require(preSaleIsActive, "presale not open"); // presale is activated require(whitelisted[msg.sender] > 0, "not allowed"); // allowed to mint require(whitelisted[msg.sender] > preSaleMinted[msg.sender], "exceed mint"); // less than their allowance require(totalSupply().add(_numberOfTokens) <= MAX_ALIENS_MAIN, "too many"); // does adding 1 exceed max? very unlikely but better safe than sry require(_numberOfTokens == MAX_ALIEN_PURCHASE, "only 1"); // exactly 1 at a time require(msg.value >= aliensPrice, "more eth"); // value needs to be correct uint mintIndex = totalSupply(); if (totalSupply() < MAX_ALIENS_MAIN) { _safeMint(msg.sender, mintIndex); preSaleMinted[msg.sender] += 1; } } }
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"},{"inputs":[],"name":"ALIEN_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALIENS_MAIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ALIEN_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aliensPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"flipSaleStatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatePublic","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":"isOrigReconstructed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"origReconstructedCode","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":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"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":"_currName","type":"string"}],"name":"setOrigReconstruction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"allowedMint","type":"uint256[]"}],"name":"setWhitelistAddress","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":[],"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":[],"name":"viewReconstructedCode","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055506018600d553480156200006757600080fd5b506040518060400160405280600f81526020017f537065637472616c204265696e677300000000000000000000000000000000008152506040518060400160405280600281526020017f5342000000000000000000000000000000000000000000000000000000000000815250620000ec6301ffc9a760e01b6200021f60201b60201c565b816006908051906020019062000104929190620002ff565b5080600790805190602001906200011d929190620002ff565b50620001366380ac58cd60e01b6200021f60201b60201c565b6200014e635b5e139f60e01b6200021f60201b60201c565b6200016663780e9d6360e01b6200021f60201b60201c565b505060006200017a620002f760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200042a565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200028b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028290620003f7565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000337576000855562000383565b82601f106200035257805160ff191683800117855562000383565b8280016001018555821562000383579182015b828111156200038257825182559160200191906001019062000365565b5b50905062000392919062000396565b5090565b5b80821115620003b157600081600090555060010162000397565b5090565b6000620003c4601c8362000419565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200041281620003b5565b9050919050565b600082825260208201905092915050565b6149e3806200043a6000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e5780639ad52795116100ab578063d05b7d911161006f578063d05b7d91146107fd578063d936547e14610828578063e6714cb114610865578063e985e9c514610890578063f2fde38b146108cd57610230565b80639ad5279514610718578063a22cb46514610743578063b88d4fde1461076c578063badbb71314610795578063c87b56dd146107c057610230565b80638ad433ac116100f25780638ad433ac146106645780638da5cb5b1461068057806392ea7d9c146106ab57806395d89b41146106c2578063991049ba146106ed57610230565b80636c0360eb1461059157806370a08231146105bc578063715018a6146105f957806377cf8cc2146106105780637b3f76ae1461063b57610230565b80632db11544116101bc5780634f6ccce7116101805780634f6ccce714610488578063529be43b146104c557806355f804b31461050257806356798bda1461052b5780636352211e1461055457610230565b80632db11544146103c45780632f745c59146103e05780633588a33f1461041d5780633ccfd60b1461044857806342842e0e1461045f57610230565b8063095ea7b311610203578063095ea7b3146102f15780630fcf2e751461031a57806318160ddd146103455780631f0234d81461037057806323b872dd1461039b57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d57806308239c96146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136e5565b6108f6565b60405161026991906142ec565b60405180910390f35b34801561027e57600080fd5b5061028761095d565b6040516102949190614307565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906137bd565b6109ff565b6040516102d19190614285565b60405180910390f35b3480156102e657600080fd5b506102ef610a84565b005b3480156102fd57600080fd5b506103186004803603810190610313919061363d565b610b2c565b005b34801561032657600080fd5b5061032f610c44565b60405161033c91906142ec565b60405180910390f35b34801561035157600080fd5b5061035a610c57565b60405161036791906146c9565b60405180910390f35b34801561037c57600080fd5b50610385610c68565b60405161039291906142ec565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613537565b610c7b565b005b6103de60048036038101906103d991906137bd565b610cdb565b005b3480156103ec57600080fd5b506104076004803603810190610402919061363d565b610e42565b60405161041491906146c9565b60405180910390f35b34801561042957600080fd5b50610432610e9d565b60405161043f91906142ec565b60405180910390f35b34801561045457600080fd5b5061045d610eb0565b005b34801561046b57600080fd5b5061048660048036038101906104819190613537565b610f7b565b005b34801561049457600080fd5b506104af60048036038101906104aa91906137bd565b610f9b565b6040516104bc91906146c9565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906134d2565b610fbe565b6040516104f991906146c9565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061377c565b610fd6565b005b34801561053757600080fd5b50610552600480360381019061054d9190613679565b61105e565b005b34801561056057600080fd5b5061057b600480360381019061057691906137bd565b611162565b6040516105889190614285565b60405180910390f35b34801561059d57600080fd5b506105a6611199565b6040516105b39190614307565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906134d2565b61123b565b6040516105f091906146c9565b60405180910390f35b34801561060557600080fd5b5061060e6112fa565b005b34801561061c57600080fd5b50610625611437565b6040516106329190614307565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613737565b6114d5565b005b61067e600480360381019061067991906137bd565b6115d8565b005b34801561068c57600080fd5b506106956118cf565b6040516106a29190614285565b60405180910390f35b3480156106b757600080fd5b506106c06118f9565b005b3480156106ce57600080fd5b506106d76119a1565b6040516106e49190614307565b60405180910390f35b3480156106f957600080fd5b50610702611a43565b60405161070f9190614307565b60405180910390f35b34801561072457600080fd5b5061072d611ae5565b60405161073a91906146c9565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613601565b611aeb565b005b34801561077857600080fd5b50610793600480360381019061078e9190613586565b611c6c565b005b3480156107a157600080fd5b506107aa611cce565b6040516107b791906146c9565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906137bd565b611cd4565b6040516107f49190614307565b60405180910390f35b34801561080957600080fd5b50610812611e57565b60405161081f91906146c9565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906134d2565b611e5c565b60405161085c91906146c9565b60405180910390f35b34801561087157600080fd5b5061087a611e74565b60405161088791906146c9565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b291906134fb565b611e80565b6040516108c491906142ec565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906134d2565b611f14565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b6000610a0a826120c0565b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090614569565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a8c6120dd565b73ffffffffffffffffffffffffffffffffffffffff16610aaa6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790614589565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000610b3782611162565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614609565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76120dd565b73ffffffffffffffffffffffffffffffffffffffff161480610bf65750610bf581610bf06120dd565b611e80565b5b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906144c9565b60405180910390fd5b610c3f83836120e5565b505050565b600a60159054906101000a900460ff1681565b6000610c63600261219e565b905090565b600a60149054906101000a900460ff1681565b610c8c610c866120dd565b826121b3565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290614629565b60405180910390fd5b610cd6838383612291565b505050565b600a60159054906101000a900460ff16610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190614689565b60405180910390fd5b60018114610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906143e9565b60405180910390fd5b610378610d8a82610d7c610c57565b6124a890919063ffffffff16565b1115610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906145e9565b60405180910390fd5b67016345785d8a0000341015610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614409565b60405180910390fd5b6000610e20610c57565b9050610378610e2d610c57565b1015610e3e57610e3d33826124fd565b5b5050565b6000610e9582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061251b90919063ffffffff16565b905092915050565b600c60009054906101000a900460ff1681565b610eb86120dd565b73ffffffffffffffffffffffffffffffffffffffff16610ed66118cf565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614589565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f77573d6000803e3d6000fd5b5050565b610f9683838360405180602001604052806000815250611c6c565b505050565b600080610fb283600261253590919063ffffffff16565b50905080915050919050565b600e6020528060005260406000206000915090505481565b610fde6120dd565b73ffffffffffffffffffffffffffffffffffffffff16610ffc6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990614589565b60405180910390fd5b61105b81612561565b50565b6110666120dd565b73ffffffffffffffffffffffffffffffffffffffff166110846118cf565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190614589565b60405180910390fd5b60005b825181101561115d578181815181106110f257fe5b6020026020010151600f600085848151811061110a57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506110dd565b505050565b60006111928260405180606001604052806029815260200161498560299139600261257b9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a3906144e9565b60405180910390fd5b6112f3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061259a565b9050919050565b6113026120dd565b73ffffffffffffffffffffffffffffffffffffffff166113206118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90614589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114cd5780601f106114a2576101008083540402835291602001916114cd565b820191906000526020600020905b8154815290600101906020018083116114b057829003601f168201915b505050505081565b6114dd6120dd565b73ffffffffffffffffffffffffffffffffffffffff166114fb6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614589565b60405180910390fd5b60001515600c60009054906101000a900460ff161515146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614669565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055508181600b91906115d39291906130ea565b505050565b600a60149054906101000a900460ff16611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614509565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906144a9565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906146a9565b60405180910390fd5b61037861178682611778610c57565b6124a890919063ffffffff16565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906145e9565b60405180910390fd5b6001811461180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614349565b60405180910390fd5b67016345785d8a0000341015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614409565b60405180910390fd5b600061185f610c57565b905061037861186c610c57565b10156118cb5761187c33826124fd565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119016120dd565b73ffffffffffffffffffffffffffffffffffffffff1661191f6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614589565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b600d5481565b611af36120dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614449565b60405180910390fd5b8060056000611b6e6120dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1b6120dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6091906142ec565b60405180910390a35050565b611c7d611c776120dd565b836121b3565b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390614629565b60405180910390fd5b611cc8848484846125af565b50505050565b61037881565b6060611cdf826120c0565b611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906145c9565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b505050505090506000611dd8611199565b9050600081511415611dee578192505050611e52565b600082511115611e23578082604051602001611e0b929190614261565b60405160208183030381529060405292505050611e52565b80611e2d8561260b565b604051602001611e3e929190614261565b604051602081830303815290604052925050505b919050565b600181565b600f6020528060005260406000206000915090505481565b67016345785d8a000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1c6120dd565b73ffffffffffffffffffffffffffffffffffffffff16611f3a6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614389565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120d682600261275290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215883611162565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ac8260000161276c565b9050919050565b60006121be826120c0565b6121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614489565b60405180910390fd5b600061220883611162565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227757508373ffffffffffffffffffffffffffffffffffffffff1661225f846109ff565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228857506122878185611e80565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b182611162565b73ffffffffffffffffffffffffffffffffffffffff1614612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe906145a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614429565b60405180910390fd5b61238283838361277d565b61238d6000826120e5565b6123de81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278290919063ffffffff16565b5061243081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061279c90919063ffffffff16565b50612447818360026127b69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808284019050838110156124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906143c9565b60405180910390fd5b8091505092915050565b6125178282604051806020016040528060008152506127eb565b5050565b600061252a8360000183612846565b60001c905092915050565b60008060008061254886600001866128b3565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612577929190613178565b5050565b600061258e846000018460001b84612936565b60001c90509392505050565b60006125a8826000016129c7565b9050919050565b6125ba848484612291565b6125c6848484846129d8565b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614369565b60405180910390fd5b50505050565b60606000821415612653576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274d565b600082905060005b6000821461267d578080600101915050600a828161267557fe5b04915061265b565b60008167ffffffffffffffff8111801561269657600080fd5b506040519080825280601f01601f1916602001820160405280156126c95781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461274557600a84816126ea57fe5b0660300160f81b8282806001900393508151811061270457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161273d57fe5b0493506126d8565b819450505050505b919050565b6000612764836000018360001b612b3c565b905092915050565b600081600001805490509050919050565b505050565b6000612794836000018360001b612b5f565b905092915050565b60006127ae836000018360001b612c47565b905092915050565b60006127e2846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612cb7565b90509392505050565b6127f58383612d93565b61280260008484846129d8565b612841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283890614369565b60405180910390fd5b505050565b600081836000018054905011612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890614329565b60405180910390fd5b8260000182815481106128a057fe5b9060005260206000200154905092915050565b600080828460000180549050116128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614529565b60405180910390fd5b600084600001848154811061291057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f9190614307565b60405180910390fd5b508460000160018203815481106129ab57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129f98473ffffffffffffffffffffffffffffffffffffffff16612f21565b612a065760019050612b34565b6000612acd63150b7a0260e01b612a1b6120dd565b888787604051602401612a3194939291906142a0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614953603291398773ffffffffffffffffffffffffffffffffffffffff16612f349092919063ffffffff16565b9050600081806020019051810190612ae5919061370e565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c3b5760006001820390506000600186600001805490500390506000866000018281548110612baa57fe5b9060005260206000200154905080876000018481548110612bc757fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bff57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c41565b60009150505b92915050565b6000612c538383612f4c565b612cac578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612cb1565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d5e57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d8c565b82856000016001830381548110612d7157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614549565b60405180910390fd5b612e0c816120c0565b15612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e43906143a9565b60405180910390fd5b612e586000838361277d565b612ea981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061279c90919063ffffffff16565b50612ec0818360026127b69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f438484600085612f6f565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90614469565b60405180910390fd5b612fbd85612f21565b612ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff390614649565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613025919061424a565b60006040518083038185875af1925050503d8060008114613062576040519150601f19603f3d011682016040523d82523d6000602084013e613067565b606091505b5091509150613077828286613083565b92505050949350505050565b60608315613093578290506130e3565b6000835111156130a65782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da9190614307565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131205760008555613167565b82601f1061313957803560ff1916838001178555613167565b82800160010185558215613167579182015b8281111561316657823582559160200191906001019061314b565b5b5090506131749190613206565b5090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131ae57600085556131f5565b82601f106131c757805160ff19168380011785556131f5565b828001600101855582156131f5579182015b828111156131f45782518255916020019190600101906131d9565b5b5090506132029190613206565b5090565b5b8082111561321f576000816000905550600101613207565b5090565b600061323661323184614715565b6146e4565b9050808382526020820190508285602086028201111561325557600080fd5b60005b85811015613285578161326b8882613377565b845260208401935060208301925050600181019050613258565b5050509392505050565b60006132a261329d84614741565b6146e4565b905080838252602082019050828560208602820111156132c157600080fd5b60005b858110156132f157816132d788826134bd565b8452602084019350602083019250506001810190506132c4565b5050509392505050565b600061330e6133098461476d565b6146e4565b90508281526020810184848401111561332657600080fd5b6133318482856148a1565b509392505050565b600061334c6133478461479d565b6146e4565b90508281526020810184848401111561336457600080fd5b61336f8482856148a1565b509392505050565b600081359050613386816148f6565b92915050565b600082601f83011261339d57600080fd5b81356133ad848260208601613223565b91505092915050565b600082601f8301126133c757600080fd5b81356133d784826020860161328f565b91505092915050565b6000813590506133ef8161490d565b92915050565b60008135905061340481614924565b92915050565b60008151905061341981614924565b92915050565b600082601f83011261343057600080fd5b81356134408482602086016132fb565b91505092915050565b60008083601f84011261345b57600080fd5b8235905067ffffffffffffffff81111561347457600080fd5b60208301915083600182028301111561348c57600080fd5b9250929050565b600082601f8301126134a457600080fd5b81356134b4848260208601613339565b91505092915050565b6000813590506134cc8161493b565b92915050565b6000602082840312156134e457600080fd5b60006134f284828501613377565b91505092915050565b6000806040838503121561350e57600080fd5b600061351c85828601613377565b925050602061352d85828601613377565b9150509250929050565b60008060006060848603121561354c57600080fd5b600061355a86828701613377565b935050602061356b86828701613377565b925050604061357c868287016134bd565b9150509250925092565b6000806000806080858703121561359c57600080fd5b60006135aa87828801613377565b94505060206135bb87828801613377565b93505060406135cc878288016134bd565b925050606085013567ffffffffffffffff8111156135e957600080fd5b6135f58782880161341f565b91505092959194509250565b6000806040838503121561361457600080fd5b600061362285828601613377565b9250506020613633858286016133e0565b9150509250929050565b6000806040838503121561365057600080fd5b600061365e85828601613377565b925050602061366f858286016134bd565b9150509250929050565b6000806040838503121561368c57600080fd5b600083013567ffffffffffffffff8111156136a657600080fd5b6136b28582860161338c565b925050602083013567ffffffffffffffff8111156136cf57600080fd5b6136db858286016133b6565b9150509250929050565b6000602082840312156136f757600080fd5b6000613705848285016133f5565b91505092915050565b60006020828403121561372057600080fd5b600061372e8482850161340a565b91505092915050565b6000806020838503121561374a57600080fd5b600083013567ffffffffffffffff81111561376457600080fd5b61377085828601613449565b92509250509250929050565b60006020828403121561378e57600080fd5b600082013567ffffffffffffffff8111156137a857600080fd5b6137b484828501613493565b91505092915050565b6000602082840312156137cf57600080fd5b60006137dd848285016134bd565b91505092915050565b6137ef8161482d565b82525050565b6137fe8161481b565b82525050565b61380d8161483f565b82525050565b600061381e826147cd565b61382881856147e3565b93506138388185602086016148b0565b613841816148e5565b840191505092915050565b6000613857826147cd565b61386181856147f4565b93506138718185602086016148b0565b80840191505092915050565b6000613888826147d8565b61389281856147ff565b93506138a28185602086016148b0565b6138ab816148e5565b840191505092915050565b60006138c1826147d8565b6138cb8185614810565b93506138db8185602086016148b0565b80840191505092915050565b60006138f46022836147ff565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061395a6006836147ff565b91507f6f6e6c79203100000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061399a6032836147ff565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a006026836147ff565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a66601c836147ff565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613aa6601b836147ff565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613ae6600b836147ff565b91507f707265636973656c7920310000000000000000000000000000000000000000006000830152602082019050919050565b6000613b266008836147ff565b91507f6d6f7265206574680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613b666024836147ff565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bcc6019836147ff565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c0c6026836147ff565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c72602c836147ff565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613cd8600b836147ff565b91507f6e6f7420616c6c6f7765640000000000000000000000000000000000000000006000830152602082019050919050565b6000613d186038836147ff565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d7e602a836147ff565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de46010836147ff565b91507f70726573616c65206e6f74206f70656e000000000000000000000000000000006000830152602082019050919050565b6000613e246022836147ff565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8a6020836147ff565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613eca602c836147ff565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f306020836147ff565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f706029836147ff565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd6602f836147ff565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061403c6008836147ff565b91507f746f6f206d616e790000000000000000000000000000000000000000000000006000830152602082019050919050565b600061407c6021836147ff565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e26031836147ff565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614148601d836147ff565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006141886015836147ff565b91507f616c7265616479207265636f6e737472756374656400000000000000000000006000830152602082019050919050565b60006141c8600f836147ff565b91507f7075626c6963206e6f74206f70656e00000000000000000000000000000000006000830152602082019050919050565b6000614208600b836147ff565b91507f657863656564206d696e740000000000000000000000000000000000000000006000830152602082019050919050565b61424481614897565b82525050565b6000614256828461384c565b915081905092915050565b600061426d82856138b6565b915061427982846138b6565b91508190509392505050565b600060208201905061429a60008301846137f5565b92915050565b60006080820190506142b560008301876137e6565b6142c260208301866137f5565b6142cf604083018561423b565b81810360608301526142e18184613813565b905095945050505050565b60006020820190506143016000830184613804565b92915050565b60006020820190508181036000830152614321818461387d565b905092915050565b60006020820190508181036000830152614342816138e7565b9050919050565b600060208201905081810360008301526143628161394d565b9050919050565b600060208201905081810360008301526143828161398d565b9050919050565b600060208201905081810360008301526143a2816139f3565b9050919050565b600060208201905081810360008301526143c281613a59565b9050919050565b600060208201905081810360008301526143e281613a99565b9050919050565b6000602082019050818103600083015261440281613ad9565b9050919050565b6000602082019050818103600083015261442281613b19565b9050919050565b6000602082019050818103600083015261444281613b59565b9050919050565b6000602082019050818103600083015261446281613bbf565b9050919050565b6000602082019050818103600083015261448281613bff565b9050919050565b600060208201905081810360008301526144a281613c65565b9050919050565b600060208201905081810360008301526144c281613ccb565b9050919050565b600060208201905081810360008301526144e281613d0b565b9050919050565b6000602082019050818103600083015261450281613d71565b9050919050565b6000602082019050818103600083015261452281613dd7565b9050919050565b6000602082019050818103600083015261454281613e17565b9050919050565b6000602082019050818103600083015261456281613e7d565b9050919050565b6000602082019050818103600083015261458281613ebd565b9050919050565b600060208201905081810360008301526145a281613f23565b9050919050565b600060208201905081810360008301526145c281613f63565b9050919050565b600060208201905081810360008301526145e281613fc9565b9050919050565b600060208201905081810360008301526146028161402f565b9050919050565b600060208201905081810360008301526146228161406f565b9050919050565b60006020820190508181036000830152614642816140d5565b9050919050565b600060208201905081810360008301526146628161413b565b9050919050565b600060208201905081810360008301526146828161417b565b9050919050565b600060208201905081810360008301526146a2816141bb565b9050919050565b600060208201905081810360008301526146c2816141fb565b9050919050565b60006020820190506146de600083018461423b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561470b5761470a6148e3565b5b8060405250919050565b600067ffffffffffffffff8211156147305761472f6148e3565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561475c5761475b6148e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614788576147876148e3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147b8576147b76148e3565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061482682614877565b9050919050565b600061483882614877565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148ce5780820151818401526020810190506148b3565b838111156148dd576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148ff8161481b565b811461490a57600080fd5b50565b6149168161483f565b811461492157600080fd5b50565b61492d8161484b565b811461493857600080fd5b50565b61494481614897565b811461494f57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220c095b858db434980c7edbb6826980e3e769e56e7e80482d84c841adc636e55ce64736f6c63430007060033
Deployed Bytecode
0x6080604052600436106102305760003560e01c80636c0360eb1161012e5780639ad52795116100ab578063d05b7d911161006f578063d05b7d91146107fd578063d936547e14610828578063e6714cb114610865578063e985e9c514610890578063f2fde38b146108cd57610230565b80639ad5279514610718578063a22cb46514610743578063b88d4fde1461076c578063badbb71314610795578063c87b56dd146107c057610230565b80638ad433ac116100f25780638ad433ac146106645780638da5cb5b1461068057806392ea7d9c146106ab57806395d89b41146106c2578063991049ba146106ed57610230565b80636c0360eb1461059157806370a08231146105bc578063715018a6146105f957806377cf8cc2146106105780637b3f76ae1461063b57610230565b80632db11544116101bc5780634f6ccce7116101805780634f6ccce714610488578063529be43b146104c557806355f804b31461050257806356798bda1461052b5780636352211e1461055457610230565b80632db11544146103c45780632f745c59146103e05780633588a33f1461041d5780633ccfd60b1461044857806342842e0e1461045f57610230565b8063095ea7b311610203578063095ea7b3146102f15780630fcf2e751461031a57806318160ddd146103455780631f0234d81461037057806323b872dd1461039b57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d57806308239c96146102da575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906136e5565b6108f6565b60405161026991906142ec565b60405180910390f35b34801561027e57600080fd5b5061028761095d565b6040516102949190614307565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906137bd565b6109ff565b6040516102d19190614285565b60405180910390f35b3480156102e657600080fd5b506102ef610a84565b005b3480156102fd57600080fd5b506103186004803603810190610313919061363d565b610b2c565b005b34801561032657600080fd5b5061032f610c44565b60405161033c91906142ec565b60405180910390f35b34801561035157600080fd5b5061035a610c57565b60405161036791906146c9565b60405180910390f35b34801561037c57600080fd5b50610385610c68565b60405161039291906142ec565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613537565b610c7b565b005b6103de60048036038101906103d991906137bd565b610cdb565b005b3480156103ec57600080fd5b506104076004803603810190610402919061363d565b610e42565b60405161041491906146c9565b60405180910390f35b34801561042957600080fd5b50610432610e9d565b60405161043f91906142ec565b60405180910390f35b34801561045457600080fd5b5061045d610eb0565b005b34801561046b57600080fd5b5061048660048036038101906104819190613537565b610f7b565b005b34801561049457600080fd5b506104af60048036038101906104aa91906137bd565b610f9b565b6040516104bc91906146c9565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906134d2565b610fbe565b6040516104f991906146c9565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061377c565b610fd6565b005b34801561053757600080fd5b50610552600480360381019061054d9190613679565b61105e565b005b34801561056057600080fd5b5061057b600480360381019061057691906137bd565b611162565b6040516105889190614285565b60405180910390f35b34801561059d57600080fd5b506105a6611199565b6040516105b39190614307565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906134d2565b61123b565b6040516105f091906146c9565b60405180910390f35b34801561060557600080fd5b5061060e6112fa565b005b34801561061c57600080fd5b50610625611437565b6040516106329190614307565b60405180910390f35b34801561064757600080fd5b50610662600480360381019061065d9190613737565b6114d5565b005b61067e600480360381019061067991906137bd565b6115d8565b005b34801561068c57600080fd5b506106956118cf565b6040516106a29190614285565b60405180910390f35b3480156106b757600080fd5b506106c06118f9565b005b3480156106ce57600080fd5b506106d76119a1565b6040516106e49190614307565b60405180910390f35b3480156106f957600080fd5b50610702611a43565b60405161070f9190614307565b60405180910390f35b34801561072457600080fd5b5061072d611ae5565b60405161073a91906146c9565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190613601565b611aeb565b005b34801561077857600080fd5b50610793600480360381019061078e9190613586565b611c6c565b005b3480156107a157600080fd5b506107aa611cce565b6040516107b791906146c9565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e291906137bd565b611cd4565b6040516107f49190614307565b60405180910390f35b34801561080957600080fd5b50610812611e57565b60405161081f91906146c9565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906134d2565b611e5c565b60405161085c91906146c9565b60405180910390f35b34801561087157600080fd5b5061087a611e74565b60405161088791906146c9565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b291906134fb565b611e80565b6040516108c491906142ec565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906134d2565b611f14565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f55780601f106109ca576101008083540402835291602001916109f5565b820191906000526020600020905b8154815290600101906020018083116109d857829003601f168201915b5050505050905090565b6000610a0a826120c0565b610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090614569565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a8c6120dd565b73ffffffffffffffffffffffffffffffffffffffff16610aaa6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790614589565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6000610b3782611162565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90614609565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76120dd565b73ffffffffffffffffffffffffffffffffffffffff161480610bf65750610bf581610bf06120dd565b611e80565b5b610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c906144c9565b60405180910390fd5b610c3f83836120e5565b505050565b600a60159054906101000a900460ff1681565b6000610c63600261219e565b905090565b600a60149054906101000a900460ff1681565b610c8c610c866120dd565b826121b3565b610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290614629565b60405180910390fd5b610cd6838383612291565b505050565b600a60159054906101000a900460ff16610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190614689565b60405180910390fd5b60018114610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906143e9565b60405180910390fd5b610378610d8a82610d7c610c57565b6124a890919063ffffffff16565b1115610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc2906145e9565b60405180910390fd5b67016345785d8a0000341015610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614409565b60405180910390fd5b6000610e20610c57565b9050610378610e2d610c57565b1015610e3e57610e3d33826124fd565b5b5050565b6000610e9582600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061251b90919063ffffffff16565b905092915050565b600c60009054906101000a900460ff1681565b610eb86120dd565b73ffffffffffffffffffffffffffffffffffffffff16610ed66118cf565b73ffffffffffffffffffffffffffffffffffffffff1614610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614589565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f77573d6000803e3d6000fd5b5050565b610f9683838360405180602001604052806000815250611c6c565b505050565b600080610fb283600261253590919063ffffffff16565b50905080915050919050565b600e6020528060005260406000206000915090505481565b610fde6120dd565b73ffffffffffffffffffffffffffffffffffffffff16610ffc6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990614589565b60405180910390fd5b61105b81612561565b50565b6110666120dd565b73ffffffffffffffffffffffffffffffffffffffff166110846118cf565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190614589565b60405180910390fd5b60005b825181101561115d578181815181106110f257fe5b6020026020010151600f600085848151811061110a57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506110dd565b505050565b60006111928260405180606001604052806029815260200161498560299139600261257b9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a3906144e9565b60405180910390fd5b6112f3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061259a565b9050919050565b6113026120dd565b73ffffffffffffffffffffffffffffffffffffffff166113206118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90614589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114cd5780601f106114a2576101008083540402835291602001916114cd565b820191906000526020600020905b8154815290600101906020018083116114b057829003601f168201915b505050505081565b6114dd6120dd565b73ffffffffffffffffffffffffffffffffffffffff166114fb6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154890614589565b60405180910390fd5b60001515600c60009054906101000a900460ff161515146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90614669565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055508181600b91906115d39291906130ea565b505050565b600a60149054906101000a900460ff16611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614509565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906144a9565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906146a9565b60405180910390fd5b61037861178682611778610c57565b6124a890919063ffffffff16565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906145e9565b60405180910390fd5b6001811461180a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180190614349565b60405180910390fd5b67016345785d8a0000341015611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614409565b60405180910390fd5b600061185f610c57565b905061037861186c610c57565b10156118cb5761187c33826124fd565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119016120dd565b73ffffffffffffffffffffffffffffffffffffffff1661191f6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614589565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a395780601f10611a0e57610100808354040283529160200191611a39565b820191906000526020600020905b815481529060010190602001808311611a1c57829003601f168201915b5050505050905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b600d5481565b611af36120dd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890614449565b60405180910390fd5b8060056000611b6e6120dd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1b6120dd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6091906142ec565b60405180910390a35050565b611c7d611c776120dd565b836121b3565b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390614629565b60405180910390fd5b611cc8848484846125af565b50505050565b61037881565b6060611cdf826120c0565b611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d15906145c9565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611dc75780601f10611d9c57610100808354040283529160200191611dc7565b820191906000526020600020905b815481529060010190602001808311611daa57829003601f168201915b505050505090506000611dd8611199565b9050600081511415611dee578192505050611e52565b600082511115611e23578082604051602001611e0b929190614261565b60405160208183030381529060405292505050611e52565b80611e2d8561260b565b604051602001611e3e929190614261565b604051602081830303815290604052925050505b919050565b600181565b600f6020528060005260406000206000915090505481565b67016345785d8a000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f1c6120dd565b73ffffffffffffffffffffffffffffffffffffffff16611f3a6118cf565b73ffffffffffffffffffffffffffffffffffffffff1614611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790614589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614389565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006120d682600261275290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661215883611162565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121ac8260000161276c565b9050919050565b60006121be826120c0565b6121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614489565b60405180910390fd5b600061220883611162565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227757508373ffffffffffffffffffffffffffffffffffffffff1661225f846109ff565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228857506122878185611e80565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b182611162565b73ffffffffffffffffffffffffffffffffffffffff1614612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe906145a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614429565b60405180910390fd5b61238283838361277d565b61238d6000826120e5565b6123de81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061278290919063ffffffff16565b5061243081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061279c90919063ffffffff16565b50612447818360026127b69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000808284019050838110156124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906143c9565b60405180910390fd5b8091505092915050565b6125178282604051806020016040528060008152506127eb565b5050565b600061252a8360000183612846565b60001c905092915050565b60008060008061254886600001866128b3565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612577929190613178565b5050565b600061258e846000018460001b84612936565b60001c90509392505050565b60006125a8826000016129c7565b9050919050565b6125ba848484612291565b6125c6848484846129d8565b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc90614369565b60405180910390fd5b50505050565b60606000821415612653576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274d565b600082905060005b6000821461267d578080600101915050600a828161267557fe5b04915061265b565b60008167ffffffffffffffff8111801561269657600080fd5b506040519080825280601f01601f1916602001820160405280156126c95781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461274557600a84816126ea57fe5b0660300160f81b8282806001900393508151811061270457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161273d57fe5b0493506126d8565b819450505050505b919050565b6000612764836000018360001b612b3c565b905092915050565b600081600001805490509050919050565b505050565b6000612794836000018360001b612b5f565b905092915050565b60006127ae836000018360001b612c47565b905092915050565b60006127e2846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612cb7565b90509392505050565b6127f58383612d93565b61280260008484846129d8565b612841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283890614369565b60405180910390fd5b505050565b600081836000018054905011612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890614329565b60405180910390fd5b8260000182815481106128a057fe5b9060005260206000200154905092915050565b600080828460000180549050116128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614529565b60405180910390fd5b600084600001848154811061291057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298f9190614307565b60405180910390fd5b508460000160018203815481106129ab57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006129f98473ffffffffffffffffffffffffffffffffffffffff16612f21565b612a065760019050612b34565b6000612acd63150b7a0260e01b612a1b6120dd565b888787604051602401612a3194939291906142a0565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614953603291398773ffffffffffffffffffffffffffffffffffffffff16612f349092919063ffffffff16565b9050600081806020019051810190612ae5919061370e565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612c3b5760006001820390506000600186600001805490500390506000866000018281548110612baa57fe5b9060005260206000200154905080876000018481548110612bc757fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612bff57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612c41565b60009150505b92915050565b6000612c538383612f4c565b612cac578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612cb1565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612d5e57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612d8c565b82856000016001830381548110612d7157fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614549565b60405180910390fd5b612e0c816120c0565b15612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e43906143a9565b60405180910390fd5b612e586000838361277d565b612ea981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061279c90919063ffffffff16565b50612ec0818360026127b69092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612f438484600085612f6f565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fab90614469565b60405180910390fd5b612fbd85612f21565b612ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff390614649565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613025919061424a565b60006040518083038185875af1925050503d8060008114613062576040519150601f19603f3d011682016040523d82523d6000602084013e613067565b606091505b5091509150613077828286613083565b92505050949350505050565b60608315613093578290506130e3565b6000835111156130a65782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da9190614307565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131205760008555613167565b82601f1061313957803560ff1916838001178555613167565b82800160010185558215613167579182015b8281111561316657823582559160200191906001019061314b565b5b5090506131749190613206565b5090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826131ae57600085556131f5565b82601f106131c757805160ff19168380011785556131f5565b828001600101855582156131f5579182015b828111156131f45782518255916020019190600101906131d9565b5b5090506132029190613206565b5090565b5b8082111561321f576000816000905550600101613207565b5090565b600061323661323184614715565b6146e4565b9050808382526020820190508285602086028201111561325557600080fd5b60005b85811015613285578161326b8882613377565b845260208401935060208301925050600181019050613258565b5050509392505050565b60006132a261329d84614741565b6146e4565b905080838252602082019050828560208602820111156132c157600080fd5b60005b858110156132f157816132d788826134bd565b8452602084019350602083019250506001810190506132c4565b5050509392505050565b600061330e6133098461476d565b6146e4565b90508281526020810184848401111561332657600080fd5b6133318482856148a1565b509392505050565b600061334c6133478461479d565b6146e4565b90508281526020810184848401111561336457600080fd5b61336f8482856148a1565b509392505050565b600081359050613386816148f6565b92915050565b600082601f83011261339d57600080fd5b81356133ad848260208601613223565b91505092915050565b600082601f8301126133c757600080fd5b81356133d784826020860161328f565b91505092915050565b6000813590506133ef8161490d565b92915050565b60008135905061340481614924565b92915050565b60008151905061341981614924565b92915050565b600082601f83011261343057600080fd5b81356134408482602086016132fb565b91505092915050565b60008083601f84011261345b57600080fd5b8235905067ffffffffffffffff81111561347457600080fd5b60208301915083600182028301111561348c57600080fd5b9250929050565b600082601f8301126134a457600080fd5b81356134b4848260208601613339565b91505092915050565b6000813590506134cc8161493b565b92915050565b6000602082840312156134e457600080fd5b60006134f284828501613377565b91505092915050565b6000806040838503121561350e57600080fd5b600061351c85828601613377565b925050602061352d85828601613377565b9150509250929050565b60008060006060848603121561354c57600080fd5b600061355a86828701613377565b935050602061356b86828701613377565b925050604061357c868287016134bd565b9150509250925092565b6000806000806080858703121561359c57600080fd5b60006135aa87828801613377565b94505060206135bb87828801613377565b93505060406135cc878288016134bd565b925050606085013567ffffffffffffffff8111156135e957600080fd5b6135f58782880161341f565b91505092959194509250565b6000806040838503121561361457600080fd5b600061362285828601613377565b9250506020613633858286016133e0565b9150509250929050565b6000806040838503121561365057600080fd5b600061365e85828601613377565b925050602061366f858286016134bd565b9150509250929050565b6000806040838503121561368c57600080fd5b600083013567ffffffffffffffff8111156136a657600080fd5b6136b28582860161338c565b925050602083013567ffffffffffffffff8111156136cf57600080fd5b6136db858286016133b6565b9150509250929050565b6000602082840312156136f757600080fd5b6000613705848285016133f5565b91505092915050565b60006020828403121561372057600080fd5b600061372e8482850161340a565b91505092915050565b6000806020838503121561374a57600080fd5b600083013567ffffffffffffffff81111561376457600080fd5b61377085828601613449565b92509250509250929050565b60006020828403121561378e57600080fd5b600082013567ffffffffffffffff8111156137a857600080fd5b6137b484828501613493565b91505092915050565b6000602082840312156137cf57600080fd5b60006137dd848285016134bd565b91505092915050565b6137ef8161482d565b82525050565b6137fe8161481b565b82525050565b61380d8161483f565b82525050565b600061381e826147cd565b61382881856147e3565b93506138388185602086016148b0565b613841816148e5565b840191505092915050565b6000613857826147cd565b61386181856147f4565b93506138718185602086016148b0565b80840191505092915050565b6000613888826147d8565b61389281856147ff565b93506138a28185602086016148b0565b6138ab816148e5565b840191505092915050565b60006138c1826147d8565b6138cb8185614810565b93506138db8185602086016148b0565b80840191505092915050565b60006138f46022836147ff565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061395a6006836147ff565b91507f6f6e6c79203100000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061399a6032836147ff565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613a006026836147ff565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a66601c836147ff565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613aa6601b836147ff565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613ae6600b836147ff565b91507f707265636973656c7920310000000000000000000000000000000000000000006000830152602082019050919050565b6000613b266008836147ff565b91507f6d6f7265206574680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613b666024836147ff565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bcc6019836147ff565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c0c6026836147ff565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c72602c836147ff565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613cd8600b836147ff565b91507f6e6f7420616c6c6f7765640000000000000000000000000000000000000000006000830152602082019050919050565b6000613d186038836147ff565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d7e602a836147ff565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613de46010836147ff565b91507f70726573616c65206e6f74206f70656e000000000000000000000000000000006000830152602082019050919050565b6000613e246022836147ff565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8a6020836147ff565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613eca602c836147ff565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f306020836147ff565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f706029836147ff565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fd6602f836147ff565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061403c6008836147ff565b91507f746f6f206d616e790000000000000000000000000000000000000000000000006000830152602082019050919050565b600061407c6021836147ff565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e26031836147ff565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614148601d836147ff565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006141886015836147ff565b91507f616c7265616479207265636f6e737472756374656400000000000000000000006000830152602082019050919050565b60006141c8600f836147ff565b91507f7075626c6963206e6f74206f70656e00000000000000000000000000000000006000830152602082019050919050565b6000614208600b836147ff565b91507f657863656564206d696e740000000000000000000000000000000000000000006000830152602082019050919050565b61424481614897565b82525050565b6000614256828461384c565b915081905092915050565b600061426d82856138b6565b915061427982846138b6565b91508190509392505050565b600060208201905061429a60008301846137f5565b92915050565b60006080820190506142b560008301876137e6565b6142c260208301866137f5565b6142cf604083018561423b565b81810360608301526142e18184613813565b905095945050505050565b60006020820190506143016000830184613804565b92915050565b60006020820190508181036000830152614321818461387d565b905092915050565b60006020820190508181036000830152614342816138e7565b9050919050565b600060208201905081810360008301526143628161394d565b9050919050565b600060208201905081810360008301526143828161398d565b9050919050565b600060208201905081810360008301526143a2816139f3565b9050919050565b600060208201905081810360008301526143c281613a59565b9050919050565b600060208201905081810360008301526143e281613a99565b9050919050565b6000602082019050818103600083015261440281613ad9565b9050919050565b6000602082019050818103600083015261442281613b19565b9050919050565b6000602082019050818103600083015261444281613b59565b9050919050565b6000602082019050818103600083015261446281613bbf565b9050919050565b6000602082019050818103600083015261448281613bff565b9050919050565b600060208201905081810360008301526144a281613c65565b9050919050565b600060208201905081810360008301526144c281613ccb565b9050919050565b600060208201905081810360008301526144e281613d0b565b9050919050565b6000602082019050818103600083015261450281613d71565b9050919050565b6000602082019050818103600083015261452281613dd7565b9050919050565b6000602082019050818103600083015261454281613e17565b9050919050565b6000602082019050818103600083015261456281613e7d565b9050919050565b6000602082019050818103600083015261458281613ebd565b9050919050565b600060208201905081810360008301526145a281613f23565b9050919050565b600060208201905081810360008301526145c281613f63565b9050919050565b600060208201905081810360008301526145e281613fc9565b9050919050565b600060208201905081810360008301526146028161402f565b9050919050565b600060208201905081810360008301526146228161406f565b9050919050565b60006020820190508181036000830152614642816140d5565b9050919050565b600060208201905081810360008301526146628161413b565b9050919050565b600060208201905081810360008301526146828161417b565b9050919050565b600060208201905081810360008301526146a2816141bb565b9050919050565b600060208201905081810360008301526146c2816141fb565b9050919050565b60006020820190506146de600083018461423b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561470b5761470a6148e3565b5b8060405250919050565b600067ffffffffffffffff8211156147305761472f6148e3565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561475c5761475b6148e3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614788576147876148e3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156147b8576147b76148e3565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061482682614877565b9050919050565b600061483882614877565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148ce5780820151818401526020810190506148b3565b838111156148dd576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6148ff8161481b565b811461490a57600080fd5b50565b6149168161483f565b811461492157600080fd5b50565b61492d8161484b565b811461493857600080fd5b50565b61494481614897565b811461494f57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220c095b858db434980c7edbb6826980e3e769e56e7e80482d84c841adc636e55ce64736f6c63430007060033
Deployed Bytecode Sourcemap
74423:3783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11446:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57319:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60429:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75961:110;;;;;;;;;;;;;:::i;:::-;;59903:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74966:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59317:223;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74919:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61423:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76622:616;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59051:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75094:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75228:143;;;;;;;;;;;;;:::i;:::-;;61839:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59637:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75437:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75838:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75589:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57047:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58842:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56732:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73682:160;;;;;;;;;;;;;:::i;:::-;;75048:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76214:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77254:927;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72955:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76087:115;;;;;;;;;;;;;:::i;:::-;;57516:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76483:123;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75177:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60758:315;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62089:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74820:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57719:856;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74727:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75529:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74610:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61164:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74021:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11446:158;11531:4;11559:20;:33;11580:11;11559:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11552:40;;11446:158;;;:::o;57319:108::-;57373:13;57410:5;57403:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57319:108;:::o;60429:237::-;60505:7;60537:16;60545:7;60537;:16::i;:::-;60529:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60630:15;:24;60646:7;60630:24;;;;;;;;;;;;;;;;;;;;;60623:31;;60429:237;;;:::o;75961:110::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76044:15:::1;;;;;;;;;;;76043:16;76025:15;;:34;;;;;;;;;;;;;;;;;;75961:110::o:0;59903:440::-;59988:13;60004:23;60019:7;60004:14;:23::i;:::-;59988:39;;60056:5;60050:11;;:2;:11;;;;60042:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60144:5;60128:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;60153:44;60177:5;60184:12;:10;:12::i;:::-;60153:23;:44::i;:::-;60128:69;60120:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;60310:21;60319:2;60323:7;60310:8;:21::i;:::-;59903:440;;;:::o;74966:38::-;;;;;;;;;;;;;:::o;59317:223::-;59378:7;59507:21;:12;:19;:21::i;:::-;59500:28;;59317:223;:::o;74919:36::-;;;;;;;;;;;;;:::o;61423:325::-;61592:41;61611:12;:10;:12::i;:::-;61625:7;61592:18;:41::i;:::-;61584:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;61708:28;61718:4;61724:2;61728:7;61708:9;:28::i;:::-;61423:325;;;:::o;76622:616::-;76703:18;;;;;;;;;;;76695:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;74769:1;76780:15;:37;76772:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;74862:3;76869:34;76887:15;76869:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:53;;76861:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;74648:18;76987:9;:24;;76979:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;77074:14;77091:13;:11;:13::i;:::-;77074:30;;74862:3;77123:13;:11;:13::i;:::-;:31;77119:108;;;77175:32;77185:10;77197:9;77175;:32::i;:::-;77119:108;76622:616;;:::o;59051:170::-;59148:7;59179:30;59203:5;59179:13;:20;59193:5;59179:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;59172:37;;59051:170;;;;:::o;75094:39::-;;;;;;;;;;;;;:::o;75228:143::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75280:12:::1;75295:21;75280:36;;75331:10;:19;;:28;75351:7;75331:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73282:1;75228:143::o:0;61839:159::-;61947:39;61964:4;61970:2;61974:7;61947:39;;;;;;;;;;;;:16;:39::i;:::-;61839:159;;;:::o;59637:184::-;59712:7;59737:15;59758:22;59774:5;59758:12;:15;;:22;;;;:::i;:::-;59736:44;;;59802:7;59795:14;;;59637:184;;;:::o;75437:49::-;;;;;;;;;;;;;;;;;:::o;75838:107::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75913:20:::1;75925:7;75913:11;:20::i;:::-;75838:107:::0;:::o;75589:237::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75707:6:::1;75702:113;75723:5;:12;75719:1;:16;75702:113;;;75785:11;75797:1;75785:14;;;;;;;;;;;;;;75761:11;:21;75773:5;75779:1;75773:8;;;;;;;;;;;;;;75761:21;;;;;;;;;;;;;;;:38;;;;75737:3;;;;;;;75702:113;;;;75589:237:::0;;:::o;57047:185::-;57119:7;57150:70;57167:7;57150:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;57143:77;;57047:185;;;:::o;58842:105::-;58890:13;58927:8;58920:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58842:105;:::o;56732:233::-;56804:7;56853:1;56836:19;;:5;:19;;;;56828:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;56924:29;:13;:20;56938:5;56924:20;;;;;;;;;;;;;;;:27;:29::i;:::-;56917:36;;56732:233;;;:::o;73682:160::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73793:1:::1;73756:40;;73777:6;;;;;;;;;;;73756:40;;;;;;;;;;;;73828:1;73811:6;;:19;;;;;;;;;;;;;;;;;;73682:160::o:0;75048:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76214:253::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76335:5:::1;76312:28;;:19;;;;;;;;;;;:28;;;76304:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;76403:4;76381:19;;:26;;;;;;;;;;;;;;;;;;76446:9;;76422:21;:33;;;;;;;:::i;:::-;;76214:253:::0;;:::o;77254:927::-;77338:15;;;;;;;;;;;77330:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;77448:1;77422:11;:23;77434:10;77422:23;;;;;;;;;;;;;;;;:27;77414:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;77533:13;:25;77547:10;77533:25;;;;;;;;;;;;;;;;77507:11;:23;77519:10;77507:23;;;;;;;;;;;;;;;;:51;77499:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;74862:3;77626:34;77644:15;77626:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:53;;77618:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;74769:1;77783:15;:37;77775:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;74648:18;77877:9;:24;;77869:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;77972:14;77989:13;:11;:13::i;:::-;77972:30;;74862:3;78021:13;:11;:13::i;:::-;:31;78017:147;;;78073:32;78083:10;78095:9;78073;:32::i;:::-;78147:1;78118:13;:25;78132:10;78118:25;;;;;;;;;;;;;;;;:30;;;;;;;;;;;78017:147;77254:927;;:::o;72955:95::-;73001:7;73032:6;;;;;;;;;;;73025:13;;72955:95;:::o;76087:115::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76172:18:::1;;;;;;;;;;;76171:19;76150:18;;:40;;;;;;;;;;;;;;;;;;76087:115::o:0;57516:112::-;57572:13;57609:7;57602:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57516:112;:::o;76483:123::-;76536:13;76573:21;76566:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76483:123;:::o;75177:30::-;;;;:::o;60758:315::-;60877:12;:10;:12::i;:::-;60865:24;;:8;:24;;;;60857:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60985:8;60940:18;:32;60959:12;:10;:12::i;:::-;60940:32;;;;;;;;;;;;;;;:42;60973:8;60940:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;61042:8;61013:48;;61028:12;:10;:12::i;:::-;61013:48;;;61052:8;61013:48;;;;;;:::i;:::-;;;;;;;;60758:315;;:::o;62089:297::-;62225:41;62244:12;:10;:12::i;:::-;62258:7;62225:18;:41::i;:::-;62217:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;62335:39;62349:4;62355:2;62359:7;62368:5;62335:13;:39::i;:::-;62089:297;;;;:::o;74820:45::-;74862:3;74820:45;:::o;57719:856::-;57792:13;57830:16;57838:7;57830;:16::i;:::-;57822:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57919:23;57945:10;:19;57956:7;57945:19;;;;;;;;;;;57919:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57979:18;58000:9;:7;:9::i;:::-;57979:30;;58119:1;58103:4;58097:18;:23;58093:80;;;58148:9;58141:16;;;;;;58093:80;58311:1;58291:9;58285:23;:27;58281:116;;;58364:4;58370:9;58347:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58333:48;;;;;;58281:116;58537:4;58543:18;:7;:16;:18::i;:::-;58520:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58506:57;;;;57719:856;;;;:::o;74727:43::-;74769:1;74727:43;:::o;75529:47::-;;;;;;;;;;;;;;;;;:::o;74610:56::-;74648:18;74610:56;:::o;61164:172::-;61261:4;61289:18;:25;61308:5;61289:25;;;;;;;;;;;;;;;:35;61315:8;61289:35;;;;;;;;;;;;;;;;;;;;;;;;;61282:42;;61164:172;;;;:::o;74021:260::-;73218:12;:10;:12::i;:::-;73207:23;;:7;:5;:7::i;:::-;:23;;;73199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74134:1:::1;74114:22;;:8;:22;;;;74106:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;74228:8;74199:38;;74220:6;;;;;;;;;;;74199:38;;;;;;;;;;;;74261:8;74252:6;;:17;;;;;;;;;;;;;;;;;;74021:260:::0;:::o;63985:135::-;64050:4;64078:30;64100:7;64078:12;:21;;:30;;;;:::i;:::-;64071:37;;63985:135;;;:::o;730:114::-;783:15;822:10;815:17;;730:114;:::o;70707:204::-;70813:2;70786:15;:24;70802:7;70786:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;70873:7;70869:2;70835:46;;70844:23;70859:7;70844:14;:23::i;:::-;70835:46;;;;;;;;;;;;70707:204;;:::o;49281:131::-;49350:7;49381:19;49389:3;:10;;49381:7;:19::i;:::-;49374:26;;49281:131;;;:::o;64323:371::-;64416:4;64445:16;64453:7;64445;:16::i;:::-;64437:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64525:13;64541:23;64556:7;64541:14;:23::i;:::-;64525:39;;64598:5;64587:16;;:7;:16;;;:51;;;;64631:7;64607:31;;:20;64619:7;64607:11;:20::i;:::-;:31;;;64587:51;:94;;;;64642:39;64666:5;64673:7;64642:23;:39::i;:::-;64587:94;64579:103;;;64323:371;;;;:::o;67839:659::-;67968:4;67941:31;;:23;67956:7;67941:14;:23::i;:::-;:31;;;67933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;68073:1;68059:16;;:2;:16;;;;68051:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;68137:39;68158:4;68164:2;68168:7;68137:20;:39::i;:::-;68253:29;68270:1;68274:7;68253:8;:29::i;:::-;68303:35;68330:7;68303:13;:19;68317:4;68303:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;68353:30;68375:7;68353:13;:17;68367:2;68353:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;68404:29;68421:7;68430:2;68404:12;:16;;:29;;;;;:::i;:::-;;68478:7;68474:2;68459:27;;68468:4;68459:27;;;;;;;;;;;;67839:659;;;:::o;15436:195::-;15494:7;15518:9;15534:1;15530;:5;15518:17;;15563:1;15558;:6;;15550:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15618:1;15611:8;;;15436:195;;;;:::o;65085:118::-;65165:26;65175:2;65179:7;65165:26;;;;;;;;;;;;:9;:26::i;:::-;65085:118;;:::o;40180:145::-;40251:7;40290:22;40294:3;:10;;40306:5;40290:3;:22::i;:::-;40282:31;;40275:38;;40180:145;;;;:::o;49795:248::-;49875:7;49884;49909:11;49922:13;49939:22;49943:3;:10;;49955:5;49939:3;:22::i;:::-;49908:53;;;;49992:3;49984:12;;50022:5;50014:14;;49976:55;;;;;;49795:248;;;;;:::o;69175:108::-;69263:8;69252;:19;;;;;;;;;;;;:::i;:::-;;69175:108;:::o;51213:221::-;51320:7;51375:44;51380:3;:10;;51400:3;51392:12;;51406;51375:4;:44::i;:::-;51367:53;;51344:78;;51213:221;;;;;:::o;39666:122::-;39726:7;39757:19;39765:3;:10;;39757:7;:19::i;:::-;39750:26;;39666:122;;;:::o;63348:284::-;63466:28;63476:4;63482:2;63486:7;63466:9;:28::i;:::-;63517:48;63540:4;63546:2;63550:7;63559:5;63517:22;:48::i;:::-;63509:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;63348:284;;;;:::o;51749:830::-;51805:13;52051:1;52042:5;:10;52038:61;;;52073:10;;;;;;;;;;;;;;;;;;;;;52038:61;52113:12;52128:5;52113:20;;52148:14;52177:90;52192:1;52184:4;:9;52177:90;;52214:8;;;;;;;52249:2;52241:10;;;;;;;;;52177:90;;;52281:19;52313:6;52303:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52281:39;;52335:13;52360:1;52351:6;:10;52335:26;;52383:5;52376:12;;52403:129;52418:1;52410:4;:9;52403:129;;52483:2;52476:4;:9;;;;;;52471:2;:14;52458:29;;52440:6;52447:7;;;;;;;52440:15;;;;;;;;;;;:47;;;;;;;;;;;52514:2;52506:10;;;;;;;;;52403:129;;;52560:6;52546:21;;;;;;51749:830;;;;:::o;49014:159::-;49098:4;49126:35;49136:3;:10;;49156:3;49148:12;;49126:9;:35::i;:::-;49119:42;;49014:159;;;;:::o;45492:118::-;45548:7;45579:3;:12;;:19;;;;45572:26;;45492:118;;;:::o;71592:93::-;;;;:::o;39155:145::-;39225:4;39253:35;39261:3;:10;;39281:5;39273:14;;39253:7;:35::i;:::-;39246:42;;39155:145;;;;:::o;38808:139::-;38875:4;38903:32;38908:3;:10;;38928:5;38920:14;;38903:4;:32::i;:::-;38896:39;;38808:139;;;;:::o;48373:193::-;48462:4;48490:64;48495:3;:10;;48515:3;48507:12;;48545:5;48529:23;;48521:32;;48490:4;:64::i;:::-;48483:71;;48373:193;;;;;:::o;65454:262::-;65554:18;65560:2;65564:7;65554:5;:18::i;:::-;65595:54;65626:1;65630:2;65634:7;65643:5;65595:22;:54::i;:::-;65587:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;65454:262;;;:::o;34562:216::-;34629:7;34682:5;34661:3;:11;;:18;;;;:26;34653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34748:3;:11;;34760:5;34748:18;;;;;;;;;;;;;;;;34741:25;;34562:216;;;;:::o;46013:299::-;46080:7;46089;46143:5;46121:3;:12;;:19;;;;:27;46113:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46208:22;46233:3;:12;;46246:5;46233:19;;;;;;;;;;;;;;;;;;46208:44;;46275:5;:10;;;46287:5;:12;;;46267:33;;;;;46013:299;;;;;:::o;47654:335::-;47748:7;47772:16;47791:3;:12;;:17;47804:3;47791:17;;;;;;;;;;;;47772:36;;47843:1;47831:8;:13;;47846:12;47823:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;47917:3;:12;;47941:1;47930:8;:12;47917:26;;;;;;;;;;;;;;;;;;:33;;;47910:40;;;47654:335;;;;;:::o;34053:117::-;34109:7;34140:3;:11;;:18;;;;34133:25;;34053:117;;;:::o;69896:664::-;70021:4;70056:15;:2;:13;;;:15::i;:::-;70051:68;;70099:4;70092:11;;;;70051:68;70133:23;70159:276;70216:45;;;70280:12;:10;:12::i;:::-;70311:4;70334:7;70360:5;70175:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70159:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;70133:302;;70450:13;70477:10;70466:32;;;;;;;;;;;;:::i;:::-;70450:48;;53425:10;70531:16;;70521:26;;;:6;:26;;;;70513:35;;;;69896:664;;;;;;;:::o;45244:133::-;45315:4;45364:1;45343:3;:12;;:17;45356:3;45343:17;;;;;;;;;;;;:22;;45336:29;;45244:133;;;;:::o;32032:1672::-;32098:4;32224:18;32245:3;:12;;:19;32258:5;32245:19;;;;;;;;;;;;32224:40;;32303:1;32289:10;:15;32285:1408;;32671:21;32708:1;32695:10;:14;32671:38;;32728:17;32769:1;32748:3;:11;;:18;;;;:22;32728:42;;33035:17;33055:3;:11;;33067:9;33055:22;;;;;;;;;;;;;;;;33035:42;;33213:9;33184:3;:11;;33196:13;33184:26;;;;;;;;;;;;;;;:38;;;;33340:1;33324:13;:17;33298:3;:12;;:23;33311:9;33298:23;;;;;;;;;;;:43;;;;33462:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;33569:3;:12;;:19;33582:5;33569:19;;;;;;;;;;;33562:26;;;33620:4;33613:11;;;;;;;;32285:1408;33672:5;33665:12;;;32032:1672;;;;;:::o;31370:454::-;31433:4;31459:21;31469:3;31474:5;31459:9;:21::i;:::-;31454:359;;31501:3;:11;;31518:5;31501:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31696:3;:11;;:18;;;;31674:3;:12;;:19;31687:5;31674:19;;;;;;;;;;;:40;;;;31740:4;31733:11;;;;31454:359;31792:5;31785:12;;31370:454;;;;;:::o;42512:748::-;42588:4;42712:16;42731:3;:12;;:17;42744:3;42731:17;;;;;;;;;;;;42712:36;;42785:1;42773:8;:13;42769:480;;;42844:3;:12;;42862:38;;;;;;;;42879:3;42862:38;;;;42892:5;42862:38;;;42844:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43071:3;:12;;:19;;;;43051:3;:12;;:17;43064:3;43051:17;;;;;;;;;;;:39;;;;43116:4;43109:11;;;;;42769:480;43197:5;43161:3;:12;;43185:1;43174:8;:12;43161:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;43228:5;43221:12;;;42512:748;;;;;;:::o;66108:448::-;66206:1;66192:16;;:2;:16;;;;66184:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;66269:16;66277:7;66269;:16::i;:::-;66268:17;66260:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66339:45;66368:1;66372:2;66376:7;66339:20;:45::i;:::-;66405:30;66427:7;66405:13;:17;66419:2;66405:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;66456:29;66473:7;66482:2;66456:12;:16;;:29;;;;;:::i;:::-;;66536:7;66532:2;66511:33;;66528:1;66511:33;;;;;;;;;;;;66108:448;;:::o;21509:458::-;21569:4;21797:12;21916:7;21904:20;21896:28;;21954:1;21947:4;:8;21940:15;;;21509:458;;;:::o;24679:203::-;24782:12;24818:52;24840:6;24848:4;24854:1;24857:12;24818:21;:52::i;:::-;24811:59;;24679:203;;;;;:::o;33810:137::-;33883:4;33934:1;33911:3;:12;;:19;33924:5;33911:19;;;;;;;;;;;;:24;;33904:31;;33810:137;;;;:::o;25831:558::-;25958:12;26020:5;25995:21;:30;;25987:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:18;26102:6;26091:10;:18::i;:::-;26083:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26229:12;26243:23;26270:6;:11;;26290:5;26298:4;26270:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26228:75;;;;26325:52;26343:7;26352:10;26364:12;26325:17;:52::i;:::-;26318:59;;;;25831:558;;;;;;:::o;28599:810::-;28714:12;28747:7;28743:655;;;28782:10;28775:17;;;;28743:655;28928:1;28908:10;:17;:21;28904:479;;;29191:10;29185:17;29256:15;29243:10;29239:2;29235:19;29228:44;29135:160;29350:12;29343:20;;;;;;;;;;;:::i;:::-;;;;;;;;28599:810;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;669:622::-;;790:80;805:64;862:6;805:64;:::i;:::-;790:80;:::i;:::-;781:89;;890:5;918:6;911:5;904:21;944:4;937:5;933:16;926:23;;969:6;1019:3;1011:4;1003:6;999:17;994:3;990:27;987:36;984:2;;;1036:1;1033;1026:12;984:2;1064:1;1049:236;1074:6;1071:1;1068:13;1049:236;;;1141:3;1169:37;1202:3;1190:10;1169:37;:::i;:::-;1164:3;1157:50;1236:4;1231:3;1227:14;1220:21;;1270:4;1265:3;1261:14;1254:21;;1109:176;1096:1;1093;1089:9;1084:14;;1049:236;;;1053:14;771:520;;;;;;;:::o;1297:342::-;;1399:64;1414:48;1455:6;1414:48;:::i;:::-;1399:64;:::i;:::-;1390:73;;1486:6;1479:5;1472:21;1524:4;1517:5;1513:16;1562:3;1553:6;1548:3;1544:16;1541:25;1538:2;;;1579:1;1576;1569:12;1538:2;1592:41;1626:6;1621:3;1616;1592:41;:::i;:::-;1380:259;;;;;;:::o;1645:344::-;;1748:65;1763:49;1805:6;1763:49;:::i;:::-;1748:65;:::i;:::-;1739:74;;1836:6;1829:5;1822:21;1874:4;1867:5;1863:16;1912:3;1903:6;1898:3;1894:16;1891:25;1888:2;;;1929:1;1926;1919:12;1888:2;1942:41;1976:6;1971:3;1966;1942:41;:::i;:::-;1729:260;;;;;;:::o;1995:139::-;;2079:6;2066:20;2057:29;;2095:33;2122:5;2095:33;:::i;:::-;2047:87;;;;:::o;2157:303::-;;2277:3;2270:4;2262:6;2258:17;2254:27;2244:2;;2295:1;2292;2285:12;2244:2;2335:6;2322:20;2360:94;2450:3;2442:6;2435:4;2427:6;2423:17;2360:94;:::i;:::-;2351:103;;2234:226;;;;;:::o;2483:303::-;;2603:3;2596:4;2588:6;2584:17;2580:27;2570:2;;2621:1;2618;2611:12;2570:2;2661:6;2648:20;2686:94;2776:3;2768:6;2761:4;2753:6;2749:17;2686:94;:::i;:::-;2677:103;;2560:226;;;;;:::o;2792:133::-;;2873:6;2860:20;2851:29;;2889:30;2913:5;2889:30;:::i;:::-;2841:84;;;;:::o;2931:137::-;;3014:6;3001:20;2992:29;;3030:32;3056:5;3030:32;:::i;:::-;2982:86;;;;:::o;3074:141::-;;3161:6;3155:13;3146:22;;3177:32;3203:5;3177:32;:::i;:::-;3136:79;;;;:::o;3234:271::-;;3338:3;3331:4;3323:6;3319:17;3315:27;3305:2;;3356:1;3353;3346:12;3305:2;3396:6;3383:20;3421:78;3495:3;3487:6;3480:4;3472:6;3468:17;3421:78;:::i;:::-;3412:87;;3295:210;;;;;:::o;3525:352::-;;;3643:3;3636:4;3628:6;3624:17;3620:27;3610:2;;3661:1;3658;3651:12;3610:2;3697:6;3684:20;3674:30;;3727:18;3719:6;3716:30;3713:2;;;3759:1;3756;3749:12;3713:2;3796:4;3788:6;3784:17;3772:29;;3850:3;3842:4;3834:6;3830:17;3820:8;3816:32;3813:41;3810:2;;;3867:1;3864;3857:12;3810:2;3600:277;;;;;:::o;3897:273::-;;4002:3;3995:4;3987:6;3983:17;3979:27;3969:2;;4020:1;4017;4010:12;3969:2;4060:6;4047:20;4085:79;4160:3;4152:6;4145:4;4137:6;4133:17;4085:79;:::i;:::-;4076:88;;3959:211;;;;;:::o;4176:139::-;;4260:6;4247:20;4238:29;;4276:33;4303:5;4276:33;:::i;:::-;4228:87;;;;:::o;4321:262::-;;4429:2;4417:9;4408:7;4404:23;4400:32;4397:2;;;4445:1;4442;4435:12;4397:2;4488:1;4513:53;4558:7;4549:6;4538:9;4534:22;4513:53;:::i;:::-;4503:63;;4459:117;4387:196;;;;:::o;4589:407::-;;;4714:2;4702:9;4693:7;4689:23;4685:32;4682:2;;;4730:1;4727;4720:12;4682:2;4773:1;4798:53;4843:7;4834:6;4823:9;4819:22;4798:53;:::i;:::-;4788:63;;4744:117;4900:2;4926:53;4971:7;4962:6;4951:9;4947:22;4926:53;:::i;:::-;4916:63;;4871:118;4672:324;;;;;:::o;5002:552::-;;;;5144:2;5132:9;5123:7;5119:23;5115:32;5112:2;;;5160:1;5157;5150:12;5112:2;5203:1;5228:53;5273:7;5264:6;5253:9;5249:22;5228:53;:::i;:::-;5218:63;;5174:117;5330:2;5356:53;5401:7;5392:6;5381:9;5377:22;5356:53;:::i;:::-;5346:63;;5301:118;5458:2;5484:53;5529:7;5520:6;5509:9;5505:22;5484:53;:::i;:::-;5474:63;;5429:118;5102:452;;;;;:::o;5560:809::-;;;;;5728:3;5716:9;5707:7;5703:23;5699:33;5696:2;;;5745:1;5742;5735:12;5696:2;5788:1;5813:53;5858:7;5849:6;5838:9;5834:22;5813:53;:::i;:::-;5803:63;;5759:117;5915:2;5941:53;5986:7;5977:6;5966:9;5962:22;5941:53;:::i;:::-;5931:63;;5886:118;6043:2;6069:53;6114:7;6105:6;6094:9;6090:22;6069:53;:::i;:::-;6059:63;;6014:118;6199:2;6188:9;6184:18;6171:32;6230:18;6222:6;6219:30;6216:2;;;6262:1;6259;6252:12;6216:2;6290:62;6344:7;6335:6;6324:9;6320:22;6290:62;:::i;:::-;6280:72;;6142:220;5686:683;;;;;;;:::o;6375:401::-;;;6497:2;6485:9;6476:7;6472:23;6468:32;6465:2;;;6513:1;6510;6503:12;6465:2;6556:1;6581:53;6626:7;6617:6;6606:9;6602:22;6581:53;:::i;:::-;6571:63;;6527:117;6683:2;6709:50;6751:7;6742:6;6731:9;6727:22;6709:50;:::i;:::-;6699:60;;6654:115;6455:321;;;;;:::o;6782:407::-;;;6907:2;6895:9;6886:7;6882:23;6878:32;6875:2;;;6923:1;6920;6913:12;6875:2;6966:1;6991:53;7036:7;7027:6;7016:9;7012:22;6991:53;:::i;:::-;6981:63;;6937:117;7093:2;7119:53;7164:7;7155:6;7144:9;7140:22;7119:53;:::i;:::-;7109:63;;7064:118;6865:324;;;;;:::o;7195:693::-;;;7370:2;7358:9;7349:7;7345:23;7341:32;7338:2;;;7386:1;7383;7376:12;7338:2;7457:1;7446:9;7442:17;7429:31;7487:18;7479:6;7476:30;7473:2;;;7519:1;7516;7509:12;7473:2;7547:78;7617:7;7608:6;7597:9;7593:22;7547:78;:::i;:::-;7537:88;;7400:235;7702:2;7691:9;7687:18;7674:32;7733:18;7725:6;7722:30;7719:2;;;7765:1;7762;7755:12;7719:2;7793:78;7863:7;7854:6;7843:9;7839:22;7793:78;:::i;:::-;7783:88;;7645:236;7328:560;;;;;:::o;7894:260::-;;8001:2;7989:9;7980:7;7976:23;7972:32;7969:2;;;8017:1;8014;8007:12;7969:2;8060:1;8085:52;8129:7;8120:6;8109:9;8105:22;8085:52;:::i;:::-;8075:62;;8031:116;7959:195;;;;:::o;8160:282::-;;8278:2;8266:9;8257:7;8253:23;8249:32;8246:2;;;8294:1;8291;8284:12;8246:2;8337:1;8362:63;8417:7;8408:6;8397:9;8393:22;8362:63;:::i;:::-;8352:73;;8308:127;8236:206;;;;:::o;8448:395::-;;;8576:2;8564:9;8555:7;8551:23;8547:32;8544:2;;;8592:1;8589;8582:12;8544:2;8663:1;8652:9;8648:17;8635:31;8693:18;8685:6;8682:30;8679:2;;;8725:1;8722;8715:12;8679:2;8761:65;8818:7;8809:6;8798:9;8794:22;8761:65;:::i;:::-;8743:83;;;;8606:230;8534:309;;;;;:::o;8849:375::-;;8967:2;8955:9;8946:7;8942:23;8938:32;8935:2;;;8983:1;8980;8973:12;8935:2;9054:1;9043:9;9039:17;9026:31;9084:18;9076:6;9073:30;9070:2;;;9116:1;9113;9106:12;9070:2;9144:63;9199:7;9190:6;9179:9;9175:22;9144:63;:::i;:::-;9134:73;;8997:220;8925:299;;;;:::o;9230:262::-;;9338:2;9326:9;9317:7;9313:23;9309:32;9306:2;;;9354:1;9351;9344:12;9306:2;9397:1;9422:53;9467:7;9458:6;9447:9;9443:22;9422:53;:::i;:::-;9412:63;;9368:117;9296:196;;;;:::o;9498:142::-;9601:32;9627:5;9601:32;:::i;:::-;9596:3;9589:45;9579:61;;:::o;9646:118::-;9733:24;9751:5;9733:24;:::i;:::-;9728:3;9721:37;9711:53;;:::o;9770:109::-;9851:21;9866:5;9851:21;:::i;:::-;9846:3;9839:34;9829:50;;:::o;9885:360::-;;9999:38;10031:5;9999:38;:::i;:::-;10053:70;10116:6;10111:3;10053:70;:::i;:::-;10046:77;;10132:52;10177:6;10172:3;10165:4;10158:5;10154:16;10132:52;:::i;:::-;10209:29;10231:6;10209:29;:::i;:::-;10204:3;10200:39;10193:46;;9975:270;;;;;:::o;10251:373::-;;10383:38;10415:5;10383:38;:::i;:::-;10437:88;10518:6;10513:3;10437:88;:::i;:::-;10430:95;;10534:52;10579:6;10574:3;10567:4;10560:5;10556:16;10534:52;:::i;:::-;10611:6;10606:3;10602:16;10595:23;;10359:265;;;;;:::o;10630:364::-;;10746:39;10779:5;10746:39;:::i;:::-;10801:71;10865:6;10860:3;10801:71;:::i;:::-;10794:78;;10881:52;10926:6;10921:3;10914:4;10907:5;10903:16;10881:52;:::i;:::-;10958:29;10980:6;10958:29;:::i;:::-;10953:3;10949:39;10942:46;;10722:272;;;;;:::o;11000:377::-;;11134:39;11167:5;11134:39;:::i;:::-;11189:89;11271:6;11266:3;11189:89;:::i;:::-;11182:96;;11287:52;11332:6;11327:3;11320:4;11313:5;11309:16;11287:52;:::i;:::-;11364:6;11359:3;11355:16;11348:23;;11110:267;;;;;:::o;11383:366::-;;11546:67;11610:2;11605:3;11546:67;:::i;:::-;11539:74;;11643:34;11639:1;11634:3;11630:11;11623:55;11709:4;11704:2;11699:3;11695:12;11688:26;11740:2;11735:3;11731:12;11724:19;;11529:220;;;:::o;11755:303::-;;11918:66;11982:1;11977:3;11918:66;:::i;:::-;11911:73;;12014:8;12010:1;12005:3;12001:11;11994:29;12049:2;12044:3;12040:12;12033:19;;11901:157;;;:::o;12064:382::-;;12227:67;12291:2;12286:3;12227:67;:::i;:::-;12220:74;;12324:34;12320:1;12315:3;12311:11;12304:55;12390:20;12385:2;12380:3;12376:12;12369:42;12437:2;12432:3;12428:12;12421:19;;12210:236;;;:::o;12452:370::-;;12615:67;12679:2;12674:3;12615:67;:::i;:::-;12608:74;;12712:34;12708:1;12703:3;12699:11;12692:55;12778:8;12773:2;12768:3;12764:12;12757:30;12813:2;12808:3;12804:12;12797:19;;12598:224;;;:::o;12828:326::-;;12991:67;13055:2;13050:3;12991:67;:::i;:::-;12984:74;;13088:30;13084:1;13079:3;13075:11;13068:51;13145:2;13140:3;13136:12;13129:19;;12974:180;;;:::o;13160:325::-;;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13420:29;13416:1;13411:3;13407:11;13400:50;13476:2;13471:3;13467:12;13460:19;;13306:179;;;:::o;13491:309::-;;13654:67;13718:2;13713:3;13654:67;:::i;:::-;13647:74;;13751:13;13747:1;13742:3;13738:11;13731:34;13791:2;13786:3;13782:12;13775:19;;13637:163;;;:::o;13806:305::-;;13969:66;14033:1;14028:3;13969:66;:::i;:::-;13962:73;;14065:10;14061:1;14056:3;14052:11;14045:31;14102:2;14097:3;14093:12;14086:19;;13952:159;;;:::o;14117:368::-;;14280:67;14344:2;14339:3;14280:67;:::i;:::-;14273:74;;14377:34;14373:1;14368:3;14364:11;14357:55;14443:6;14438:2;14433:3;14429:12;14422:28;14476:2;14471:3;14467:12;14460:19;;14263:222;;;:::o;14491:323::-;;14654:67;14718:2;14713:3;14654:67;:::i;:::-;14647:74;;14751:27;14747:1;14742:3;14738:11;14731:48;14805:2;14800:3;14796:12;14789:19;;14637:177;;;:::o;14820:370::-;;14983:67;15047:2;15042:3;14983:67;:::i;:::-;14976:74;;15080:34;15076:1;15071:3;15067:11;15060:55;15146:8;15141:2;15136:3;15132:12;15125:30;15181:2;15176:3;15172:12;15165:19;;14966:224;;;:::o;15196:376::-;;15359:67;15423:2;15418:3;15359:67;:::i;:::-;15352:74;;15456:34;15452:1;15447:3;15443:11;15436:55;15522:14;15517:2;15512:3;15508:12;15501:36;15563:2;15558:3;15554:12;15547:19;;15342:230;;;:::o;15578:309::-;;15741:67;15805:2;15800:3;15741:67;:::i;:::-;15734:74;;15838:13;15834:1;15829:3;15825:11;15818:34;15878:2;15873:3;15869:12;15862:19;;15724:163;;;:::o;15893:388::-;;16056:67;16120:2;16115:3;16056:67;:::i;:::-;16049:74;;16153:34;16149:1;16144:3;16140:11;16133:55;16219:26;16214:2;16209:3;16205:12;16198:48;16272:2;16267:3;16263:12;16256:19;;16039:242;;;:::o;16287:374::-;;16450:67;16514:2;16509:3;16450:67;:::i;:::-;16443:74;;16547:34;16543:1;16538:3;16534:11;16527:55;16613:12;16608:2;16603:3;16599:12;16592:34;16652:2;16647:3;16643:12;16636:19;;16433:228;;;:::o;16667:314::-;;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16927:18;16923:1;16918:3;16914:11;16907:39;16972:2;16967:3;16963:12;16956:19;;16813:168;;;:::o;16987:366::-;;17150:67;17214:2;17209:3;17150:67;:::i;:::-;17143:74;;17247:34;17243:1;17238:3;17234:11;17227:55;17313:4;17308:2;17303:3;17299:12;17292:26;17344:2;17339:3;17335:12;17328:19;;17133:220;;;:::o;17359:330::-;;17522:67;17586:2;17581:3;17522:67;:::i;:::-;17515:74;;17619:34;17615:1;17610:3;17606:11;17599:55;17680:2;17675:3;17671:12;17664:19;;17505:184;;;:::o;17695:376::-;;17858:67;17922:2;17917:3;17858:67;:::i;:::-;17851:74;;17955:34;17951:1;17946:3;17942:11;17935:55;18021:14;18016:2;18011:3;18007:12;18000:36;18062:2;18057:3;18053:12;18046:19;;17841:230;;;:::o;18077:330::-;;18240:67;18304:2;18299:3;18240:67;:::i;:::-;18233:74;;18337:34;18333:1;18328:3;18324:11;18317:55;18398:2;18393:3;18389:12;18382:19;;18223:184;;;:::o;18413:373::-;;18576:67;18640:2;18635:3;18576:67;:::i;:::-;18569:74;;18673:34;18669:1;18664:3;18660:11;18653:55;18739:11;18734:2;18729:3;18725:12;18718:33;18777:2;18772:3;18768:12;18761:19;;18559:227;;;:::o;18792:379::-;;18955:67;19019:2;19014:3;18955:67;:::i;:::-;18948:74;;19052:34;19048:1;19043:3;19039:11;19032:55;19118:17;19113:2;19108:3;19104:12;19097:39;19162:2;19157:3;19153:12;19146:19;;18938:233;;;:::o;19177:305::-;;19340:66;19404:1;19399:3;19340:66;:::i;:::-;19333:73;;19436:10;19432:1;19427:3;19423:11;19416:31;19473:2;19468:3;19464:12;19457:19;;19323:159;;;:::o;19488:365::-;;19651:67;19715:2;19710:3;19651:67;:::i;:::-;19644:74;;19748:34;19744:1;19739:3;19735:11;19728:55;19814:3;19809:2;19804:3;19800:12;19793:25;19844:2;19839:3;19835:12;19828:19;;19634:219;;;:::o;19859:381::-;;20022:67;20086:2;20081:3;20022:67;:::i;:::-;20015:74;;20119:34;20115:1;20110:3;20106:11;20099:55;20185:19;20180:2;20175:3;20171:12;20164:41;20231:2;20226:3;20222:12;20215:19;;20005:235;;;:::o;20246:327::-;;20409:67;20473:2;20468:3;20409:67;:::i;:::-;20402:74;;20506:31;20502:1;20497:3;20493:11;20486:52;20564:2;20559:3;20555:12;20548:19;;20392:181;;;:::o;20579:319::-;;20742:67;20806:2;20801:3;20742:67;:::i;:::-;20735:74;;20839:23;20835:1;20830:3;20826:11;20819:44;20889:2;20884:3;20880:12;20873:19;;20725:173;;;:::o;20904:313::-;;21067:67;21131:2;21126:3;21067:67;:::i;:::-;21060:74;;21164:17;21160:1;21155:3;21151:11;21144:38;21208:2;21203:3;21199:12;21192:19;;21050:167;;;:::o;21223:309::-;;21386:67;21450:2;21445:3;21386:67;:::i;:::-;21379:74;;21483:13;21479:1;21474:3;21470:11;21463:34;21523:2;21518:3;21514:12;21507:19;;21369:163;;;:::o;21538:118::-;21625:24;21643:5;21625:24;:::i;:::-;21620:3;21613:37;21603:53;;:::o;21662:271::-;;21814:93;21903:3;21894:6;21814:93;:::i;:::-;21807:100;;21924:3;21917:10;;21796:137;;;;:::o;21939:435::-;;22141:95;22232:3;22223:6;22141:95;:::i;:::-;22134:102;;22253:95;22344:3;22335:6;22253:95;:::i;:::-;22246:102;;22365:3;22358:10;;22123:251;;;;;:::o;22380:222::-;;22511:2;22500:9;22496:18;22488:26;;22524:71;22592:1;22581:9;22577:17;22568:6;22524:71;:::i;:::-;22478:124;;;;:::o;22608:672::-;;22857:3;22846:9;22842:19;22834:27;;22871:87;22955:1;22944:9;22940:17;22931:6;22871:87;:::i;:::-;22968:72;23036:2;23025:9;23021:18;23012:6;22968:72;:::i;:::-;23050;23118:2;23107:9;23103:18;23094:6;23050:72;:::i;:::-;23169:9;23163:4;23159:20;23154:2;23143:9;23139:18;23132:48;23197:76;23268:4;23259:6;23197:76;:::i;:::-;23189:84;;22824:456;;;;;;;:::o;23286:210::-;;23411:2;23400:9;23396:18;23388:26;;23424:65;23486:1;23475:9;23471:17;23462:6;23424:65;:::i;:::-;23378:118;;;;:::o;23502:313::-;;23653:2;23642:9;23638:18;23630:26;;23702:9;23696:4;23692:20;23688:1;23677:9;23673:17;23666:47;23730:78;23803:4;23794:6;23730:78;:::i;:::-;23722:86;;23620:195;;;;:::o;23821:419::-;;24025:2;24014:9;24010:18;24002:26;;24074:9;24068:4;24064:20;24060:1;24049:9;24045:17;24038:47;24102:131;24228:4;24102:131;:::i;:::-;24094:139;;23992:248;;;:::o;24246:419::-;;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:131;24653:4;24527:131;:::i;:::-;24519:139;;24417:248;;;:::o;24671:419::-;;24875:2;24864:9;24860:18;24852:26;;24924:9;24918:4;24914:20;24910:1;24899:9;24895:17;24888:47;24952:131;25078:4;24952:131;:::i;:::-;24944:139;;24842:248;;;:::o;25096:419::-;;25300:2;25289:9;25285:18;25277:26;;25349:9;25343:4;25339:20;25335:1;25324:9;25320:17;25313:47;25377:131;25503:4;25377:131;:::i;:::-;25369:139;;25267:248;;;:::o;25521:419::-;;25725:2;25714:9;25710:18;25702:26;;25774:9;25768:4;25764:20;25760:1;25749:9;25745:17;25738:47;25802:131;25928:4;25802:131;:::i;:::-;25794:139;;25692:248;;;:::o;25946:419::-;;26150:2;26139:9;26135:18;26127:26;;26199:9;26193:4;26189:20;26185:1;26174:9;26170:17;26163:47;26227:131;26353:4;26227:131;:::i;:::-;26219:139;;26117:248;;;:::o;26371:419::-;;26575:2;26564:9;26560:18;26552:26;;26624:9;26618:4;26614:20;26610:1;26599:9;26595:17;26588:47;26652:131;26778:4;26652:131;:::i;:::-;26644:139;;26542:248;;;:::o;26796:419::-;;27000:2;26989:9;26985:18;26977:26;;27049:9;27043:4;27039:20;27035:1;27024:9;27020:17;27013:47;27077:131;27203:4;27077:131;:::i;:::-;27069:139;;26967:248;;;:::o;27221:419::-;;27425:2;27414:9;27410:18;27402:26;;27474:9;27468:4;27464:20;27460:1;27449:9;27445:17;27438:47;27502:131;27628:4;27502:131;:::i;:::-;27494:139;;27392:248;;;:::o;27646:419::-;;27850:2;27839:9;27835:18;27827:26;;27899:9;27893:4;27889:20;27885:1;27874:9;27870:17;27863:47;27927:131;28053:4;27927:131;:::i;:::-;27919:139;;27817:248;;;:::o;28071:419::-;;28275:2;28264:9;28260:18;28252:26;;28324:9;28318:4;28314:20;28310:1;28299:9;28295:17;28288:47;28352:131;28478:4;28352:131;:::i;:::-;28344:139;;28242:248;;;:::o;28496:419::-;;28700:2;28689:9;28685:18;28677:26;;28749:9;28743:4;28739:20;28735:1;28724:9;28720:17;28713:47;28777:131;28903:4;28777:131;:::i;:::-;28769:139;;28667:248;;;:::o;28921:419::-;;29125:2;29114:9;29110:18;29102:26;;29174:9;29168:4;29164:20;29160:1;29149:9;29145:17;29138:47;29202:131;29328:4;29202:131;:::i;:::-;29194:139;;29092:248;;;:::o;29346:419::-;;29550:2;29539:9;29535:18;29527:26;;29599:9;29593:4;29589:20;29585:1;29574:9;29570:17;29563:47;29627:131;29753:4;29627:131;:::i;:::-;29619:139;;29517:248;;;:::o;29771:419::-;;29975:2;29964:9;29960:18;29952:26;;30024:9;30018:4;30014:20;30010:1;29999:9;29995:17;29988:47;30052:131;30178:4;30052:131;:::i;:::-;30044:139;;29942:248;;;:::o;30196:419::-;;30400:2;30389:9;30385:18;30377:26;;30449:9;30443:4;30439:20;30435:1;30424:9;30420:17;30413:47;30477:131;30603:4;30477:131;:::i;:::-;30469:139;;30367:248;;;:::o;30621:419::-;;30825:2;30814:9;30810:18;30802:26;;30874:9;30868:4;30864:20;30860:1;30849:9;30845:17;30838:47;30902:131;31028:4;30902:131;:::i;:::-;30894:139;;30792:248;;;:::o;31046:419::-;;31250:2;31239:9;31235:18;31227:26;;31299:9;31293:4;31289:20;31285:1;31274:9;31270:17;31263:47;31327:131;31453:4;31327:131;:::i;:::-;31319:139;;31217:248;;;:::o;31471:419::-;;31675:2;31664:9;31660:18;31652:26;;31724:9;31718:4;31714:20;31710:1;31699:9;31695:17;31688:47;31752:131;31878:4;31752:131;:::i;:::-;31744:139;;31642:248;;;:::o;31896:419::-;;32100:2;32089:9;32085:18;32077:26;;32149:9;32143:4;32139:20;32135:1;32124:9;32120:17;32113:47;32177:131;32303:4;32177:131;:::i;:::-;32169:139;;32067:248;;;:::o;32321:419::-;;32525:2;32514:9;32510:18;32502:26;;32574:9;32568:4;32564:20;32560:1;32549:9;32545:17;32538:47;32602:131;32728:4;32602:131;:::i;:::-;32594:139;;32492:248;;;:::o;32746:419::-;;32950:2;32939:9;32935:18;32927:26;;32999:9;32993:4;32989:20;32985:1;32974:9;32970:17;32963:47;33027:131;33153:4;33027:131;:::i;:::-;33019:139;;32917:248;;;:::o;33171:419::-;;33375:2;33364:9;33360:18;33352:26;;33424:9;33418:4;33414:20;33410:1;33399:9;33395:17;33388:47;33452:131;33578:4;33452:131;:::i;:::-;33444:139;;33342:248;;;:::o;33596:419::-;;33800:2;33789:9;33785:18;33777:26;;33849:9;33843:4;33839:20;33835:1;33824:9;33820:17;33813:47;33877:131;34003:4;33877:131;:::i;:::-;33869:139;;33767:248;;;:::o;34021:419::-;;34225:2;34214:9;34210:18;34202:26;;34274:9;34268:4;34264:20;34260:1;34249:9;34245:17;34238:47;34302:131;34428:4;34302:131;:::i;:::-;34294:139;;34192:248;;;:::o;34446:419::-;;34650:2;34639:9;34635:18;34627:26;;34699:9;34693:4;34689:20;34685:1;34674:9;34670:17;34663:47;34727:131;34853:4;34727:131;:::i;:::-;34719:139;;34617:248;;;:::o;34871:419::-;;35075:2;35064:9;35060:18;35052:26;;35124:9;35118:4;35114:20;35110:1;35099:9;35095:17;35088:47;35152:131;35278:4;35152:131;:::i;:::-;35144:139;;35042:248;;;:::o;35296:419::-;;35500:2;35489:9;35485:18;35477:26;;35549:9;35543:4;35539:20;35535:1;35524:9;35520:17;35513:47;35577:131;35703:4;35577:131;:::i;:::-;35569:139;;35467:248;;;:::o;35721:419::-;;35925:2;35914:9;35910:18;35902:26;;35974:9;35968:4;35964:20;35960:1;35949:9;35945:17;35938:47;36002:131;36128:4;36002:131;:::i;:::-;35994:139;;35892:248;;;:::o;36146:222::-;;36277:2;36266:9;36262:18;36254:26;;36290:71;36358:1;36347:9;36343:17;36334:6;36290:71;:::i;:::-;36244:124;;;;:::o;36374:278::-;;36440:2;36434:9;36424:19;;36482:4;36474:6;36470:17;36589:6;36577:10;36574:22;36553:18;36541:10;36538:34;36535:62;36532:2;;;36600:13;;:::i;:::-;36532:2;36635:10;36631:2;36624:22;36414:238;;;;:::o;36658:306::-;;36825:18;36817:6;36814:30;36811:2;;;36847:13;;:::i;:::-;36811:2;36892:4;36884:6;36880:17;36872:25;;36952:4;36946;36942:15;36934:23;;36740:224;;;:::o;36970:306::-;;37137:18;37129:6;37126:30;37123:2;;;37159:13;;:::i;:::-;37123:2;37204:4;37196:6;37192:17;37184:25;;37264:4;37258;37254:15;37246:23;;37052:224;;;:::o;37282:326::-;;37433:18;37425:6;37422:30;37419:2;;;37455:13;;:::i;:::-;37419:2;37535:4;37531:9;37524:4;37516:6;37512:17;37508:33;37500:41;;37596:4;37590;37586:15;37578:23;;37348:260;;;:::o;37614:327::-;;37766:18;37758:6;37755:30;37752:2;;;37788:13;;:::i;:::-;37752:2;37868:4;37864:9;37857:4;37849:6;37845:17;37841:33;37833:41;;37929:4;37923;37919:15;37911:23;;37681:260;;;:::o;37947:98::-;;38032:5;38026:12;38016:22;;38005:40;;;:::o;38051:99::-;;38137:5;38131:12;38121:22;;38110:40;;;:::o;38156:168::-;;38273:6;38268:3;38261:19;38313:4;38308:3;38304:14;38289:29;;38251:73;;;;:::o;38330:147::-;;38468:3;38453:18;;38443:34;;;;:::o;38483:169::-;;38601:6;38596:3;38589:19;38641:4;38636:3;38632:14;38617:29;;38579:73;;;;:::o;38658:148::-;;38797:3;38782:18;;38772:34;;;;:::o;38812:96::-;;38878:24;38896:5;38878:24;:::i;:::-;38867:35;;38857:51;;;:::o;38914:104::-;;38988:24;39006:5;38988:24;:::i;:::-;38977:35;;38967:51;;;:::o;39024:90::-;;39101:5;39094:13;39087:21;39076:32;;39066:48;;;:::o;39120:149::-;;39196:66;39189:5;39185:78;39174:89;;39164:105;;;:::o;39275:126::-;;39352:42;39345:5;39341:54;39330:65;;39320:81;;;:::o;39407:77::-;;39473:5;39462:16;;39452:32;;;:::o;39490:154::-;39574:6;39569:3;39564;39551:30;39636:1;39627:6;39622:3;39618:16;39611:27;39541:103;;;:::o;39650:307::-;39718:1;39728:113;39742:6;39739:1;39736:13;39728:113;;;39827:1;39822:3;39818:11;39812:18;39808:1;39803:3;39799:11;39792:39;39764:2;39761:1;39757:10;39752:15;;39728:113;;;39859:6;39856:1;39853:13;39850:2;;;39939:1;39930:6;39925:3;39921:16;39914:27;39850:2;39699:258;;;;:::o;39963:48::-;39996:9;40017:102;;40109:2;40105:7;40100:2;40093:5;40089:14;40085:28;40075:38;;40065:54;;;:::o;40125:122::-;40198:24;40216:5;40198:24;:::i;:::-;40191:5;40188:35;40178:2;;40237:1;40234;40227:12;40178:2;40168:79;:::o;40253:116::-;40323:21;40338:5;40323:21;:::i;:::-;40316:5;40313:32;40303:2;;40359:1;40356;40349:12;40303:2;40293:76;:::o;40375:120::-;40447:23;40464:5;40447:23;:::i;:::-;40440:5;40437:34;40427:2;;40485:1;40482;40475:12;40427:2;40417:78;:::o;40501:122::-;40574:24;40592:5;40574:24;:::i;:::-;40567:5;40564:35;40554:2;;40613:1;40610;40603:12;40554:2;40544:79;:::o
Swarm Source
ipfs://c095b858db434980c7edbb6826980e3e769e56e7e80482d84c841adc636e55ce
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.