ERC-721
Overview
Max Total Supply
31 BFAM
Holders
25
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BFAMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BobaFam
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-04 */ // 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; } } pragma solidity ^0.7.0; pragma abicoder v2; contract BobaFam is ERC721, Ownable { using SafeMath for uint256; string public ITEM_PROVENANCE = ""; string public LICENSE_TEXT = ""; bool licenseLocked = false; // uint256 public constant itemPrice = 0; // uint public constant maxItemPurchase = 16; // uint256 public constant MAX_ITEMS = 8888; // bool public saleIsActive = false; // Reserving Bobas for giveaways etc // uint public itemReserve = 123; event licenseisLocked(string _licenseText); constructor() ERC721("BobaFam", "BFAM") { } function withdraw() public onlyOwner { uint balance = address(this).balance; msg.sender.transfer(balance); } function reserveItems(address _to, uint256 _reserveAmount) public onlyOwner { uint supply = totalSupply(); require(_reserveAmount > 0); for (uint i = 0; i < _reserveAmount; i++) { _safeMint(_to, supply + i); } } function setProvenanceHash(string memory provenanceHash) public onlyOwner { ITEM_PROVENANCE = provenanceHash; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } // Returns the license for tokens function tokenLicense(uint _id) public view returns(string memory) { require(_id < totalSupply(), "CHOOSE A BOBA WITHIN RANGE"); return LICENSE_TEXT; } // Locks the license to prevent further changes function lockLicense() public onlyOwner { licenseLocked = true; emit licenseisLocked(LICENSE_TEXT); } // Change the license function changeLicense(string memory _license) public onlyOwner { require(licenseLocked == false, "License already locked"); LICENSE_TEXT = _license; } function mintItems(uint numberOfTokens) public payable onlyOwner { require(numberOfTokens > 0); totalSupply().add(numberOfTokens); require(msg.value >= itemPrice.mul(numberOfTokens), "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); _safeMint(msg.sender, mintIndex); } } function itemTransfer(address _to, uint256 _amount) external onlyOwner() { uint256 supply = totalSupply(); for(uint256 i; i < _amount; i++){ _safeMint( _to, supply + i ); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"ITEM_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","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":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"itemTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintItems","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveItems","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":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b92919062000314565b5060405180602001604052806000815250600c90805190602001906200005392919062000314565b506000600d60006101000a81548160ff0219169083151502179055503480156200007c57600080fd5b506040518060400160405280600781526020017f426f626146616d000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4246414d00000000000000000000000000000000000000000000000000000000815250620001016301ffc9a760e01b6200023460201b60201c565b81600690805190602001906200011992919062000314565b5080600790805190602001906200013292919062000314565b506200014b6380ac58cd60e01b6200023460201b60201c565b62000163635b5e139f60e01b6200023460201b60201c565b6200017b63780e9d6360e01b6200023460201b60201c565b505060006200018f6200030c60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200043f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000297906200040c565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b6000620003d9601c836200042e565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200042781620003ca565b9050919050565b600082825260208201905092915050565b6144aa806200044f6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b09904b5116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063d9b137b214610703578063dac6db1c14610740578063e985e9c51461076b578063f2fde38b146107a8576101ee565b8063b09904b514610632578063b3700c6c1461065b578063b88d4fde14610686578063bf4702fc146106af576101ee565b80638da5cb5b116100dc5780638da5cb5b1461058857806395d89b41146105b35780639c3e72bd146105de578063a22cb46514610609576101ee565b80636c0360eb146104cc57806370a08231146104f7578063715018a6146105345780638462151c1461054b576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040d5780635367de6a1461044a57806355f804b3146104665780636352211e1461048f576101ee565b80632f745c59146103675780633ccfd60b146103a457806342842e0e146103bb5780634aae0dc7146103e4576101ee565b806310969523116101c157806310969523146102c157806318160ddd146102ea57806323b872dd146103155780632bcecb6a1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061325d565b6107d1565b6040516102279190613e3b565b60405180910390f35b34801561023c57600080fd5b50610245610838565b6040516102529190613e56565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906132f0565b6108da565b60405161028f9190613db2565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613221565b61095f565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906132af565b610a77565b005b3480156102f657600080fd5b506102ff610b0d565b60405161030c919061419a565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061311b565b610b1e565b005b34801561034a57600080fd5b5061036560048036038101906103609190613221565b610b7e565b005b34801561037357600080fd5b5061038e60048036038101906103899190613221565b610c3d565b60405161039b919061419a565b60405180910390f35b3480156103b057600080fd5b506103b9610c98565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061311b565b610d63565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613221565b610d83565b005b34801561041957600080fd5b50610434600480360381019061042f91906132f0565b610e35565b604051610441919061419a565b60405180910390f35b610464600480360381019061045f91906132f0565b610e58565b005b34801561047257600080fd5b5061048d600480360381019061048891906132af565b610f85565b005b34801561049b57600080fd5b506104b660048036038101906104b191906132f0565b61100d565b6040516104c39190613db2565b60405180910390f35b3480156104d857600080fd5b506104e1611044565b6040516104ee9190613e56565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906130b6565b6110e6565b60405161052b919061419a565b60405180910390f35b34801561054057600080fd5b506105496111a5565b005b34801561055757600080fd5b50610572600480360381019061056d91906130b6565b6112e2565b60405161057f9190613e19565b60405180910390f35b34801561059457600080fd5b5061059d6113db565b6040516105aa9190613db2565b60405180910390f35b3480156105bf57600080fd5b506105c8611405565b6040516105d59190613e56565b60405180910390f35b3480156105ea57600080fd5b506105f36114a7565b6040516106009190613e56565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906131e5565b611545565b005b34801561063e57600080fd5b50610659600480360381019061065491906132af565b6116c6565b005b34801561066757600080fd5b506106706117b2565b60405161067d9190613e56565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a8919061316a565b611850565b005b3480156106bb57600080fd5b506106c46118b2565b005b3480156106d257600080fd5b506106ed60048036038101906106e891906132f0565b611983565b6040516106fa9190613e56565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906132f0565b611b06565b6040516107379190613e56565b60405180910390f35b34801561074c57600080fd5b50610755611bf3565b604051610762919061419a565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906130df565b611bf8565b60405161079f9190613e3b565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906130b6565b611c8c565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e582611e38565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b9061409a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096a8261100d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d29061411a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fa611e55565b73ffffffffffffffffffffffffffffffffffffffff161480610a295750610a2881610a23611e55565b611bf8565b5b610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90613ffa565b60405180910390fd5b610a728383611e5d565b505050565b610a7f611e55565b73ffffffffffffffffffffffffffffffffffffffff16610a9d6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906140ba565b60405180910390fd5b80600b9080519060200190610b09929190612ed2565b5050565b6000610b196002611f16565b905090565b610b2f610b29611e55565b82611f2b565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061415a565b60405180910390fd5b610b79838383612009565b505050565b610b86611e55565b73ffffffffffffffffffffffffffffffffffffffff16610ba46113db565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906140ba565b60405180910390fd5b6000610c04610b0d565b905060008211610c1357600080fd5b60005b82811015610c3757610c2a84828401612220565b8080600101915050610c16565b50505050565b6000610c9082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061223e90919063ffffffff16565b905092915050565b610ca0611e55565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906140ba565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d5f573d6000803e3d6000fd5b5050565b610d7e83838360405180602001604052806000815250611850565b505050565b610d8b611e55565b73ffffffffffffffffffffffffffffffffffffffff16610da96113db565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df6906140ba565b60405180910390fd5b6000610e09610b0d565b905060005b82811015610e2f57610e2284828401612220565b8080600101915050610e0e565b50505050565b600080610e4c83600261225890919063ffffffff16565b50905080915050919050565b610e60611e55565b73ffffffffffffffffffffffffffffffffffffffff16610e7e6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906140ba565b60405180910390fd5b60008111610ee157600080fd5b610efb81610eed610b0d565b61228490919063ffffffff16565b50610f108160006122d990919063ffffffff16565b341015610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613f9a565b60405180910390fd5b60005b81811015610f81576000610f67610b0d565b9050610f733382612220565b508080600101915050610f55565b5050565b610f8d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610fab6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906140ba565b60405180910390fd5b61100a81612349565b50565b600061103d8260405180606001604052806029815260200161444c6029913960026123639092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061401a565b60405180910390fd5b61119e600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612382565b9050919050565b6111ad611e55565b73ffffffffffffffffffffffffffffffffffffffff166111cb6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611218906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006112ef836110e6565b9050600081141561134a57600067ffffffffffffffff8111801561131257600080fd5b506040519080825280602002602001820160405280156113415781602001602082028036833780820191505090505b509150506113d6565b60008167ffffffffffffffff8111801561136357600080fd5b506040519080825280602002602001820160405280156113925781602001602082028036833780820191505090505b50905060005b828110156113cf576113aa8582610c3d565b8282815181106113b657fe5b6020026020010181815250508080600101915050611398565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561153d5780601f106115125761010080835404028352916020019161153d565b820191906000526020600020905b81548152906001019060200180831161152057829003601f168201915b505050505081565b61154d611e55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613f5a565b60405180910390fd5b80600560006115c8611e55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611e55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613e3b565b60405180910390a35050565b6116ce611e55565b73ffffffffffffffffffffffffffffffffffffffff166116ec6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906140ba565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061413a565b60405180910390fd5b80600c90805190602001906117ae929190612ed2565b5050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118485780601f1061181d57610100808354040283529160200191611848565b820191906000526020600020905b81548152906001019060200180831161182b57829003601f168201915b505050505081565b61186161185b611e55565b83611f2b565b6118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061415a565b60405180910390fd5b6118ac84848484612397565b50505050565b6118ba611e55565b73ffffffffffffffffffffffffffffffffffffffff166118d86113db565b73ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906140ba565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516119799190613e78565b60405180910390a1565b606061198e82611e38565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906140fa565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b505050505090506000611a87611044565b9050600081511415611a9d578192505050611b01565b600082511115611ad2578082604051602001611aba929190613d8e565b60405160208183030381529060405292505050611b01565b80611adc856123f3565b604051602001611aed929190613d8e565b604051602081830303815290604052925050505b919050565b6060611b10610b0d565b8210611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613f7a565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611be75780601f10611bbc57610100808354040283529160200191611be7565b820191906000526020600020905b815481529060010190602001808311611bca57829003601f168201915b50505050509050919050565b600081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c94611e55565b73ffffffffffffffffffffffffffffffffffffffff16611cb26113db565b73ffffffffffffffffffffffffffffffffffffffff1614611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613eda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611e4e82600261253a90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed08361100d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2482600001612554565b9050919050565b6000611f3682611e38565b611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613fda565b60405180910390fd5b6000611f808361100d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fef57508373ffffffffffffffffffffffffffffffffffffffff16611fd7846108da565b73ffffffffffffffffffffffffffffffffffffffff16145b806120005750611fff8185611bf8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120298261100d565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612076906140da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690613f3a565b60405180910390fd5b6120fa838383612565565b612105600082611e5d565b61215681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061256a90919063ffffffff16565b506121a881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258490919063ffffffff16565b506121bf8183600261259e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61223a8282604051806020016040528060008152506125d3565b5050565b600061224d836000018361262e565b60001c905092915050565b60008060008061226b866000018661269b565b915091508160001c8160001c9350935050509250929050565b6000808284019050838110156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613f1a565b60405180910390fd5b8091505092915050565b6000808314156122ec5760009050612343565b60008284029050828482816122fd57fe5b041461233e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123359061407a565b60405180910390fd5b809150505b92915050565b806009908051906020019061235f929190612ed2565b5050565b6000612376846000018460001b8461271e565b60001c90509392505050565b6000612390826000016127af565b9050919050565b6123a2848484612009565b6123ae848484846127c0565b6123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490613eba565b60405180910390fd5b50505050565b6060600082141561243b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612535565b600082905060005b60008214612465578080600101915050600a828161245d57fe5b049150612443565b60008167ffffffffffffffff8111801561247e57600080fd5b506040519080825280601f01601f1916602001820160405280156124b15781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461252d57600a84816124d257fe5b0660300160f81b828280600190039350815181106124ec57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161252557fe5b0493506124c0565b819450505050505b919050565b600061254c836000018360001b612924565b905092915050565b600081600001805490509050919050565b505050565b600061257c836000018360001b612947565b905092915050565b6000612596836000018360001b612a2f565b905092915050565b60006125ca846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612a9f565b90509392505050565b6125dd8383612b7b565b6125ea60008484846127c0565b612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090613eba565b60405180910390fd5b505050565b600081836000018054905011612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090613e9a565b60405180910390fd5b82600001828154811061268857fe5b9060005260206000200154905092915050565b600080828460000180549050116126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de9061403a565b60405180910390fd5b60008460000184815481106126f857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127779190613e56565b60405180910390fd5b5084600001600182038154811061279357fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006127e18473ffffffffffffffffffffffffffffffffffffffff16612d09565b6127ee576001905061291c565b60006128b563150b7a0260e01b612803611e55565b8887876040516024016128199493929190613dcd565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161441a603291398773ffffffffffffffffffffffffffffffffffffffff16612d1c9092919063ffffffff16565b90506000818060200190518101906128cd9190613286565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612a23576000600182039050600060018660000180549050039050600086600001828154811061299257fe5b90600052602060002001549050808760000184815481106129af57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806129e757fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612a29565b60009150505b92915050565b6000612a3b8383612d34565b612a94578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a99565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612b4657846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612b74565b82856000016001830381548110612b5957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be29061405a565b60405180910390fd5b612bf481611e38565b15612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90613efa565b60405180910390fd5b612c4060008383612565565b612c9181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258490919063ffffffff16565b50612ca88183600261259e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612d2b8484600085612d57565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9390613fba565b60405180910390fd5b612da585612d09565b612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb9061417a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612e0d9190613d77565b60006040518083038185875af1925050503d8060008114612e4a576040519150601f19603f3d011682016040523d82523d6000602084013e612e4f565b606091505b5091509150612e5f828286612e6b565b92505050949350505050565b60608315612e7b57829050612ecb565b600083511115612e8e5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec29190613e56565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612f085760008555612f4f565b82601f10612f2157805160ff1916838001178555612f4f565b82800160010185558215612f4f579182015b82811115612f4e578251825591602001919060010190612f33565b5b509050612f5c9190612f60565b5090565b5b80821115612f79576000816000905550600101612f61565b5090565b6000612f90612f8b846141e6565b6141b5565b905082815260208101848484011115612fa857600080fd5b612fb3848285614368565b509392505050565b6000612fce612fc984614216565b6141b5565b905082815260208101848484011115612fe657600080fd5b612ff1848285614368565b509392505050565b600081359050613008816143bd565b92915050565b60008135905061301d816143d4565b92915050565b600081359050613032816143eb565b92915050565b600081519050613047816143eb565b92915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f7d565b91505092915050565b600082601f83011261308857600080fd5b8135613098848260208601612fbb565b91505092915050565b6000813590506130b081614402565b92915050565b6000602082840312156130c857600080fd5b60006130d684828501612ff9565b91505092915050565b600080604083850312156130f257600080fd5b600061310085828601612ff9565b925050602061311185828601612ff9565b9150509250929050565b60008060006060848603121561313057600080fd5b600061313e86828701612ff9565b935050602061314f86828701612ff9565b9250506040613160868287016130a1565b9150509250925092565b6000806000806080858703121561318057600080fd5b600061318e87828801612ff9565b945050602061319f87828801612ff9565b93505060406131b0878288016130a1565b925050606085013567ffffffffffffffff8111156131cd57600080fd5b6131d98782880161304d565b91505092959194509250565b600080604083850312156131f857600080fd5b600061320685828601612ff9565b92505060206132178582860161300e565b9150509250929050565b6000806040838503121561323457600080fd5b600061324285828601612ff9565b9250506020613253858286016130a1565b9150509250929050565b60006020828403121561326f57600080fd5b600061327d84828501613023565b91505092915050565b60006020828403121561329857600080fd5b60006132a684828501613038565b91505092915050565b6000602082840312156132c157600080fd5b600082013567ffffffffffffffff8111156132db57600080fd5b6132e784828501613077565b91505092915050565b60006020828403121561330257600080fd5b6000613310848285016130a1565b91505092915050565b60006133258383613d59565b60208301905092915050565b61333a816142f4565b82525050565b613349816142e2565b82525050565b600061335a8261426b565b6133648185614299565b935061336f83614246565b8060005b838110156133a05781516133878882613319565b97506133928361428c565b925050600181019050613373565b5085935050505092915050565b6133b681614306565b82525050565b60006133c782614276565b6133d181856142aa565b93506133e1818560208601614377565b6133ea816143ac565b840191505092915050565b600061340082614276565b61340a81856142bb565b935061341a818560208601614377565b80840191505092915050565b600061343182614281565b61343b81856142c6565b935061344b818560208601614377565b613454816143ac565b840191505092915050565b600061346a82614281565b61347481856142d7565b9350613484818560208601614377565b80840191505092915050565b6000815460018116600081146134ad57600181146134d357613517565b607f60028304166134be81876142c6565b955060ff198316865260208601935050613517565b600282046134e181876142c6565b95506134ec85614256565b60005b8281101561350e578154818901526001820191506020810190506134ef565b80880195505050505b505092915050565b600061352c6022836142c6565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135926032836142c6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135f86026836142c6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365e601c836142c6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061369e601b836142c6565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006136de6024836142c6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137446019836142c6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613784601a836142c6565b91507f43484f4f5345204120424f42412057495448494e2052414e47450000000000006000830152602082019050919050565b60006137c4601f836142c6565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006138046026836142c6565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061386a602c836142c6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138d06038836142c6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613936602a836142c6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061399c6022836142c6565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a026020836142c6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a426021836142c6565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa8602c836142c6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b0e6020836142c6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b4e6029836142c6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bb4602f836142c6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c1a6021836142c6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c806016836142c6565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000613cc06031836142c6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d26601d836142c6565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613d628161435e565b82525050565b613d718161435e565b82525050565b6000613d8382846133f5565b915081905092915050565b6000613d9a828561345f565b9150613da6828461345f565b91508190509392505050565b6000602082019050613dc76000830184613340565b92915050565b6000608082019050613de26000830187613331565b613def6020830186613340565b613dfc6040830185613d68565b8181036060830152613e0e81846133bc565b905095945050505050565b60006020820190508181036000830152613e33818461334f565b905092915050565b6000602082019050613e5060008301846133ad565b92915050565b60006020820190508181036000830152613e708184613426565b905092915050565b60006020820190508181036000830152613e928184613490565b905092915050565b60006020820190508181036000830152613eb38161351f565b9050919050565b60006020820190508181036000830152613ed381613585565b9050919050565b60006020820190508181036000830152613ef3816135eb565b9050919050565b60006020820190508181036000830152613f1381613651565b9050919050565b60006020820190508181036000830152613f3381613691565b9050919050565b60006020820190508181036000830152613f53816136d1565b9050919050565b60006020820190508181036000830152613f7381613737565b9050919050565b60006020820190508181036000830152613f9381613777565b9050919050565b60006020820190508181036000830152613fb3816137b7565b9050919050565b60006020820190508181036000830152613fd3816137f7565b9050919050565b60006020820190508181036000830152613ff38161385d565b9050919050565b60006020820190508181036000830152614013816138c3565b9050919050565b6000602082019050818103600083015261403381613929565b9050919050565b600060208201905081810360008301526140538161398f565b9050919050565b60006020820190508181036000830152614073816139f5565b9050919050565b6000602082019050818103600083015261409381613a35565b9050919050565b600060208201905081810360008301526140b381613a9b565b9050919050565b600060208201905081810360008301526140d381613b01565b9050919050565b600060208201905081810360008301526140f381613b41565b9050919050565b6000602082019050818103600083015261411381613ba7565b9050919050565b6000602082019050818103600083015261413381613c0d565b9050919050565b6000602082019050818103600083015261415381613c73565b9050919050565b6000602082019050818103600083015261417381613cb3565b9050919050565b6000602082019050818103600083015261419381613d19565b9050919050565b60006020820190506141af6000830184613d68565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141dc576141db6143aa565b5b8060405250919050565b600067ffffffffffffffff821115614201576142006143aa565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614231576142306143aa565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ed8261433e565b9050919050565b60006142ff8261433e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561439557808201518184015260208101905061437a565b838111156143a4576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6143c6816142e2565b81146143d157600080fd5b50565b6143dd81614306565b81146143e857600080fd5b50565b6143f481614312565b81146143ff57600080fd5b50565b61440b8161435e565b811461441657600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ee61dd9f749cfcde306a6edb5d4b49bd46dc65c604aa23d2c2b69591ce8ea2ea64736f6c63430007060033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b09904b5116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063d9b137b214610703578063dac6db1c14610740578063e985e9c51461076b578063f2fde38b146107a8576101ee565b8063b09904b514610632578063b3700c6c1461065b578063b88d4fde14610686578063bf4702fc146106af576101ee565b80638da5cb5b116100dc5780638da5cb5b1461058857806395d89b41146105b35780639c3e72bd146105de578063a22cb46514610609576101ee565b80636c0360eb146104cc57806370a08231146104f7578063715018a6146105345780638462151c1461054b576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461040d5780635367de6a1461044a57806355f804b3146104665780636352211e1461048f576101ee565b80632f745c59146103675780633ccfd60b146103a457806342842e0e146103bb5780634aae0dc7146103e4576101ee565b806310969523116101c157806310969523146102c157806318160ddd146102ea57806323b872dd146103155780632bcecb6a1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061325d565b6107d1565b6040516102279190613e3b565b60405180910390f35b34801561023c57600080fd5b50610245610838565b6040516102529190613e56565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906132f0565b6108da565b60405161028f9190613db2565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613221565b61095f565b005b3480156102cd57600080fd5b506102e860048036038101906102e391906132af565b610a77565b005b3480156102f657600080fd5b506102ff610b0d565b60405161030c919061419a565b60405180910390f35b34801561032157600080fd5b5061033c6004803603810190610337919061311b565b610b1e565b005b34801561034a57600080fd5b5061036560048036038101906103609190613221565b610b7e565b005b34801561037357600080fd5b5061038e60048036038101906103899190613221565b610c3d565b60405161039b919061419a565b60405180910390f35b3480156103b057600080fd5b506103b9610c98565b005b3480156103c757600080fd5b506103e260048036038101906103dd919061311b565b610d63565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613221565b610d83565b005b34801561041957600080fd5b50610434600480360381019061042f91906132f0565b610e35565b604051610441919061419a565b60405180910390f35b610464600480360381019061045f91906132f0565b610e58565b005b34801561047257600080fd5b5061048d600480360381019061048891906132af565b610f85565b005b34801561049b57600080fd5b506104b660048036038101906104b191906132f0565b61100d565b6040516104c39190613db2565b60405180910390f35b3480156104d857600080fd5b506104e1611044565b6040516104ee9190613e56565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906130b6565b6110e6565b60405161052b919061419a565b60405180910390f35b34801561054057600080fd5b506105496111a5565b005b34801561055757600080fd5b50610572600480360381019061056d91906130b6565b6112e2565b60405161057f9190613e19565b60405180910390f35b34801561059457600080fd5b5061059d6113db565b6040516105aa9190613db2565b60405180910390f35b3480156105bf57600080fd5b506105c8611405565b6040516105d59190613e56565b60405180910390f35b3480156105ea57600080fd5b506105f36114a7565b6040516106009190613e56565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906131e5565b611545565b005b34801561063e57600080fd5b50610659600480360381019061065491906132af565b6116c6565b005b34801561066757600080fd5b506106706117b2565b60405161067d9190613e56565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a8919061316a565b611850565b005b3480156106bb57600080fd5b506106c46118b2565b005b3480156106d257600080fd5b506106ed60048036038101906106e891906132f0565b611983565b6040516106fa9190613e56565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906132f0565b611b06565b6040516107379190613e56565b60405180910390f35b34801561074c57600080fd5b50610755611bf3565b604051610762919061419a565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d91906130df565b611bf8565b60405161079f9190613e3b565b60405180910390f35b3480156107b457600080fd5b506107cf60048036038101906107ca91906130b6565b611c8c565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e582611e38565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b9061409a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096a8261100d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d29061411a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fa611e55565b73ffffffffffffffffffffffffffffffffffffffff161480610a295750610a2881610a23611e55565b611bf8565b5b610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90613ffa565b60405180910390fd5b610a728383611e5d565b505050565b610a7f611e55565b73ffffffffffffffffffffffffffffffffffffffff16610a9d6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906140ba565b60405180910390fd5b80600b9080519060200190610b09929190612ed2565b5050565b6000610b196002611f16565b905090565b610b2f610b29611e55565b82611f2b565b610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061415a565b60405180910390fd5b610b79838383612009565b505050565b610b86611e55565b73ffffffffffffffffffffffffffffffffffffffff16610ba46113db565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906140ba565b60405180910390fd5b6000610c04610b0d565b905060008211610c1357600080fd5b60005b82811015610c3757610c2a84828401612220565b8080600101915050610c16565b50505050565b6000610c9082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061223e90919063ffffffff16565b905092915050565b610ca0611e55565b73ffffffffffffffffffffffffffffffffffffffff16610cbe6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906140ba565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d5f573d6000803e3d6000fd5b5050565b610d7e83838360405180602001604052806000815250611850565b505050565b610d8b611e55565b73ffffffffffffffffffffffffffffffffffffffff16610da96113db565b73ffffffffffffffffffffffffffffffffffffffff1614610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df6906140ba565b60405180910390fd5b6000610e09610b0d565b905060005b82811015610e2f57610e2284828401612220565b8080600101915050610e0e565b50505050565b600080610e4c83600261225890919063ffffffff16565b50905080915050919050565b610e60611e55565b73ffffffffffffffffffffffffffffffffffffffff16610e7e6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906140ba565b60405180910390fd5b60008111610ee157600080fd5b610efb81610eed610b0d565b61228490919063ffffffff16565b50610f108160006122d990919063ffffffff16565b341015610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613f9a565b60405180910390fd5b60005b81811015610f81576000610f67610b0d565b9050610f733382612220565b508080600101915050610f55565b5050565b610f8d611e55565b73ffffffffffffffffffffffffffffffffffffffff16610fab6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff8906140ba565b60405180910390fd5b61100a81612349565b50565b600061103d8260405180606001604052806029815260200161444c6029913960026123639092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e9061401a565b60405180910390fd5b61119e600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612382565b9050919050565b6111ad611e55565b73ffffffffffffffffffffffffffffffffffffffff166111cb6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611218906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006112ef836110e6565b9050600081141561134a57600067ffffffffffffffff8111801561131257600080fd5b506040519080825280602002602001820160405280156113415781602001602082028036833780820191505090505b509150506113d6565b60008167ffffffffffffffff8111801561136357600080fd5b506040519080825280602002602001820160405280156113925781602001602082028036833780820191505090505b50905060005b828110156113cf576113aa8582610c3d565b8282815181106113b657fe5b6020026020010181815250508080600101915050611398565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b5050505050905090565b600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561153d5780601f106115125761010080835404028352916020019161153d565b820191906000526020600020905b81548152906001019060200180831161152057829003601f168201915b505050505081565b61154d611e55565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613f5a565b60405180910390fd5b80600560006115c8611e55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611675611e55565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613e3b565b60405180910390a35050565b6116ce611e55565b73ffffffffffffffffffffffffffffffffffffffff166116ec6113db565b73ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906140ba565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061413a565b60405180910390fd5b80600c90805190602001906117ae929190612ed2565b5050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118485780601f1061181d57610100808354040283529160200191611848565b820191906000526020600020905b81548152906001019060200180831161182b57829003601f168201915b505050505081565b61186161185b611e55565b83611f2b565b6118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061415a565b60405180910390fd5b6118ac84848484612397565b50505050565b6118ba611e55565b73ffffffffffffffffffffffffffffffffffffffff166118d86113db565b73ffffffffffffffffffffffffffffffffffffffff161461192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906140ba565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055507f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0600c6040516119799190613e78565b60405180910390a1565b606061198e82611e38565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c4906140fa565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b505050505090506000611a87611044565b9050600081511415611a9d578192505050611b01565b600082511115611ad2578082604051602001611aba929190613d8e565b60405160208183030381529060405292505050611b01565b80611adc856123f3565b604051602001611aed929190613d8e565b604051602081830303815290604052925050505b919050565b6060611b10610b0d565b8210611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890613f7a565b60405180910390fd5b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611be75780601f10611bbc57610100808354040283529160200191611be7565b820191906000526020600020905b815481529060010190602001808311611bca57829003601f168201915b50505050509050919050565b600081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c94611e55565b73ffffffffffffffffffffffffffffffffffffffff16611cb26113db565b73ffffffffffffffffffffffffffffffffffffffff1614611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613eda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611e4e82600261253a90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed08361100d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2482600001612554565b9050919050565b6000611f3682611e38565b611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613fda565b60405180910390fd5b6000611f808361100d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fef57508373ffffffffffffffffffffffffffffffffffffffff16611fd7846108da565b73ffffffffffffffffffffffffffffffffffffffff16145b806120005750611fff8185611bf8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120298261100d565b73ffffffffffffffffffffffffffffffffffffffff161461207f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612076906140da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e690613f3a565b60405180910390fd5b6120fa838383612565565b612105600082611e5d565b61215681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061256a90919063ffffffff16565b506121a881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258490919063ffffffff16565b506121bf8183600261259e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61223a8282604051806020016040528060008152506125d3565b5050565b600061224d836000018361262e565b60001c905092915050565b60008060008061226b866000018661269b565b915091508160001c8160001c9350935050509250929050565b6000808284019050838110156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613f1a565b60405180910390fd5b8091505092915050565b6000808314156122ec5760009050612343565b60008284029050828482816122fd57fe5b041461233e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123359061407a565b60405180910390fd5b809150505b92915050565b806009908051906020019061235f929190612ed2565b5050565b6000612376846000018460001b8461271e565b60001c90509392505050565b6000612390826000016127af565b9050919050565b6123a2848484612009565b6123ae848484846127c0565b6123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e490613eba565b60405180910390fd5b50505050565b6060600082141561243b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612535565b600082905060005b60008214612465578080600101915050600a828161245d57fe5b049150612443565b60008167ffffffffffffffff8111801561247e57600080fd5b506040519080825280601f01601f1916602001820160405280156124b15781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461252d57600a84816124d257fe5b0660300160f81b828280600190039350815181106124ec57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161252557fe5b0493506124c0565b819450505050505b919050565b600061254c836000018360001b612924565b905092915050565b600081600001805490509050919050565b505050565b600061257c836000018360001b612947565b905092915050565b6000612596836000018360001b612a2f565b905092915050565b60006125ca846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612a9f565b90509392505050565b6125dd8383612b7b565b6125ea60008484846127c0565b612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090613eba565b60405180910390fd5b505050565b600081836000018054905011612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090613e9a565b60405180910390fd5b82600001828154811061268857fe5b9060005260206000200154905092915050565b600080828460000180549050116126e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126de9061403a565b60405180910390fd5b60008460000184815481106126f857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390612780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127779190613e56565b60405180910390fd5b5084600001600182038154811061279357fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006127e18473ffffffffffffffffffffffffffffffffffffffff16612d09565b6127ee576001905061291c565b60006128b563150b7a0260e01b612803611e55565b8887876040516024016128199493929190613dcd565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405180606001604052806032815260200161441a603291398773ffffffffffffffffffffffffffffffffffffffff16612d1c9092919063ffffffff16565b90506000818060200190518101906128cd9190613286565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114612a23576000600182039050600060018660000180549050039050600086600001828154811061299257fe5b90600052602060002001549050808760000184815481106129af57fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806129e757fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612a29565b60009150505b92915050565b6000612a3b8383612d34565b612a94578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a99565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612b4657846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612b74565b82856000016001830381548110612b5957fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be29061405a565b60405180910390fd5b612bf481611e38565b15612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90613efa565b60405180910390fd5b612c4060008383612565565b612c9181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061258490919063ffffffff16565b50612ca88183600261259e9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612d2b8484600085612d57565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9390613fba565b60405180910390fd5b612da585612d09565b612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb9061417a565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612e0d9190613d77565b60006040518083038185875af1925050503d8060008114612e4a576040519150601f19603f3d011682016040523d82523d6000602084013e612e4f565b606091505b5091509150612e5f828286612e6b565b92505050949350505050565b60608315612e7b57829050612ecb565b600083511115612e8e5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec29190613e56565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612f085760008555612f4f565b82601f10612f2157805160ff1916838001178555612f4f565b82800160010185558215612f4f579182015b82811115612f4e578251825591602001919060010190612f33565b5b509050612f5c9190612f60565b5090565b5b80821115612f79576000816000905550600101612f61565b5090565b6000612f90612f8b846141e6565b6141b5565b905082815260208101848484011115612fa857600080fd5b612fb3848285614368565b509392505050565b6000612fce612fc984614216565b6141b5565b905082815260208101848484011115612fe657600080fd5b612ff1848285614368565b509392505050565b600081359050613008816143bd565b92915050565b60008135905061301d816143d4565b92915050565b600081359050613032816143eb565b92915050565b600081519050613047816143eb565b92915050565b600082601f83011261305e57600080fd5b813561306e848260208601612f7d565b91505092915050565b600082601f83011261308857600080fd5b8135613098848260208601612fbb565b91505092915050565b6000813590506130b081614402565b92915050565b6000602082840312156130c857600080fd5b60006130d684828501612ff9565b91505092915050565b600080604083850312156130f257600080fd5b600061310085828601612ff9565b925050602061311185828601612ff9565b9150509250929050565b60008060006060848603121561313057600080fd5b600061313e86828701612ff9565b935050602061314f86828701612ff9565b9250506040613160868287016130a1565b9150509250925092565b6000806000806080858703121561318057600080fd5b600061318e87828801612ff9565b945050602061319f87828801612ff9565b93505060406131b0878288016130a1565b925050606085013567ffffffffffffffff8111156131cd57600080fd5b6131d98782880161304d565b91505092959194509250565b600080604083850312156131f857600080fd5b600061320685828601612ff9565b92505060206132178582860161300e565b9150509250929050565b6000806040838503121561323457600080fd5b600061324285828601612ff9565b9250506020613253858286016130a1565b9150509250929050565b60006020828403121561326f57600080fd5b600061327d84828501613023565b91505092915050565b60006020828403121561329857600080fd5b60006132a684828501613038565b91505092915050565b6000602082840312156132c157600080fd5b600082013567ffffffffffffffff8111156132db57600080fd5b6132e784828501613077565b91505092915050565b60006020828403121561330257600080fd5b6000613310848285016130a1565b91505092915050565b60006133258383613d59565b60208301905092915050565b61333a816142f4565b82525050565b613349816142e2565b82525050565b600061335a8261426b565b6133648185614299565b935061336f83614246565b8060005b838110156133a05781516133878882613319565b97506133928361428c565b925050600181019050613373565b5085935050505092915050565b6133b681614306565b82525050565b60006133c782614276565b6133d181856142aa565b93506133e1818560208601614377565b6133ea816143ac565b840191505092915050565b600061340082614276565b61340a81856142bb565b935061341a818560208601614377565b80840191505092915050565b600061343182614281565b61343b81856142c6565b935061344b818560208601614377565b613454816143ac565b840191505092915050565b600061346a82614281565b61347481856142d7565b9350613484818560208601614377565b80840191505092915050565b6000815460018116600081146134ad57600181146134d357613517565b607f60028304166134be81876142c6565b955060ff198316865260208601935050613517565b600282046134e181876142c6565b95506134ec85614256565b60005b8281101561350e578154818901526001820191506020810190506134ef565b80880195505050505b505092915050565b600061352c6022836142c6565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135926032836142c6565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006135f86026836142c6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365e601c836142c6565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061369e601b836142c6565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006136de6024836142c6565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137446019836142c6565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613784601a836142c6565b91507f43484f4f5345204120424f42412057495448494e2052414e47450000000000006000830152602082019050919050565b60006137c4601f836142c6565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006138046026836142c6565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061386a602c836142c6565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138d06038836142c6565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613936602a836142c6565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061399c6022836142c6565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a026020836142c6565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a426021836142c6565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613aa8602c836142c6565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b0e6020836142c6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b4e6029836142c6565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bb4602f836142c6565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613c1a6021836142c6565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c806016836142c6565b91507f4c6963656e736520616c7265616479206c6f636b6564000000000000000000006000830152602082019050919050565b6000613cc06031836142c6565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d26601d836142c6565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613d628161435e565b82525050565b613d718161435e565b82525050565b6000613d8382846133f5565b915081905092915050565b6000613d9a828561345f565b9150613da6828461345f565b91508190509392505050565b6000602082019050613dc76000830184613340565b92915050565b6000608082019050613de26000830187613331565b613def6020830186613340565b613dfc6040830185613d68565b8181036060830152613e0e81846133bc565b905095945050505050565b60006020820190508181036000830152613e33818461334f565b905092915050565b6000602082019050613e5060008301846133ad565b92915050565b60006020820190508181036000830152613e708184613426565b905092915050565b60006020820190508181036000830152613e928184613490565b905092915050565b60006020820190508181036000830152613eb38161351f565b9050919050565b60006020820190508181036000830152613ed381613585565b9050919050565b60006020820190508181036000830152613ef3816135eb565b9050919050565b60006020820190508181036000830152613f1381613651565b9050919050565b60006020820190508181036000830152613f3381613691565b9050919050565b60006020820190508181036000830152613f53816136d1565b9050919050565b60006020820190508181036000830152613f7381613737565b9050919050565b60006020820190508181036000830152613f9381613777565b9050919050565b60006020820190508181036000830152613fb3816137b7565b9050919050565b60006020820190508181036000830152613fd3816137f7565b9050919050565b60006020820190508181036000830152613ff38161385d565b9050919050565b60006020820190508181036000830152614013816138c3565b9050919050565b6000602082019050818103600083015261403381613929565b9050919050565b600060208201905081810360008301526140538161398f565b9050919050565b60006020820190508181036000830152614073816139f5565b9050919050565b6000602082019050818103600083015261409381613a35565b9050919050565b600060208201905081810360008301526140b381613a9b565b9050919050565b600060208201905081810360008301526140d381613b01565b9050919050565b600060208201905081810360008301526140f381613b41565b9050919050565b6000602082019050818103600083015261411381613ba7565b9050919050565b6000602082019050818103600083015261413381613c0d565b9050919050565b6000602082019050818103600083015261415381613c73565b9050919050565b6000602082019050818103600083015261417381613cb3565b9050919050565b6000602082019050818103600083015261419381613d19565b9050919050565b60006020820190506141af6000830184613d68565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141dc576141db6143aa565b5b8060405250919050565b600067ffffffffffffffff821115614201576142006143aa565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614231576142306143aa565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142ed8261433e565b9050919050565b60006142ff8261433e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561439557808201518184015260208101905061437a565b838111156143a4576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b6143c6816142e2565b81146143d157600080fd5b50565b6143dd81614306565b81146143e857600080fd5b50565b6143f481614312565b81146143ff57600080fd5b50565b61440b8161435e565b811461441657600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ee61dd9f749cfcde306a6edb5d4b49bd46dc65c604aa23d2c2b69591ce8ea2ea64736f6c63430007060033
Deployed Bytecode Sourcemap
66840:3177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10236:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51521:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54307:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53837:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67885:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53315:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55197:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67602:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53077:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67459:131;;;;;;;;;;;;;:::i;:::-;;55573:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69773:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53603:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69324:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68018:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51277:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52896:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50994:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66232:148;;;;;;;;;;;;;:::i;:::-;;68137:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51690:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66972:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54600:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69132:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66924:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55795:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68968:125;;;;;;;;;;;;;:::i;:::-;;51865:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68728:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67056:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66535:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10236:150;10321:4;10345:20;:33;10366:11;10345:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10338:40;;10236:150;;;:::o;51521:100::-;51575:13;51608:5;51601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51521:100;:::o;54307:221::-;54383:7;54411:16;54419:7;54411;:16::i;:::-;54403:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54496:15;:24;54512:7;54496:24;;;;;;;;;;;;;;;;;;;;;54489:31;;54307:221;;;:::o;53837:404::-;53918:13;53934:23;53949:7;53934:14;:23::i;:::-;53918:39;;53982:5;53976:11;;:2;:11;;;;53968:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54062:5;54046:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54071:44;54095:5;54102:12;:10;:12::i;:::-;54071:23;:44::i;:::-;54046:69;54038:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54212:21;54221:2;54225:7;54212:8;:21::i;:::-;53837:404;;;:::o;67885:125::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67988:14:::1;67970:15;:32;;;;;;;;;;;;:::i;:::-;;67885:125:::0;:::o;53315:211::-;53376:7;53497:21;:12;:19;:21::i;:::-;53490:28;;53315:211;:::o;55197:305::-;55358:41;55377:12;:10;:12::i;:::-;55391:7;55358:18;:41::i;:::-;55350:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55466:28;55476:4;55482:2;55486:7;55466:9;:28::i;:::-;55197:305;;;:::o;67602:273::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67697:11:::1;67711:13;:11;:13::i;:::-;67697:27;;67760:1;67743:14;:18;67735:27;;;::::0;::::1;;67778:6;67773:95;67794:14;67790:1;:18;67773:95;;;67830:26;67840:3;67854:1;67845:6;:10;67830:9;:26::i;:::-;67810:3;;;;;;;67773:95;;;;65872:1;67602:273:::0;;:::o;53077:162::-;53174:7;53201:30;53225:5;53201:13;:20;53215:5;53201:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53194:37;;53077:162;;;;:::o;67459:131::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67507:12:::1;67522:21;67507:36;;67554:10;:19;;:28;67574:7;67554:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65872:1;67459:131::o:0;55573:151::-;55677:39;55694:4;55700:2;55704:7;55677:39;;;;;;;;;;;;:16;:39::i;:::-;55573:151;;;:::o;69773:233::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69871:14:::1;69888:13;:11;:13::i;:::-;69871:30;;69916:9;69912:87;69931:7;69927:1;:11;69912:87;;;69959:28;69970:3;69984:1;69975:6;:10;69959:9;:28::i;:::-;69940:3;;;;;;;69912:87;;;;65872:1;69773:233:::0;;:::o;53603:172::-;53678:7;53699:15;53720:22;53736:5;53720:12;:15;;:22;;;;:::i;:::-;53698:44;;;53760:7;53753:14;;;53603:172;;;:::o;69324:433::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69425:1:::1;69408:14;:18;69400:27;;;::::0;::::1;;69438:33;69456:14;69438:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;;69503:29;69517:14;67092:1;69503:13;;:29;;;;:::i;:::-;69490:9;:42;;69482:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;69593:6;69589:159;69609:14;69605:1;:18;69589:159;;;69645:14;69662:13;:11;:13::i;:::-;69645:30;;69690:32;69700:10;69712:9;69690;:32::i;:::-;69589:159;69625:3;;;;;;;69589:159;;;;69324:433:::0;:::o;68018:99::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68089:20:::1;68101:7;68089:11;:20::i;:::-;68018:99:::0;:::o;51277:177::-;51349:7;51376:70;51393:7;51376:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51369:77;;51277:177;;;:::o;52896:97::-;52944:13;52977:8;52970:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52896:97;:::o;50994:221::-;51066:7;51111:1;51094:19;;:5;:19;;;;51086:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51178:29;:13;:20;51192:5;51178:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51171:36;;50994:221;;;:::o;66232:148::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66339:1:::1;66302:40;;66323:6;;;;;;;;;;;66302:40;;;;;;;;;;;;66370:1;66353:6;;:19;;;;;;;;;;;;;;;;;;66232:148::o:0;68137:540::-;68198:16;68228:18;68249:17;68259:6;68249:9;:17::i;:::-;68228:38;;68295:1;68281:10;:15;68277:393;;;68372:1;68358:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68351:23;;;;;68277:393;68407:23;68447:10;68433:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68407:51;;68473:13;68501:130;68525:10;68517:5;:18;68501:130;;;68581:34;68601:6;68609:5;68581:19;:34::i;:::-;68565:6;68572:5;68565:13;;;;;;;;;;;;;:50;;;;;68537:7;;;;;;;68501:130;;;68652:6;68645:13;;;;;68137:540;;;;:::o;65581:87::-;65627:7;65654:6;;;;;;;;;;;65647:13;;65581:87;:::o;51690:104::-;51746:13;51779:7;51772:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51690:104;:::o;66972:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54600:295::-;54715:12;:10;:12::i;:::-;54703:24;;:8;:24;;;;54695:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54815:8;54770:18;:32;54789:12;:10;:12::i;:::-;54770:32;;;;;;;;;;;;;;;:42;54803:8;54770:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54868:8;54839:48;;54854:12;:10;:12::i;:::-;54839:48;;;54878:8;54839:48;;;;;;:::i;:::-;;;;;;;;54600:295;;:::o;69132:174::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69232:5:::1;69215:22;;:13;;;;;;;;;;;:22;;;69207:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69290:8;69275:12;:23;;;;;;;;;;;;:::i;:::-;;69132:174:::0;:::o;66924:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55795:285::-;55927:41;55946:12;:10;:12::i;:::-;55960:7;55927:18;:41::i;:::-;55919:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56033:39;56047:4;56053:2;56057:7;56066:5;56033:13;:39::i;:::-;55795:285;;;;:::o;68968:125::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69036:4:::1;69019:13;;:21;;;;;;;;;;;;;;;;;;69056:29;69072:12;69056:29;;;;;;:::i;:::-;;;;;;;;68968:125::o:0;51865:792::-;51938:13;51972:16;51980:7;51972;:16::i;:::-;51964:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52053:23;52079:10;:19;52090:7;52079:19;;;;;;;;;;;52053:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:18;52130:9;:7;:9::i;:::-;52109:30;;52237:1;52221:4;52215:18;:23;52211:72;;;52262:9;52255:16;;;;;;52211:72;52413:1;52393:9;52387:23;:27;52383:108;;;52462:4;52468:9;52445:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52431:48;;;;;;52383:108;52623:4;52629:18;:7;:16;:18::i;:::-;52606:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52592:57;;;;51865:792;;;;:::o;68728:174::-;68780:13;68820;:11;:13::i;:::-;68814:3;:19;68806:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68882:12;68875:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68728:174;;;:::o;67056:37::-;67092:1;67056:37;:::o;54966:164::-;55063:4;55087:18;:25;55106:5;55087:25;;;;;;;;;;;;;;;:35;55113:8;55087:35;;;;;;;;;;;;;;;;;;;;;;;;;55080:42;;54966:164;;;;:::o;66535:244::-;65812:12;:10;:12::i;:::-;65801:23;;:7;:5;:7::i;:::-;:23;;;65793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66644:1:::1;66624:22;;:8;:22;;;;66616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66734:8;66705:38;;66726:6;;;;;;;;;;;66705:38;;;;;;;;;;;;66763:8;66754:6;;:17;;;;;;;;;;;;;;;;;;66535:244:::0;:::o;57547:127::-;57612:4;57636:30;57658:7;57636:12;:21;;:30;;;;:::i;:::-;57629:37;;57547:127;;;:::o;668:106::-;721:15;756:10;749:17;;668:106;:::o;63565:192::-;63667:2;63640:15;:24;63656:7;63640:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63723:7;63719:2;63685:46;;63694:23;63709:7;63694:14;:23::i;:::-;63685:46;;;;;;;;;;;;63565:192;;:::o;44279:123::-;44348:7;44375:19;44383:3;:10;;44375:7;:19::i;:::-;44368:26;;44279:123;;;:::o;57841:355::-;57934:4;57959:16;57967:7;57959;:16::i;:::-;57951:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58035:13;58051:23;58066:7;58051:14;:23::i;:::-;58035:39;;58104:5;58093:16;;:7;:16;;;:51;;;;58137:7;58113:31;;:20;58125:7;58113:11;:20::i;:::-;:31;;;58093:51;:94;;;;58148:39;58172:5;58179:7;58148:23;:39::i;:::-;58093:94;58085:103;;;57841:355;;;;:::o;60977:599::-;61102:4;61075:31;;:23;61090:7;61075:14;:23::i;:::-;:31;;;61067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61203:1;61189:16;;:2;:16;;;;61181:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61259:39;61280:4;61286:2;61290:7;61259:20;:39::i;:::-;61363:29;61380:1;61384:7;61363:8;:29::i;:::-;61405:35;61432:7;61405:13;:19;61419:4;61405:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61451:30;61473:7;61451:13;:17;61465:2;61451:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61494:29;61511:7;61520:2;61494:12;:16;;:29;;;;;:::i;:::-;;61560:7;61556:2;61541:27;;61550:4;61541:27;;;;;;;;;;;;60977:599;;;:::o;58539:110::-;58615:26;58625:2;58629:7;58615:26;;;;;;;;;;;;:9;:26::i;:::-;58539:110;;:::o;36070:137::-;36141:7;36176:22;36180:3;:10;;36192:5;36176:3;:22::i;:::-;36168:31;;36161:38;;36070:137;;;;:::o;44741:236::-;44821:7;44830;44851:11;44864:13;44881:22;44885:3;:10;;44897:5;44881:3;:22::i;:::-;44850:53;;;;44930:3;44922:12;;44960:5;44952:14;;44914:55;;;;;;44741:236;;;;;:::o;13798:179::-;13856:7;13876:9;13892:1;13888;:5;13876:17;;13917:1;13912;:6;;13904:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13968:1;13961:8;;;13798:179;;;;:::o;14677:220::-;14735:7;14764:1;14759;:6;14755:20;;;14774:1;14767:8;;;;14755:20;14786:9;14802:1;14798;:5;14786:17;;14831:1;14826;14822;:5;;;;;;:10;14814:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14888:1;14881:8;;;14677:220;;;;;:::o;62177:100::-;62261:8;62250;:19;;;;;;;;;;;;:::i;:::-;;62177:100;:::o;46027:213::-;46134:7;46185:44;46190:3;:10;;46210:3;46202:12;;46216;46185:4;:44::i;:::-;46177:53;;46154:78;;46027:213;;;;;:::o;35612:114::-;35672:7;35699:19;35707:3;:10;;35699:7;:19::i;:::-;35692:26;;35612:114;;;:::o;56962:272::-;57076:28;57086:4;57092:2;57096:7;57076:9;:28::i;:::-;57123:48;57146:4;57152:2;57156:7;57165:5;57123:22;:48::i;:::-;57115:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56962:272;;;;:::o;46491:746::-;46547:13;46777:1;46768:5;:10;46764:53;;;46795:10;;;;;;;;;;;;;;;;;;;;;46764:53;46827:12;46842:5;46827:20;;46858:14;46883:78;46898:1;46890:4;:9;46883:78;;46916:8;;;;;;;46947:2;46939:10;;;;;;;;;46883:78;;;46971:19;47003:6;46993:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46971:39;;47021:13;47046:1;47037:6;:10;47021:26;;47065:5;47058:12;;47081:117;47096:1;47088:4;:9;47081:117;;47157:2;47150:4;:9;;;;;;47145:2;:14;47132:29;;47114:6;47121:7;;;;;;;47114:15;;;;;;;;;;;:47;;;;;;;;;;;47184:2;47176:10;;;;;;;;;47081:117;;;47222:6;47208:21;;;;;;46491:746;;;;:::o;44040:151::-;44124:4;44148:35;44158:3;:10;;44178:3;44170:12;;44148:9;:35::i;:::-;44141:42;;44040:151;;;;:::o;40858:110::-;40914:7;40941:3;:12;;:19;;;;40934:26;;40858:110;;;:::o;64370:93::-;;;;:::o;35157:137::-;35227:4;35251:35;35259:3;:10;;35279:5;35271:14;;35251:7;:35::i;:::-;35244:42;;35157:137;;;;:::o;34850:131::-;34917:4;34941:32;34946:3;:10;;34966:5;34958:14;;34941:4;:32::i;:::-;34934:39;;34850:131;;;;:::o;43463:185::-;43552:4;43576:64;43581:3;:10;;43601:3;43593:12;;43631:5;43615:23;;43607:32;;43576:4;:64::i;:::-;43569:71;;43463:185;;;;;:::o;58876:250::-;58972:18;58978:2;58982:7;58972:5;:18::i;:::-;59009:54;59040:1;59044:2;59048:7;59057:5;59009:22;:54::i;:::-;59001:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58876:250;;;:::o;31108:204::-;31175:7;31224:5;31203:3;:11;;:18;;;;:26;31195:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31286:3;:11;;31298:5;31286:18;;;;;;;;;;;;;;;;31279:25;;31108:204;;;;:::o;41323:279::-;41390:7;41399;41449:5;41427:3;:12;;:19;;;;:27;41419:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41506:22;41531:3;:12;;41544:5;41531:19;;;;;;;;;;;;;;;;;;41506:44;;41569:5;:10;;;41581:5;:12;;;41561:33;;;;;41323:279;;;;;:::o;42820:319::-;42914:7;42934:16;42953:3;:12;;:17;42966:3;42953:17;;;;;;;;;;;;42934:36;;43001:1;42989:8;:13;;43004:12;42981:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43071:3;:12;;43095:1;43084:8;:12;43071:26;;;;;;;;;;;;;;;;;;:33;;;43064:40;;;42820:319;;;;;:::o;30655:109::-;30711:7;30738:3;:11;;:18;;;;30731:25;;30655:109;;;:::o;62842:604::-;62963:4;62990:15;:2;:13;;;:15::i;:::-;62985:60;;63029:4;63022:11;;;;62985:60;63055:23;63081:252;63134:45;;;63194:12;:10;:12::i;:::-;63221:4;63240:7;63262:5;63097:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63081:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63055:278;;63344:13;63371:10;63360:32;;;;;;;;;;;;:::i;:::-;63344:48;;47991:10;63421:16;;63411:26;;;:6;:26;;;;63403:35;;;;62842:604;;;;;;;:::o;40638:125::-;40709:4;40754:1;40733:3;:12;;:17;40746:3;40733:17;;;;;;;;;;;;:22;;40726:29;;40638:125;;;;:::o;28810:1544::-;28876:4;28994:18;29015:3;:12;;:19;29028:5;29015:19;;;;;;;;;;;;28994:40;;29065:1;29051:10;:15;29047:1300;;29413:21;29450:1;29437:10;:14;29413:38;;29466:17;29507:1;29486:3;:11;;:18;;;;:22;29466:42;;29753:17;29773:3;:11;;29785:9;29773:22;;;;;;;;;;;;;;;;29753:42;;29919:9;29890:3;:11;;29902:13;29890:26;;;;;;;;;;;;;;;:38;;;;30038:1;30022:13;:17;29996:3;:12;;:23;30009:9;29996:23;;;;;;;;;;;:43;;;;30148:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30243:3;:12;;:19;30256:5;30243:19;;;;;;;;;;;30236:26;;;30286:4;30279:11;;;;;;;;29047:1300;30330:5;30323:12;;;28810:1544;;;;;:::o;28220:414::-;28283:4;28305:21;28315:3;28320:5;28305:9;:21::i;:::-;28300:327;;28343:3;:11;;28360:5;28343:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:3;:11;;:18;;;;28504:3;:12;;:19;28517:5;28504:19;;;;;;;;;;;:40;;;;28566:4;28559:11;;;;28300:327;28610:5;28603:12;;28220:414;;;;;:::o;38138:692::-;38214:4;38330:16;38349:3;:12;;:17;38362:3;38349:17;;;;;;;;;;;;38330:36;;38395:1;38383:8;:13;38379:444;;;38450:3;:12;;38468:38;;;;;;;;38485:3;38468:38;;;;38498:5;38468:38;;;38450:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38665:3;:12;;:19;;;;38645:3;:12;;:17;38658:3;38645:17;;;;;;;;;;;:39;;;;38706:4;38699:11;;;;;38379:444;38779:5;38743:3;:12;;38767:1;38756:8;:12;38743:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38806:5;38799:12;;;38138:692;;;;;;:::o;59462:404::-;59556:1;59542:16;;:2;:16;;;;59534:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59615:16;59623:7;59615;:16::i;:::-;59614:17;59606:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59677:45;59706:1;59710:2;59714:7;59677:20;:45::i;:::-;59735:30;59757:7;59735:13;:17;59749:2;59735:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59778:29;59795:7;59804:2;59778:12;:16;;:29;;;;;:::i;:::-;;59850:7;59846:2;59825:33;;59842:1;59825:33;;;;;;;;;;;;59462:404;;:::o;19239:422::-;19299:4;19507:12;19618:7;19606:20;19598:28;;19652:1;19645:4;:8;19638:15;;;19239:422;;;:::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22292:21;:52::i;:::-;22285:59;;22157:195;;;;;:::o;30440:129::-;30513:4;30560:1;30537:3;:12;;:19;30550:5;30537:19;;;;;;;;;;;;:24;;30530:31;;30440:129;;;;:::o;23209:530::-;23336:12;23394:5;23369:21;:30;;23361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23587:12;23601:23;23628:6;:11;;23648:5;23656:4;23628:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;;;;23209:530;;;;;;:::o;25749:742::-;25864:12;25893:7;25889:595;;;25924:10;25917:17;;;;25889:595;26058:1;26038:10;:17;:21;26034:439;;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;;;;;;;;;;:::i;:::-;;;;;;;;25749:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8946:937::-;;9068:5;9062:12;9105:1;9094:9;9090:17;9121:1;9116:281;;;;9411:1;9406:471;;;;9083:794;;9116:281;9206:4;9202:1;9191:9;9187:17;9183:28;9231:71;9295:6;9290:3;9231:71;:::i;:::-;9224:78;;9346:4;9342:9;9331;9327:25;9322:3;9315:38;9382:4;9377:3;9373:14;9366:21;;9123:274;9116:281;;9406:471;9487:1;9476:9;9472:17;9509:71;9573:6;9568:3;9509:71;:::i;:::-;9502:78;;9608:38;9640:5;9608:38;:::i;:::-;9668:1;9682:154;9696:6;9693:1;9690:13;9682:154;;;9770:7;9764:14;9760:1;9755:3;9751:11;9744:35;9820:1;9811:7;9807:15;9796:26;;9718:4;9715:1;9711:12;9706:17;;9682:154;;;9865:1;9860:3;9856:11;9849:18;;9413:464;;;9083:794;;9035:848;;;;;:::o;9889:366::-;;10052:67;10116:2;10111:3;10052:67;:::i;:::-;10045:74;;10149:34;10145:1;10140:3;10136:11;10129:55;10215:4;10210:2;10205:3;10201:12;10194:26;10246:2;10241:3;10237:12;10230:19;;10035:220;;;:::o;10261:382::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:20;10582:2;10577:3;10573:12;10566:42;10634:2;10629:3;10625:12;10618:19;;10407:236;;;:::o;10649:370::-;;10812:67;10876:2;10871:3;10812:67;:::i;:::-;10805:74;;10909:34;10905:1;10900:3;10896:11;10889:55;10975:8;10970:2;10965:3;10961:12;10954:30;11010:2;11005:3;11001:12;10994:19;;10795:224;;;:::o;11025:326::-;;11188:67;11252:2;11247:3;11188:67;:::i;:::-;11181:74;;11285:30;11281:1;11276:3;11272:11;11265:51;11342:2;11337:3;11333:12;11326:19;;11171:180;;;:::o;11357:325::-;;11520:67;11584:2;11579:3;11520:67;:::i;:::-;11513:74;;11617:29;11613:1;11608:3;11604:11;11597:50;11673:2;11668:3;11664:12;11657:19;;11503:179;;;:::o;11688:368::-;;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11948:34;11944:1;11939:3;11935:11;11928:55;12014:6;12009:2;12004:3;12000:12;11993:28;12047:2;12042:3;12038:12;12031:19;;11834:222;;;:::o;12062:323::-;;12225:67;12289:2;12284:3;12225:67;:::i;:::-;12218:74;;12322:27;12318:1;12313:3;12309:11;12302:48;12376:2;12371:3;12367:12;12360:19;;12208:177;;;:::o;12391:324::-;;12554:67;12618:2;12613:3;12554:67;:::i;:::-;12547:74;;12651:28;12647:1;12642:3;12638:11;12631:49;12706:2;12701:3;12697:12;12690:19;;12537:178;;;:::o;12721:329::-;;12884:67;12948:2;12943:3;12884:67;:::i;:::-;12877:74;;12981:33;12977:1;12972:3;12968:11;12961:54;13041:2;13036:3;13032:12;13025:19;;12867:183;;;:::o;13056:370::-;;13219:67;13283:2;13278:3;13219:67;:::i;:::-;13212:74;;13316:34;13312:1;13307:3;13303:11;13296:55;13382:8;13377:2;13372:3;13368:12;13361:30;13417:2;13412:3;13408:12;13401:19;;13202:224;;;:::o;13432:376::-;;13595:67;13659:2;13654:3;13595:67;:::i;:::-;13588:74;;13692:34;13688:1;13683:3;13679:11;13672:55;13758:14;13753:2;13748:3;13744:12;13737:36;13799:2;13794:3;13790:12;13783:19;;13578:230;;;:::o;13814:388::-;;13977:67;14041:2;14036:3;13977:67;:::i;:::-;13970:74;;14074:34;14070:1;14065:3;14061:11;14054:55;14140:26;14135:2;14130:3;14126:12;14119:48;14193:2;14188:3;14184:12;14177:19;;13960:242;;;:::o;14208:374::-;;14371:67;14435:2;14430:3;14371:67;:::i;:::-;14364:74;;14468:34;14464:1;14459:3;14455:11;14448:55;14534:12;14529:2;14524:3;14520:12;14513:34;14573:2;14568:3;14564:12;14557:19;;14354:228;;;:::o;14588:366::-;;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14848:34;14844:1;14839:3;14835:11;14828:55;14914:4;14909:2;14904:3;14900:12;14893:26;14945:2;14940:3;14936:12;14929:19;;14734:220;;;:::o;14960:330::-;;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15220:34;15216:1;15211:3;15207:11;15200:55;15281:2;15276:3;15272:12;15265:19;;15106:184;;;:::o;15296:365::-;;15459:67;15523:2;15518:3;15459:67;:::i;:::-;15452:74;;15556:34;15552:1;15547:3;15543:11;15536:55;15622:3;15617:2;15612:3;15608:12;15601:25;15652:2;15647:3;15643:12;15636:19;;15442:219;;;:::o;15667:376::-;;15830:67;15894:2;15889:3;15830:67;:::i;:::-;15823:74;;15927:34;15923:1;15918:3;15914:11;15907:55;15993:14;15988:2;15983:3;15979:12;15972:36;16034:2;16029:3;16025:12;16018:19;;15813:230;;;:::o;16049:330::-;;16212:67;16276:2;16271:3;16212:67;:::i;:::-;16205:74;;16309:34;16305:1;16300:3;16296:11;16289:55;16370:2;16365:3;16361:12;16354:19;;16195:184;;;:::o;16385:373::-;;16548:67;16612:2;16607:3;16548:67;:::i;:::-;16541:74;;16645:34;16641:1;16636:3;16632:11;16625:55;16711:11;16706:2;16701:3;16697:12;16690:33;16749:2;16744:3;16740:12;16733:19;;16531:227;;;:::o;16764:379::-;;16927:67;16991:2;16986:3;16927:67;:::i;:::-;16920:74;;17024:34;17020:1;17015:3;17011:11;17004:55;17090:17;17085:2;17080:3;17076:12;17069:39;17134:2;17129:3;17125:12;17118:19;;16910:233;;;:::o;17149:365::-;;17312:67;17376:2;17371:3;17312:67;:::i;:::-;17305:74;;17409:34;17405:1;17400:3;17396:11;17389:55;17475:3;17470:2;17465:3;17461:12;17454:25;17505:2;17500:3;17496:12;17489:19;;17295:219;;;:::o;17520:320::-;;17683:67;17747:2;17742:3;17683:67;:::i;:::-;17676:74;;17780:24;17776:1;17771:3;17767:11;17760:45;17831:2;17826:3;17822:12;17815:19;;17666:174;;;:::o;17846:381::-;;18009:67;18073:2;18068:3;18009:67;:::i;:::-;18002:74;;18106:34;18102:1;18097:3;18093:11;18086:55;18172:19;18167:2;18162:3;18158:12;18151:41;18218:2;18213:3;18209:12;18202:19;;17992:235;;;:::o;18233:327::-;;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18493:31;18489:1;18484:3;18480:11;18473:52;18551:2;18546:3;18542:12;18535:19;;18379:181;;;:::o;18566:108::-;18643:24;18661:5;18643:24;:::i;:::-;18638:3;18631:37;18621:53;;:::o;18680:118::-;18767:24;18785:5;18767:24;:::i;:::-;18762:3;18755:37;18745:53;;:::o;18804:271::-;;18956:93;19045:3;19036:6;18956:93;:::i;:::-;18949:100;;19066:3;19059:10;;18938:137;;;;:::o;19081:435::-;;19283:95;19374:3;19365:6;19283:95;:::i;:::-;19276:102;;19395:95;19486:3;19477:6;19395:95;:::i;:::-;19388:102;;19507:3;19500:10;;19265:251;;;;;:::o;19522:222::-;;19653:2;19642:9;19638:18;19630:26;;19666:71;19734:1;19723:9;19719:17;19710:6;19666:71;:::i;:::-;19620:124;;;;:::o;19750:672::-;;19999:3;19988:9;19984:19;19976:27;;20013:87;20097:1;20086:9;20082:17;20073:6;20013:87;:::i;:::-;20110:72;20178:2;20167:9;20163:18;20154:6;20110:72;:::i;:::-;20192;20260:2;20249:9;20245:18;20236:6;20192:72;:::i;:::-;20311:9;20305:4;20301:20;20296:2;20285:9;20281:18;20274:48;20339:76;20410:4;20401:6;20339:76;:::i;:::-;20331:84;;19966:456;;;;;;;:::o;20428:373::-;;20609:2;20598:9;20594:18;20586:26;;20658:9;20652:4;20648:20;20644:1;20633:9;20629:17;20622:47;20686:108;20789:4;20780:6;20686:108;:::i;:::-;20678:116;;20576:225;;;;:::o;20807:210::-;;20932:2;20921:9;20917:18;20909:26;;20945:65;21007:1;20996:9;20992:17;20983:6;20945:65;:::i;:::-;20899:118;;;;:::o;21023:313::-;;21174:2;21163:9;21159:18;21151:26;;21223:9;21217:4;21213:20;21209:1;21198:9;21194:17;21187:47;21251:78;21324:4;21315:6;21251:78;:::i;:::-;21243:86;;21141:195;;;;:::o;21342:307::-;;21490:2;21479:9;21475:18;21467:26;;21539:9;21533:4;21529:20;21525:1;21514:9;21510:17;21503:47;21567:75;21637:4;21628:6;21567:75;:::i;:::-;21559:83;;21457:192;;;;:::o;21655:419::-;;21859:2;21848:9;21844:18;21836:26;;21908:9;21902:4;21898:20;21894:1;21883:9;21879:17;21872:47;21936:131;22062:4;21936:131;:::i;:::-;21928:139;;21826:248;;;:::o;22080:419::-;;22284:2;22273:9;22269:18;22261:26;;22333:9;22327:4;22323:20;22319:1;22308:9;22304:17;22297:47;22361:131;22487:4;22361:131;:::i;:::-;22353:139;;22251:248;;;:::o;22505:419::-;;22709:2;22698:9;22694:18;22686:26;;22758:9;22752:4;22748:20;22744:1;22733:9;22729:17;22722:47;22786:131;22912:4;22786:131;:::i;:::-;22778:139;;22676:248;;;:::o;22930:419::-;;23134:2;23123:9;23119:18;23111:26;;23183:9;23177:4;23173:20;23169:1;23158:9;23154:17;23147:47;23211:131;23337:4;23211:131;:::i;:::-;23203:139;;23101:248;;;:::o;23355:419::-;;23559:2;23548:9;23544:18;23536:26;;23608:9;23602:4;23598:20;23594:1;23583:9;23579:17;23572:47;23636:131;23762:4;23636:131;:::i;:::-;23628:139;;23526:248;;;:::o;23780:419::-;;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23951:248;;;:::o;24205:419::-;;24409:2;24398:9;24394:18;24386:26;;24458:9;24452:4;24448:20;24444:1;24433:9;24429:17;24422:47;24486:131;24612:4;24486:131;:::i;:::-;24478:139;;24376:248;;;:::o;24630:419::-;;24834:2;24823:9;24819:18;24811:26;;24883:9;24877:4;24873:20;24869:1;24858:9;24854:17;24847:47;24911:131;25037:4;24911:131;:::i;:::-;24903:139;;24801:248;;;:::o;25055:419::-;;25259:2;25248:9;25244:18;25236:26;;25308:9;25302:4;25298:20;25294:1;25283:9;25279:17;25272:47;25336:131;25462:4;25336:131;:::i;:::-;25328:139;;25226:248;;;:::o;25480:419::-;;25684:2;25673:9;25669:18;25661:26;;25733:9;25727:4;25723:20;25719:1;25708:9;25704:17;25697:47;25761:131;25887:4;25761:131;:::i;:::-;25753:139;;25651:248;;;:::o;25905:419::-;;26109:2;26098:9;26094:18;26086:26;;26158:9;26152:4;26148:20;26144:1;26133:9;26129:17;26122:47;26186:131;26312:4;26186:131;:::i;:::-;26178:139;;26076:248;;;:::o;26330:419::-;;26534:2;26523:9;26519:18;26511:26;;26583:9;26577:4;26573:20;26569:1;26558:9;26554:17;26547:47;26611:131;26737:4;26611:131;:::i;:::-;26603:139;;26501:248;;;:::o;26755:419::-;;26959:2;26948:9;26944:18;26936:26;;27008:9;27002:4;26998:20;26994:1;26983:9;26979:17;26972:47;27036:131;27162:4;27036:131;:::i;:::-;27028:139;;26926:248;;;:::o;27180:419::-;;27384:2;27373:9;27369:18;27361:26;;27433:9;27427:4;27423:20;27419:1;27408:9;27404:17;27397:47;27461:131;27587:4;27461:131;:::i;:::-;27453:139;;27351:248;;;:::o;27605:419::-;;27809:2;27798:9;27794:18;27786:26;;27858:9;27852:4;27848:20;27844:1;27833:9;27829:17;27822:47;27886:131;28012:4;27886:131;:::i;:::-;27878:139;;27776:248;;;:::o;28030:419::-;;28234:2;28223:9;28219:18;28211:26;;28283:9;28277:4;28273:20;28269:1;28258:9;28254:17;28247:47;28311:131;28437:4;28311:131;:::i;:::-;28303:139;;28201:248;;;:::o;28455:419::-;;28659:2;28648:9;28644:18;28636:26;;28708:9;28702:4;28698:20;28694:1;28683:9;28679:17;28672:47;28736:131;28862:4;28736:131;:::i;:::-;28728:139;;28626:248;;;:::o;28880:419::-;;29084:2;29073:9;29069:18;29061:26;;29133:9;29127:4;29123:20;29119:1;29108:9;29104:17;29097:47;29161:131;29287:4;29161:131;:::i;:::-;29153:139;;29051:248;;;:::o;29305:419::-;;29509:2;29498:9;29494:18;29486:26;;29558:9;29552:4;29548:20;29544:1;29533:9;29529:17;29522:47;29586:131;29712:4;29586:131;:::i;:::-;29578:139;;29476:248;;;:::o;29730:419::-;;29934:2;29923:9;29919:18;29911:26;;29983:9;29977:4;29973:20;29969:1;29958:9;29954:17;29947:47;30011:131;30137:4;30011:131;:::i;:::-;30003:139;;29901:248;;;:::o;30155:419::-;;30359:2;30348:9;30344:18;30336:26;;30408:9;30402:4;30398:20;30394:1;30383:9;30379:17;30372:47;30436:131;30562:4;30436:131;:::i;:::-;30428:139;;30326:248;;;:::o;30580:419::-;;30784:2;30773:9;30769:18;30761:26;;30833:9;30827:4;30823:20;30819:1;30808:9;30804:17;30797:47;30861:131;30987:4;30861:131;:::i;:::-;30853:139;;30751:248;;;:::o;31005:419::-;;31209:2;31198:9;31194:18;31186:26;;31258:9;31252:4;31248:20;31244:1;31233:9;31229:17;31222:47;31286:131;31412:4;31286:131;:::i;:::-;31278:139;;31176:248;;;:::o;31430:419::-;;31634:2;31623:9;31619:18;31611:26;;31683:9;31677:4;31673:20;31669:1;31658:9;31654:17;31647:47;31711:131;31837:4;31711:131;:::i;:::-;31703:139;;31601:248;;;:::o;31855:222::-;;31986:2;31975:9;31971:18;31963:26;;31999:71;32067:1;32056:9;32052:17;32043:6;31999:71;:::i;:::-;31953:124;;;;:::o;32083:278::-;;32149:2;32143:9;32133:19;;32191:4;32183:6;32179:17;32298:6;32286:10;32283:22;32262:18;32250:10;32247:34;32244:62;32241:2;;;32309:13;;:::i;:::-;32241:2;32344:10;32340:2;32333:22;32123:238;;;;:::o;32367:326::-;;32518:18;32510:6;32507:30;32504:2;;;32540:13;;:::i;:::-;32504:2;32620:4;32616:9;32609:4;32601:6;32597:17;32593:33;32585:41;;32681:4;32675;32671:15;32663:23;;32433:260;;;:::o;32699:327::-;;32851:18;32843:6;32840:30;32837:2;;;32873:13;;:::i;:::-;32837:2;32953:4;32949:9;32942:4;32934:6;32930:17;32926:33;32918:41;;33014:4;33008;33004:15;32996:23;;32766:260;;;:::o;33032:132::-;;33122:3;33114:11;;33152:4;33147:3;33143:14;33135:22;;33104:60;;;:::o;33170:141::-;;33242:3;33234:11;;33265:3;33262:1;33255:14;33299:4;33296:1;33286:18;33278:26;;33224:87;;;:::o;33317:114::-;;33418:5;33412:12;33402:22;;33391:40;;;:::o;33437:98::-;;33522:5;33516:12;33506:22;;33495:40;;;:::o;33541:99::-;;33627:5;33621:12;33611:22;;33600:40;;;:::o;33646:113::-;;33748:4;33743:3;33739:14;33731:22;;33721:38;;;:::o;33765:184::-;;33898:6;33893:3;33886:19;33938:4;33933:3;33929:14;33914:29;;33876:73;;;;:::o;33955:168::-;;34072:6;34067:3;34060:19;34112:4;34107:3;34103:14;34088:29;;34050:73;;;;:::o;34129:147::-;;34267:3;34252:18;;34242:34;;;;:::o;34282:169::-;;34400:6;34395:3;34388:19;34440:4;34435:3;34431:14;34416:29;;34378:73;;;;:::o;34457:148::-;;34596:3;34581:18;;34571:34;;;;:::o;34611:96::-;;34677:24;34695:5;34677:24;:::i;:::-;34666:35;;34656:51;;;:::o;34713:104::-;;34787:24;34805:5;34787:24;:::i;:::-;34776:35;;34766:51;;;:::o;34823:90::-;;34900:5;34893:13;34886:21;34875:32;;34865:48;;;:::o;34919:149::-;;34995:66;34988:5;34984:78;34973:89;;34963:105;;;:::o;35074:126::-;;35151:42;35144:5;35140:54;35129:65;;35119:81;;;:::o;35206:77::-;;35272:5;35261:16;;35251:32;;;:::o;35289:154::-;35373:6;35368:3;35363;35350:30;35435:1;35426:6;35421:3;35417:16;35410:27;35340:103;;;:::o;35449:307::-;35517:1;35527:113;35541:6;35538:1;35535:13;35527:113;;;35626:1;35621:3;35617:11;35611:18;35607:1;35602:3;35598:11;35591:39;35563:2;35560:1;35556:10;35551:15;;35527:113;;;35658:6;35655:1;35652:13;35649:2;;;35738:1;35729:6;35724:3;35720:16;35713:27;35649:2;35498:258;;;;:::o;35762:48::-;35795:9;35816:102;;35908:2;35904:7;35899:2;35892:5;35888:14;35884:28;35874:38;;35864:54;;;:::o;35924:122::-;35997:24;36015:5;35997:24;:::i;:::-;35990:5;35987:35;35977:2;;36036:1;36033;36026:12;35977:2;35967:79;:::o;36052:116::-;36122:21;36137:5;36122:21;:::i;:::-;36115:5;36112:32;36102:2;;36158:1;36155;36148:12;36102:2;36092:76;:::o;36174:120::-;36246:23;36263:5;36246:23;:::i;:::-;36239:5;36236:34;36226:2;;36284:1;36281;36274:12;36226:2;36216:78;:::o;36300:122::-;36373:24;36391:5;36373:24;:::i;:::-;36366:5;36363:35;36353:2;;36412:1;36409;36402:12;36353:2;36343:79;:::o
Swarm Source
ipfs://ee61dd9f749cfcde306a6edb5d4b49bd46dc65c604aa23d2c2b69591ce8ea2ea
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.