ERC-721
Overview
Max Total Supply
15 ETDOG
Holders
8
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ETDOGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ETDOG
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-20 */ /** *Submitted for verification at BscScan.com on 2021-12-25 */ /** *Submitted for verification at Etherscan.io on 2021-09-01 */ /** *Submitted for verification at Etherscan.io on 2021-08-18 */ 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; } } /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @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); } /** * @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; } } /** * @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; } } /** * @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); } } } } /** * @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)); } } /** * @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)))); } } /** * @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); } } /** * @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; EnumerableMap.UintToAddressMap private _onlytokenOwners; EnumerableMap.UintToAddressMap private _mhone; EnumerableMap.UintToAddressMap private _mhtwo; EnumerableMap.UintToAddressMap private _onlytokenWhiters; EnumerableMap.UintToAddressMap private _onlytokenPays; // 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, '.json')); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, (tokenId.toString()), ".json")); } /** * @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-totalSupply}. */ function onlyTotalSupply() public view virtual returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _onlytokenOwners.length(); } function mhoneTotalSupply() public view virtual returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _mhone.length(); } function mhtwoTotalSupply() public view virtual returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _mhtwo.length(); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function onlyWhitesSupply() public view virtual returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _onlytokenWhiters.length(); } function onlyPaysSupply() public view virtual returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _onlytokenPays.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); } function _tokenOwnerSet(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _onlytokenOwners.set(tokenId, to); } function _mhOneSet(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _mhone.set(tokenId, to); } function _mhTwoSet(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _mhtwo.set(tokenId, to); } function _tokenWhitesSet(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _onlytokenWhiters.set(tokenId, to); } function _tokenPaySet(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _onlytokenPays.set(tokenId, to); } /** * @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 {} } /** * @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; } } interface marketToken { function doSell(address owner, uint256 tokenId, uint256 sPrice) external; function doCancel(uint256 tokenId) external; } contract ETDOG is ERC721, Ownable { using SafeMath for uint256; // OwnersMapping.itmap data; // //data function insert(address key, uint typ, uint dis) internal returns (bool) { return OwnersMapping.insert(data, key, typ, dis); } function isLimit(address key) public view returns (bool) { return OwnersMapping.isLimit(data, key); } function isLimitAdd(address key, uint256 amount) public view returns (bool) { return OwnersMapping.isLimitAdd(data, key, amount); } function getType(address key) public view returns (uint) { return OwnersMapping.getType(data, key); } function getTotal(address key) public view returns (uint) { return OwnersMapping.getTotal(data, key); } function getDis(address key) public view returns (uint) { return OwnersMapping.getDis(data, key); } function add(address key, uint256 tokenId) internal returns (bool) { return OwnersMapping.add(data, key, tokenId); } function del(address key, uint256 tokenId) internal returns (bool) { return OwnersMapping.del(data, key, tokenId); } function contains(address key) public view returns (bool) { return OwnersMapping.contains(data, key); } mapping(uint256 => uint256) private priceMap; // mapping(uint256 => uint256) private amountMap; // uint256 public immutable maxPerTx; // uint256 public maxNumber; // // mapping(uint256 => address) private firstOwners; address public marketAddr; bool public isSaleActive; bool public isSaleActiveWhite; address public bossAddr; constructor() public ERC721("ETDOG", "ETDOG") // erc721 { maxNumber = 10000; // maxPerTx = 10; // priceMap[1] = 1 * 10 ** 16; bossAddr = msg.sender; } // function setBoss(address boss) public onlyOwner { bossAddr = boss; } // function setPrice(uint256 rate) public onlyOwner { priceMap[1] = rate * 10 ** 16; } // function setMarket(address market) public onlyOwner { marketAddr = market; } // function getPrice() public view returns (uint256) { return priceMap[1] / (10 ** 16); } // function setNumber(uint256 maxnumber) public onlyOwner { maxNumber = maxnumber; } //pay pay function mintPay(uint256 numberOfTokens) public payable { require(isSaleActive, "Sale is not active"); require(numberOfTokens <= maxPerTx, "No more than 10 tokens per transaction"); require(totalSupply().add(numberOfTokens) <= maxNumber, "Purchase would exceed max supply of Martial"); uint256 price = priceMap[1]; require(price.mul(numberOfTokens) == msg.value, "Ether value is not correct"); payable(bossAddr).transfer(msg.value); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndexN = totalSupply().add(1); _tokenPaySet(msg.sender, mintIndexN); if (totalSupply() < maxNumber) {// _safeMint(msg.sender, mintIndexN); firstOwners[mintIndexN] = msg.sender; } } } // function mintOnly(address[] memory addList, uint256[] memory numberOfTokensList) public onlyOwner { for (uint i = 0; i < addList.length; i++) {// address newOwner = addList[i]; // uint256 numberOfTokens = numberOfTokensList[i]; require(totalSupply().add(numberOfTokens) <= maxNumber, "Purchase would exceed max supply of Martial"); // if (numberOfTokens > maxPerTx) {// continue; } else { for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndexN = totalSupply().add(1); _tokenPaySet(newOwner, mintIndexN); if (totalSupply() < maxNumber) {// _safeMint(newOwner, mintIndexN); firstOwners[mintIndexN] = newOwner; } } } } } // function mintWhite(uint256 numberOfTokens) public payable { // require(isSaleActiveWhite, "Sale is not active"); // require(numberOfTokens <= 10, "onece is limt 10"); // require(isLimitAdd(msg.sender, numberOfTokens), "in white list and already by over ,now can not buy"); // require(contains(msg.sender), "not in white list and now can not buy"); // require(totalSupply().add(numberOfTokens) <= maxNumber, "Purchase would exceed max supply of Martial"); // uint disa = getDis(msg.sender); uint256 price = priceMap[1]; require(price.mul(numberOfTokens).mul(disa) / 100 <= msg.value, "Ether value is not correct"); payable(bossAddr).transfer(msg.value); for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndex = totalSupply().add(1); // // if (totalSupply() < maxNumber) { add(msg.sender, mintIndex); } _tokenPaySet(msg.sender, mintIndex); if (totalSupply() < maxNumber) {// _safeMint(msg.sender, mintIndex); firstOwners[mintIndex]= msg.sender; } /* for (uint256 i = 0; i < numberOfTokens; i++) { uint256 mintIndexN = totalSupply().add(1); _tokenPaySet(msg.sender, mintIndexN); if (totalSupply() < maxNumber) {// _safeMint(msg.sender, mintIndexN); firstOwners[mintIndexN] = msg.sender; } }*/ } } // todo do sell function doSell(uint256 tokenId, uint256 sPrice) public { transferFrom(msg.sender, marketAddr, tokenId); marketToken market = marketToken(marketAddr); market.doSell(msg.sender, tokenId, sPrice); } // todo do cancel function doCancel(uint256 tokenId) public { marketToken market = marketToken(marketAddr); market.doCancel(tokenId); } //todo getFirstMint function getFirstMint(uint256 tokenId) public view returns (address){ return firstOwners[tokenId]; } // function setWhites(address[] memory addList, uint[] memory typeList, uint[] memory disList) public onlyOwner { for (uint i = 0; i < addList.length; i++) { if (contains(addList[i])) {// continue; } insert(addList[i], typeList[i], disList[i]); // } } // eixt true nonexit false function isExitA(uint256 tokenId) public view returns (bool) { if (_exists(tokenId)) { return true; } else { return false; } } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } // function flipSaleState() public onlyOwner { isSaleActive = !isSaleActive; } // function flipSaleWhiteState() public onlyOwner { isSaleActiveWhite = !isSaleActiveWhite; } } // library OwnersMapping { struct itmap { mapping(address => IndexValue) data; // uint size; } struct IndexValue {uint256 total;bool isVaild;uint typ;uint dis; uint256[] tokenIds;} function insert(itmap storage self, address key, uint typ, uint dis) internal returns (bool) { self.data[key].isVaild = true; self.data[key].typ = typ; self.data[key].total = 0; self.data[key].dis = dis; self.size++; return true; } function getTokenIds(itmap storage self, address key) internal returns (uint256[] memory) { return self.data[key].tokenIds; } function getType(itmap storage self, address key) internal view returns (uint) { return self.data[key].typ; } function getTotal(itmap storage self, address key) internal view returns (uint) { return self.data[key].total; } function getDis(itmap storage self, address key) internal view returns (uint) { return self.data[key].dis; } function add(itmap storage self, address key, uint256 tokenId) internal returns (bool) { self.data[key].total = self.data[key].total + 1; self.data[key].tokenIds.push(tokenId); return true; } function del(itmap storage self, address key, uint256 tokenId) internal returns (bool) { self.data[key].total = self.data[key].total - 1; for (uint256 i; i < self.data[key].tokenIds.length; i++) { if (self.data[key].tokenIds[i] == tokenId) { delete self.data[key].tokenIds[i]; } } return true; } function remove(itmap storage self, address key) internal returns (bool) { if (self.data[key].isVaild) { self.data[key].isVaild = false; self.size --; return true; } return false; } function isLimit(itmap storage self, address key) internal view returns (bool) { return self.data[key].total <= self.data[key].typ; } function isLimitAdd(itmap storage self, address key, uint256 amount) internal view returns (bool) { return self.data[key].total + amount <= self.data[key].typ; } function contains(itmap storage self, address key) internal view returns (bool) { return self.data[key].isVaild; } function getsize(itmap storage self) internal view returns (uint) { return self.size; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bossAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"contains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"doCancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"sPrice","type":"uint256"}],"name":"doSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleWhiteState","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":"key","type":"address"}],"name":"getDis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirstMint","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"getTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"getType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isExitA","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"}],"name":"isLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"key","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"isLimitAdd","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActiveWhite","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mhoneTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mhtwoTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addList","type":"address[]"},{"internalType":"uint256[]","name":"numberOfTokensList","type":"uint256[]"}],"name":"mintOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintWhite","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyPaysSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitesSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"address","name":"boss","type":"address"}],"name":"setBoss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"setMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxnumber","type":"uint256"}],"name":"setNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addList","type":"address[]"},{"internalType":"uint256[]","name":"typeList","type":"uint256[]"},{"internalType":"uint256[]","name":"disList","type":"uint256[]"}],"name":"setWhites","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600581526020017f4554444f470000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4554444f47000000000000000000000000000000000000000000000000000000815250620000966301ffc9a760e01b6200023c60201b60201c565b8160109080519060200190620000ae9291906200034d565b508060119080519060200190620000c79291906200034d565b50620000e06380ac58cd60e01b6200023c60201b60201c565b620000f8635b5e139f60e01b6200023c60201b60201c565b6200011063780e9d6360e01b6200023c60201b60201c565b50506000620001246200034560201b60201c565b905080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350612710601981905550600a60808181525050662386f26fc1000060176000600181526020019081526020016000208190555033601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000403565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003855760008555620003d1565b82601f10620003a057805160ff1916838001178555620003d1565b82800160010185558215620003d1579182015b82811115620003d0578251825591602001919060010190620003b3565b5b509050620003e09190620003e4565b5090565b5b80821115620003ff576000816000905550600101620003e5565b5090565b60805161597262000428600039806119eb528061207f5280613a3c52506159726000f3fe60806040526004361061031a5760003560e01c80636352211e116101ab578063a59049ee116100f7578063da621a5711610095578063f2fde38b1161006f578063f2fde38b146114b5578063f429f19b14611506578063f968adbe1461156b578063ff7aac0f146115965761031a565b8063da621a5714611364578063e985e9c5146113c9578063ebb6dad8146114505761031a565b8063bc19e024116100d1578063bc19e024146111bd578063c87b56dd146111fe578063cefa74cc146112b2578063da015bb2146112f35761031a565b8063a59049ee1461102c578063a7efbc8e1461105a578063b88d4fde146110ab5761031a565b806375f668dc1161016457806391b7f5ed1161013e57806391b7f5ed14610ed957806395d89b4114610f1457806398d5fdca14610fa4578063a22cb46514610fcf5761031a565b806375f668dc14610e425780637ec38f5a14610e6d5780638da5cb5b14610e985761031a565b80636352211e14610c555780636476519a14610cba5780636c0360eb14610ce55780636dcea85f14610d7557806370a0823114610dc6578063715018a614610e2b5761031a565b806330f93c1f1161026a57806342842e0e1161022357806354a2cf55116101fd57806354a2cf5514610ace57806355f804b314610af9578063564566a814610bc15780635dbe47e814610bee5761031a565b806342842e0e1461099d5780634f6ccce714610a185780635085d4f014610a675761031a565b806330f93c1f1461082f57806334918dfd146108945780633a4f6999146108ab5780633c8b83ea146108d65780633fb5c1cb1461092757806341a98810146109625761031a565b8063095ea7b3116102d757806323b872dd116102b157806323b872dd146105a757806327f74ab5146106225780632b0c74ee1461077b5780632f745c59146107c05761031a565b8063095ea7b3146104f657806318160ddd146105515780631dab99741461057c5761031a565b80630114bbf91461031f57806301ffc9a71461033657806306fdde03146103a6578063075ec78414610436578063081812fc14610464578063094d5da1146104c9575b600080fd5b34801561032b57600080fd5b50610334611783565b005b34801561034257600080fd5b5061038e6004803603602081101561035957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061185e565b60405180821515815260200191505060405180910390f35b3480156103b257600080fd5b506103bb6118c5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103fb5780820151818401526020810190506103e0565b50505050905090810190601f1680156104285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104626004803603602081101561044c57600080fd5b8101908080359060200190929190505050611967565b005b34801561047057600080fd5b5061049d6004803603602081101561048757600080fd5b8101908080359060200190929190505050611c94565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104d557600080fd5b506104de611d2f565b60405180821515815260200191505060405180910390f35b34801561050257600080fd5b5061054f6004803603604081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d42565b005b34801561055d57600080fd5b50610566611e86565b6040518082815260200191505060405180910390f35b34801561058857600080fd5b50610591611e97565b6040518082815260200191505060405180910390f35b3480156105b357600080fd5b50610620600480360360608110156105ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ea8565b005b34801561062e57600080fd5b506107796004803603604081101561064557600080fd5b810190808035906020019064010000000081111561066257600080fd5b82018360208201111561067457600080fd5b8035906020019184602083028401116401000000008311171561069657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156106f657600080fd5b82018360208201111561070857600080fd5b8035906020019184602083028401116401000000008311171561072a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611f1e565b005b34801561078757600080fd5b506107be6004803603604081101561079e57600080fd5b810190808035906020019092919080359060200190929190505050612172565b005b3480156107cc57600080fd5b50610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061225c565b6040518082815260200191505060405180910390f35b34801561083b57600080fd5b5061087e6004803603602081101561085257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b7565b6040518082815260200191505060405180910390f35b3480156108a057600080fd5b506108a96122cb565b005b3480156108b757600080fd5b506108c06123a6565b6040518082815260200191505060405180910390f35b3480156108e257600080fd5b5061090f600480360360208110156108f957600080fd5b81019080803590602001909291905050506123ac565b60405180821515815260200191505060405180910390f35b34801561093357600080fd5b506109606004803603602081101561094a57600080fd5b81019080803590602001909291905050506123cf565b005b34801561096e57600080fd5b5061099b6004803603602081101561098557600080fd5b8101908080359060200190929190505050612488565b005b3480156109a957600080fd5b50610a16600480360360608110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061251e565b005b348015610a2457600080fd5b50610a5160048036036020811015610a3b57600080fd5b810190808035906020019092919050505061253e565b6040518082815260200191505060405180910390f35b348015610a7357600080fd5b50610ab660048036036020811015610a8a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612561565b60405180821515815260200191505060405180910390f35b348015610ada57600080fd5b50610ae3612575565b6040518082815260200191505060405180910390f35b348015610b0557600080fd5b50610bbf60048036036020811015610b1c57600080fd5b8101908080359060200190640100000000811115610b3957600080fd5b820183602082011115610b4b57600080fd5b80359060200191846001830284011164010000000083111715610b6d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612586565b005b348015610bcd57600080fd5b50610bd6612641565b60405180821515815260200191505060405180910390f35b348015610bfa57600080fd5b50610c3d60048036036020811015610c1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612654565b60405180821515815260200191505060405180910390f35b348015610c6157600080fd5b50610c8e60048036036020811015610c7857600080fd5b8101908080359060200190929190505050612668565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc657600080fd5b50610ccf61269f565b6040518082815260200191505060405180910390f35b348015610cf157600080fd5b50610cfa6126b0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d3a578082015181840152602081019050610d1f565b50505050905090810190601f168015610d675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d8157600080fd5b50610dc460048036036020811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612752565b005b348015610dd257600080fd5b50610e1560048036036020811015610de957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612845565b6040518082815260200191505060405180910390f35b348015610e3757600080fd5b50610e4061291a565b005b348015610e4e57600080fd5b50610e57612a8a565b6040518082815260200191505060405180910390f35b348015610e7957600080fd5b50610e82612a9b565b6040518082815260200191505060405180910390f35b348015610ea457600080fd5b50610ead612aac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ee557600080fd5b50610f1260048036036020811015610efc57600080fd5b8101908080359060200190929190505050612ad6565b005b348015610f2057600080fd5b50610f29612baa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f69578082015181840152602081019050610f4e565b50505050905090810190601f168015610f965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610fb057600080fd5b50610fb9612c4c565b6040518082815260200191505060405180910390f35b348015610fdb57600080fd5b5061102a60048036036040811015610ff257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c78565b005b6110586004803603602081101561104257600080fd5b8101908080359060200190929190505050612e2e565b005b34801561106657600080fd5b506110a96004803603602081101561107d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061325e565b005b3480156110b757600080fd5b506111bb600480360360808110156110ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561113557600080fd5b82018360208201111561114757600080fd5b8035906020019184600183028401116401000000008311171561116957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613351565b005b3480156111c957600080fd5b506111d26133c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561120a57600080fd5b506112376004803603602081101561122157600080fd5b81019080803590602001909291905050506133ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561127757808201518184015260208101905061125c565b50505050905090810190601f1680156112a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156112be57600080fd5b506112c7613710565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156112ff57600080fd5b5061134c6004803603604081101561131657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613736565b60405180821515815260200191505060405180910390f35b34801561137057600080fd5b5061139d6004803603602081101561138757600080fd5b810190808035906020019092919050505061374c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156113d557600080fd5b50611438600480360360408110156113ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613789565b60405180821515815260200191505060405180910390f35b34801561145c57600080fd5b5061149f6004803603602081101561147357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061381d565b6040518082815260200191505060405180910390f35b3480156114c157600080fd5b50611504600480360360208110156114d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613831565b005b34801561151257600080fd5b506115556004803603602081101561152957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a26565b6040518082815260200191505060405180910390f35b34801561157757600080fd5b50611580613a3a565b6040518082815260200191505060405180910390f35b3480156115a257600080fd5b50611781600480360360608110156115b957600080fd5b81019080803590602001906401000000008111156115d657600080fd5b8201836020820111156115e857600080fd5b8035906020019184602083028401116401000000008311171561160a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561166a57600080fd5b82018360208201111561167c57600080fd5b8035906020019184602083028401116401000000008311171561169e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116fe57600080fd5b82018360208201111561171057600080fd5b8035906020019184602083028401116401000000008311171561173257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050613a5e565b005b61178b613b98565b73ffffffffffffffffffffffffffffffffffffffff166117a9612aac565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601b60159054906101000a900460ff1615601b60156101000a81548160ff021916908315150217905550565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060108054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561195d5780601f106119325761010080835404028352916020019161195d565b820191906000526020600020905b81548152906001019060200180831161194057829003601f168201915b5050505050905090565b601b60149054906101000a900460ff166119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53616c65206973206e6f7420616374697665000000000000000000000000000081525060200191505060405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115611a62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061571c6026913960400191505060405180910390fd5b601954611a7f82611a71611e86565b613ba090919063ffffffff16565b1115611ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b6000601760006001815260200190815260200160002054905034611b038383613c2890919063ffffffff16565b14611b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722076616c7565206973206e6f7420636f727265637400000000000081525060200191505060405180910390fd5b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611bde573d6000803e3d6000fd5b5060005b82811015611c8f576000611c076001611bf9611e86565b613ba090919063ffffffff16565b9050611c133382613cae565b601954611c1e611e86565b1015611c8157611c2e3382613d6c565b33601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b508080600101915050611be2565b505050565b6000611c9f82613d8a565b611cf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615810602c913960400191505060405180910390fd5b600e600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601b60159054906101000a900460ff1681565b6000611d4d82612668565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158946021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611df3613b98565b73ffffffffffffffffffffffffffffffffffffffff161480611e225750611e2181611e1c613b98565b613789565b5b611e77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806157426038913960400191505060405180910390fd5b611e818383613da7565b505050565b6000611e926002613e60565b905090565b6000611ea3600a613e60565b905090565b611eb9611eb3613b98565b82613e75565b611f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806158e76031913960400191505060405180910390fd5b611f19838383613f69565b505050565b611f26613b98565b73ffffffffffffffffffffffffffffffffffffffff16611f44612aac565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b825181101561216d576000838281518110611fe757fe5b602002602001015190506000838381518110611fff57fe5b6020026020010151905060195461202682612018611e86565b613ba090919063ffffffff16565b111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008111156120ac575050612160565b60005b8181101561215c5760006120d460016120c6611e86565b613ba090919063ffffffff16565b90506120e08482613cae565b6019546120eb611e86565b101561214e576120fb8482613d6c565b83601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5080806001019150506120af565b5050505b8080600101915050611fd0565b505050565b61219f33601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ea8565b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166386e5a1753385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050600060405180830381600087803b15801561223f57600080fd5b505af1158015612253573d6000803e3d6000fd5b50505050505050565b60006122af82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141ac90919063ffffffff16565b905092915050565b60006122c46015836141c6565b9050919050565b6122d3613b98565b73ffffffffffffffffffffffffffffffffffffffff166122f1612aac565b73ffffffffffffffffffffffffffffffffffffffff161461237a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601b60149054906101000a900460ff1615601b60146101000a81548160ff021916908315150217905550565b60195481565b60006123b782613d8a565b156123c557600190506123ca565b600090505b919050565b6123d7613b98565b73ffffffffffffffffffffffffffffffffffffffff166123f5612aac565b73ffffffffffffffffffffffffffffffffffffffff161461247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060198190555050565b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166341a98810836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561250257600080fd5b505af1158015612516573d6000803e3d6000fd5b505050505050565b61253983838360405180602001604052806000815250613351565b505050565b60008061255583600261421590919063ffffffff16565b50905080915050919050565b600061256e601583614241565b9050919050565b6000612581600c613e60565b905090565b61258e613b98565b73ffffffffffffffffffffffffffffffffffffffff166125ac612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61263e816142d7565b50565b601b60149054906101000a900460ff1681565b60006126616015836142f1565b9050919050565b6000612698826040518060600160405280602981526020016157a460299139600261434d9092919063ffffffff16565b9050919050565b60006126ab6004613e60565b905090565b606060138054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127485780601f1061271d57610100808354040283529160200191612748565b820191906000526020600020905b81548152906001019060200180831161272b57829003601f168201915b5050505050905090565b61275a613b98565b73ffffffffffffffffffffffffffffffffffffffff16612778612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061577a602a913960400191505060405180910390fd5b612913600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061436c565b9050919050565b612922613b98565b73ffffffffffffffffffffffffffffffffffffffff16612940612aac565b73ffffffffffffffffffffffffffffffffffffffff16146129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612a966006613e60565b905090565b6000612aa76008613e60565b905090565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612ade613b98565b73ffffffffffffffffffffffffffffffffffffffff16612afc612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612b85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b662386f26fc10000810260176000600181526020019081526020016000208190555050565b606060118054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c425780601f10612c1757610100808354040283529160200191612c42565b820191906000526020600020905b815481529060010190602001808311612c2557829003601f168201915b5050505050905090565b6000662386f26fc1000060176000600181526020019081526020016000205481612c7257fe5b04905090565b612c80613b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600f6000612d2e613b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ddb613b98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b601b60159054906101000a900460ff16612eb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53616c65206973206e6f7420616374697665000000000000000000000000000081525060200191505060405180910390fd5b600a811115612f27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6f6e656365206973206c696d742031300000000000000000000000000000000081525060200191505060405180910390fd5b612f313382613736565b612f86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806158b56032913960400191505060405180910390fd5b612f8f33612654565b612fe4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806159186025913960400191505060405180910390fd5b60195461300182612ff3611e86565b613ba090919063ffffffff16565b1115613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b6000613063336122b7565b9050600060176000600181526020019081526020016000205490503460646130a6846130988786613c2890919063ffffffff16565b613c2890919063ffffffff16565b816130ad57fe5b041115613122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722076616c7565206973206e6f7420636f727265637400000000000081525060200191505060405180910390fd5b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561318a573d6000803e3d6000fd5b5060005b838110156132585760006131b360016131a5611e86565b613ba090919063ffffffff16565b90506019546131c0611e86565b10156131d2576131d03382614381565b505b6131dc3382613cae565b6019546131e7611e86565b101561324a576131f73382613d6c565b33601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50808060010191505061318e565b50505050565b613266613b98565b73ffffffffffffffffffffffffffffffffffffffff16613284612aac565b73ffffffffffffffffffffffffffffffffffffffff161461330d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61336261335c613b98565b83613e75565b6133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806158e76031913960400191505060405180910390fd5b6133c384848484614397565b50505050565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606133fa82613d8a565b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615865602f913960400191505060405180910390fd5b6000601260008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134f85780601f106134cd576101008083540402835291602001916134f8565b820191906000526020600020905b8154815290600101906020018083116134db57829003601f168201915b5050505050905060006135096126b0565b905060008151141561351f57819250505061370b565b6000825111156136185780826040516020018083805190602001908083835b60208310613561578051825260208201915060208101905060208303925061353e565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106135b2578051825260208201915060208101905060208303925061358f565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600501925050506040516020818303038152906040529250505061370b565b8061362285614409565b6040516020018083805190602001908083835b602083106136585780518252602082019150602081019050602083039250613635565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106136a95780518252602082019150602081019050602083039250613686565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061374460158484614550565b905092915050565b6000601a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061382a6015836145e9565b9050919050565b613839613b98565b73ffffffffffffffffffffffffffffffffffffffff16613857612aac565b73ffffffffffffffffffffffffffffffffffffffff16146138e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156806026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613a33601583614638565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b613a66613b98565b73ffffffffffffffffffffffffffffffffffffffff16613a84612aac565b73ffffffffffffffffffffffffffffffffffffffff1614613b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8351811015613b9257613b35848281518110613b2857fe5b6020026020010151612654565b15613b3f57613b85565b613b83848281518110613b4e57fe5b6020026020010151848381518110613b6257fe5b6020026020010151848481518110613b7657fe5b6020026020010151614687565b505b8080600101915050613b10565b50505050565b600033905090565b600080828401905083811015613c1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415613c3b5760009050613ca8565b6000828402905082848281613c4c57fe5b0414613ca3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157ef6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d678183600c61469f9092919063ffffffff16565b505050565b613d868282604051806020016040528060008152506146d4565b5050565b6000613da082600261474590919063ffffffff16565b9050919050565b81600e600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613e1a83612668565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613e6e8260000161475f565b9050919050565b6000613e8082613d8a565b613ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806156f0602c913960400191505060405180910390fd5b6000613ee083612668565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613f4f57508373ffffffffffffffffffffffffffffffffffffffff16613f3784611c94565b73ffffffffffffffffffffffffffffffffffffffff16145b80613f605750613f5f8185613789565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613f8982612668565b73ffffffffffffffffffffffffffffffffffffffff1614613ff5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061583c6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561407b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156a66024913960400191505060405180910390fd5b614086838383614770565b614091600082613da7565b6140e281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061477590919063ffffffff16565b5061413481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061478f90919063ffffffff16565b5061414b8183600261469f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006141bb83600001836147a9565b60001c905092915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154905092915050565b600080600080614228866000018661482c565b915091508160001c8160001c9350935050509250929050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201548360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115905092915050565b80601390805190602001906142ed929190615555565b5050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16905092915050565b6000614360846000018460001b846148c5565b60001c90509392505050565b600061437a826000016149bb565b9050919050565b600061438f601584846149cc565b905092915050565b6143a2848484613f69565b6143ae84848484614ad4565b614403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806156236032913960400191505060405180910390fd5b50505050565b60606000821415614451576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061454b565b600082905060005b6000821461447b578080600101915050600a828161447357fe5b049150614459565b60008167ffffffffffffffff8111801561449457600080fd5b506040519080825280601f01601f1916602001820160405280156144c75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461454357600a84816144e857fe5b0660300160f81b8282806001900393508151811061450257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161453b57fe5b0493506144d6565b819450505050505b919050565b60008360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401111590509392505050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905092915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154905092915050565b60006146966015858585614ced565b90509392505050565b60006146cb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614e48565b90509392505050565b6146de8383614f24565b6146eb6000848484614ad4565b614740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806156236032913960400191505060405180910390fd5b505050565b6000614757836000018360001b615118565b905092915050565b600081600001805490509050919050565b505050565b6000614787836000018360001b61513b565b905092915050565b60006147a1836000018360001b615223565b905092915050565b60008183600001805490501161480a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156016022913960400191505060405180910390fd5b82600001828154811061481957fe5b9060005260206000200154905092915050565b6000808284600001805490501161488e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157cd6022913960400191505060405180910390fd5b600084600001848154811061489f57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061498c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614951578082015181840152602081019050614936565b50505050905090810190601f16801561497e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061499f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600060018460000160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154018460000160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401829080600181540180825580915050600190039060005260206000200160009091909190915055600190509392505050565b6000614af58473ffffffffffffffffffffffffffffffffffffffff16615293565b614b025760019050614ce5565b6000614c6c63150b7a0260e01b614b17613b98565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614b9b578082015181840152602081019050614b80565b50505050905090810190601f168015614bc85780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615623603291398773ffffffffffffffffffffffffffffffffffffffff166152a69092919063ffffffff16565b90506000818060200190516020811015614c8557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600060018560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff021916908315150217905550828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555060008560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550818560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550846001016000815480929190600101919050555060019050949350505050565b6000808460010160008581526020019081526020016000205490506000811415614eef57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614f1d565b82856000016001830381548110614f0257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fc7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614fd081613d8a565b15615043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61504f60008383614770565b6150a081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061478f90919063ffffffff16565b506150b78183600261469f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114615217576000600182039050600060018660000180549050039050600086600001828154811061518657fe5b90600052602060002001549050808760000184815481106151a357fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806151db57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061521d565b60009150505b92915050565b600061522f83836152be565b61528857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061528d565b600090505b92915050565b600080823b905060008111915050919050565b60606152b584846000856152e1565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561533c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156ca6026913960400191505060405180910390fd5b61534585615293565b6153b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061540657805182526020820191506020810190506020830392506153e3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615468576040519150601f19603f3d011682016040523d82523d6000602084013e61546d565b606091505b509150915061547d828286615489565b92505050949350505050565b606083156154995782905061554e565b6000835111156154ac5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155135780820151818401526020810190506154f8565b50505050905090810190601f1680156155405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261558b57600085556155d2565b82601f106155a457805160ff19168380011785556155d2565b828001600101855582156155d2579182015b828111156155d15782518255916020019190600101906155b6565b5b5090506155df91906155e3565b5090565b5b808211156155fc5760008160009055506001016155e4565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572507572636861736520776f756c6420657863656564206d617820737570706c79206f66204d61727469616c4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f206d6f7265207468616e20313020746f6b656e7320706572207472616e73616374696f6e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572696e207768697465206c69737420616e6420616c7265616479206279206f766572202c6e6f772063616e206e6f74206275794552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646e6f7420696e207768697465206c69737420616e64206e6f772063616e206e6f7420627579a2646970667358221220a1d75f27a0fdf2c1778e555d68d0102e6a55542550ac40f015171e871708b9ab64736f6c63430007060033
Deployed Bytecode
0x60806040526004361061031a5760003560e01c80636352211e116101ab578063a59049ee116100f7578063da621a5711610095578063f2fde38b1161006f578063f2fde38b146114b5578063f429f19b14611506578063f968adbe1461156b578063ff7aac0f146115965761031a565b8063da621a5714611364578063e985e9c5146113c9578063ebb6dad8146114505761031a565b8063bc19e024116100d1578063bc19e024146111bd578063c87b56dd146111fe578063cefa74cc146112b2578063da015bb2146112f35761031a565b8063a59049ee1461102c578063a7efbc8e1461105a578063b88d4fde146110ab5761031a565b806375f668dc1161016457806391b7f5ed1161013e57806391b7f5ed14610ed957806395d89b4114610f1457806398d5fdca14610fa4578063a22cb46514610fcf5761031a565b806375f668dc14610e425780637ec38f5a14610e6d5780638da5cb5b14610e985761031a565b80636352211e14610c555780636476519a14610cba5780636c0360eb14610ce55780636dcea85f14610d7557806370a0823114610dc6578063715018a614610e2b5761031a565b806330f93c1f1161026a57806342842e0e1161022357806354a2cf55116101fd57806354a2cf5514610ace57806355f804b314610af9578063564566a814610bc15780635dbe47e814610bee5761031a565b806342842e0e1461099d5780634f6ccce714610a185780635085d4f014610a675761031a565b806330f93c1f1461082f57806334918dfd146108945780633a4f6999146108ab5780633c8b83ea146108d65780633fb5c1cb1461092757806341a98810146109625761031a565b8063095ea7b3116102d757806323b872dd116102b157806323b872dd146105a757806327f74ab5146106225780632b0c74ee1461077b5780632f745c59146107c05761031a565b8063095ea7b3146104f657806318160ddd146105515780631dab99741461057c5761031a565b80630114bbf91461031f57806301ffc9a71461033657806306fdde03146103a6578063075ec78414610436578063081812fc14610464578063094d5da1146104c9575b600080fd5b34801561032b57600080fd5b50610334611783565b005b34801561034257600080fd5b5061038e6004803603602081101561035957600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916906020019092919050505061185e565b60405180821515815260200191505060405180910390f35b3480156103b257600080fd5b506103bb6118c5565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103fb5780820151818401526020810190506103e0565b50505050905090810190601f1680156104285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104626004803603602081101561044c57600080fd5b8101908080359060200190929190505050611967565b005b34801561047057600080fd5b5061049d6004803603602081101561048757600080fd5b8101908080359060200190929190505050611c94565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104d557600080fd5b506104de611d2f565b60405180821515815260200191505060405180910390f35b34801561050257600080fd5b5061054f6004803603604081101561051957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d42565b005b34801561055d57600080fd5b50610566611e86565b6040518082815260200191505060405180910390f35b34801561058857600080fd5b50610591611e97565b6040518082815260200191505060405180910390f35b3480156105b357600080fd5b50610620600480360360608110156105ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ea8565b005b34801561062e57600080fd5b506107796004803603604081101561064557600080fd5b810190808035906020019064010000000081111561066257600080fd5b82018360208201111561067457600080fd5b8035906020019184602083028401116401000000008311171561069657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156106f657600080fd5b82018360208201111561070857600080fd5b8035906020019184602083028401116401000000008311171561072a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611f1e565b005b34801561078757600080fd5b506107be6004803603604081101561079e57600080fd5b810190808035906020019092919080359060200190929190505050612172565b005b3480156107cc57600080fd5b50610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061225c565b6040518082815260200191505060405180910390f35b34801561083b57600080fd5b5061087e6004803603602081101561085257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b7565b6040518082815260200191505060405180910390f35b3480156108a057600080fd5b506108a96122cb565b005b3480156108b757600080fd5b506108c06123a6565b6040518082815260200191505060405180910390f35b3480156108e257600080fd5b5061090f600480360360208110156108f957600080fd5b81019080803590602001909291905050506123ac565b60405180821515815260200191505060405180910390f35b34801561093357600080fd5b506109606004803603602081101561094a57600080fd5b81019080803590602001909291905050506123cf565b005b34801561096e57600080fd5b5061099b6004803603602081101561098557600080fd5b8101908080359060200190929190505050612488565b005b3480156109a957600080fd5b50610a16600480360360608110156109c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061251e565b005b348015610a2457600080fd5b50610a5160048036036020811015610a3b57600080fd5b810190808035906020019092919050505061253e565b6040518082815260200191505060405180910390f35b348015610a7357600080fd5b50610ab660048036036020811015610a8a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612561565b60405180821515815260200191505060405180910390f35b348015610ada57600080fd5b50610ae3612575565b6040518082815260200191505060405180910390f35b348015610b0557600080fd5b50610bbf60048036036020811015610b1c57600080fd5b8101908080359060200190640100000000811115610b3957600080fd5b820183602082011115610b4b57600080fd5b80359060200191846001830284011164010000000083111715610b6d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612586565b005b348015610bcd57600080fd5b50610bd6612641565b60405180821515815260200191505060405180910390f35b348015610bfa57600080fd5b50610c3d60048036036020811015610c1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612654565b60405180821515815260200191505060405180910390f35b348015610c6157600080fd5b50610c8e60048036036020811015610c7857600080fd5b8101908080359060200190929190505050612668565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610cc657600080fd5b50610ccf61269f565b6040518082815260200191505060405180910390f35b348015610cf157600080fd5b50610cfa6126b0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d3a578082015181840152602081019050610d1f565b50505050905090810190601f168015610d675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610d8157600080fd5b50610dc460048036036020811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612752565b005b348015610dd257600080fd5b50610e1560048036036020811015610de957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612845565b6040518082815260200191505060405180910390f35b348015610e3757600080fd5b50610e4061291a565b005b348015610e4e57600080fd5b50610e57612a8a565b6040518082815260200191505060405180910390f35b348015610e7957600080fd5b50610e82612a9b565b6040518082815260200191505060405180910390f35b348015610ea457600080fd5b50610ead612aac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ee557600080fd5b50610f1260048036036020811015610efc57600080fd5b8101908080359060200190929190505050612ad6565b005b348015610f2057600080fd5b50610f29612baa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f69578082015181840152602081019050610f4e565b50505050905090810190601f168015610f965780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610fb057600080fd5b50610fb9612c4c565b6040518082815260200191505060405180910390f35b348015610fdb57600080fd5b5061102a60048036036040811015610ff257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c78565b005b6110586004803603602081101561104257600080fd5b8101908080359060200190929190505050612e2e565b005b34801561106657600080fd5b506110a96004803603602081101561107d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061325e565b005b3480156110b757600080fd5b506111bb600480360360808110156110ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561113557600080fd5b82018360208201111561114757600080fd5b8035906020019184600183028401116401000000008311171561116957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613351565b005b3480156111c957600080fd5b506111d26133c9565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561120a57600080fd5b506112376004803603602081101561122157600080fd5b81019080803590602001909291905050506133ef565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561127757808201518184015260208101905061125c565b50505050905090810190601f1680156112a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156112be57600080fd5b506112c7613710565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156112ff57600080fd5b5061134c6004803603604081101561131657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613736565b60405180821515815260200191505060405180910390f35b34801561137057600080fd5b5061139d6004803603602081101561138757600080fd5b810190808035906020019092919050505061374c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156113d557600080fd5b50611438600480360360408110156113ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613789565b60405180821515815260200191505060405180910390f35b34801561145c57600080fd5b5061149f6004803603602081101561147357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061381d565b6040518082815260200191505060405180910390f35b3480156114c157600080fd5b50611504600480360360208110156114d857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613831565b005b34801561151257600080fd5b506115556004803603602081101561152957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613a26565b6040518082815260200191505060405180910390f35b34801561157757600080fd5b50611580613a3a565b6040518082815260200191505060405180910390f35b3480156115a257600080fd5b50611781600480360360608110156115b957600080fd5b81019080803590602001906401000000008111156115d657600080fd5b8201836020820111156115e857600080fd5b8035906020019184602083028401116401000000008311171561160a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561166a57600080fd5b82018360208201111561167c57600080fd5b8035906020019184602083028401116401000000008311171561169e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156116fe57600080fd5b82018360208201111561171057600080fd5b8035906020019184602083028401116401000000008311171561173257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050613a5e565b005b61178b613b98565b73ffffffffffffffffffffffffffffffffffffffff166117a9612aac565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601b60159054906101000a900460ff1615601b60156101000a81548160ff021916908315150217905550565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060108054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561195d5780601f106119325761010080835404028352916020019161195d565b820191906000526020600020905b81548152906001019060200180831161194057829003601f168201915b5050505050905090565b601b60149054906101000a900460ff166119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53616c65206973206e6f7420616374697665000000000000000000000000000081525060200191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a811115611a62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061571c6026913960400191505060405180910390fd5b601954611a7f82611a71611e86565b613ba090919063ffffffff16565b1115611ad6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b6000601760006001815260200190815260200160002054905034611b038383613c2890919063ffffffff16565b14611b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722076616c7565206973206e6f7420636f727265637400000000000081525060200191505060405180910390fd5b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611bde573d6000803e3d6000fd5b5060005b82811015611c8f576000611c076001611bf9611e86565b613ba090919063ffffffff16565b9050611c133382613cae565b601954611c1e611e86565b1015611c8157611c2e3382613d6c565b33601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b508080600101915050611be2565b505050565b6000611c9f82613d8a565b611cf4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615810602c913960400191505060405180910390fd5b600e600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601b60159054906101000a900460ff1681565b6000611d4d82612668565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806158946021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611df3613b98565b73ffffffffffffffffffffffffffffffffffffffff161480611e225750611e2181611e1c613b98565b613789565b5b611e77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806157426038913960400191505060405180910390fd5b611e818383613da7565b505050565b6000611e926002613e60565b905090565b6000611ea3600a613e60565b905090565b611eb9611eb3613b98565b82613e75565b611f0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806158e76031913960400191505060405180910390fd5b611f19838383613f69565b505050565b611f26613b98565b73ffffffffffffffffffffffffffffffffffffffff16611f44612aac565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b825181101561216d576000838281518110611fe757fe5b602002602001015190506000838381518110611fff57fe5b6020026020010151905060195461202682612018611e86565b613ba090919063ffffffff16565b111561207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8111156120ac575050612160565b60005b8181101561215c5760006120d460016120c6611e86565b613ba090919063ffffffff16565b90506120e08482613cae565b6019546120eb611e86565b101561214e576120fb8482613d6c565b83601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5080806001019150506120af565b5050505b8080600101915050611fd0565b505050565b61219f33601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611ea8565b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166386e5a1753385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050600060405180830381600087803b15801561223f57600080fd5b505af1158015612253573d6000803e3d6000fd5b50505050505050565b60006122af82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206141ac90919063ffffffff16565b905092915050565b60006122c46015836141c6565b9050919050565b6122d3613b98565b73ffffffffffffffffffffffffffffffffffffffff166122f1612aac565b73ffffffffffffffffffffffffffffffffffffffff161461237a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601b60149054906101000a900460ff1615601b60146101000a81548160ff021916908315150217905550565b60195481565b60006123b782613d8a565b156123c557600190506123ca565b600090505b919050565b6123d7613b98565b73ffffffffffffffffffffffffffffffffffffffff166123f5612aac565b73ffffffffffffffffffffffffffffffffffffffff161461247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060198190555050565b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166341a98810836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561250257600080fd5b505af1158015612516573d6000803e3d6000fd5b505050505050565b61253983838360405180602001604052806000815250613351565b505050565b60008061255583600261421590919063ffffffff16565b50905080915050919050565b600061256e601583614241565b9050919050565b6000612581600c613e60565b905090565b61258e613b98565b73ffffffffffffffffffffffffffffffffffffffff166125ac612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612635576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61263e816142d7565b50565b601b60149054906101000a900460ff1681565b60006126616015836142f1565b9050919050565b6000612698826040518060600160405280602981526020016157a460299139600261434d9092919063ffffffff16565b9050919050565b60006126ab6004613e60565b905090565b606060138054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127485780601f1061271d57610100808354040283529160200191612748565b820191906000526020600020905b81548152906001019060200180831161272b57829003601f168201915b5050505050905090565b61275a613b98565b73ffffffffffffffffffffffffffffffffffffffff16612778612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061577a602a913960400191505060405180910390fd5b612913600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061436c565b9050919050565b612922613b98565b73ffffffffffffffffffffffffffffffffffffffff16612940612aac565b73ffffffffffffffffffffffffffffffffffffffff16146129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612a966006613e60565b905090565b6000612aa76008613e60565b905090565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612ade613b98565b73ffffffffffffffffffffffffffffffffffffffff16612afc612aac565b73ffffffffffffffffffffffffffffffffffffffff1614612b85576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b662386f26fc10000810260176000600181526020019081526020016000208190555050565b606060118054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c425780601f10612c1757610100808354040283529160200191612c42565b820191906000526020600020905b815481529060010190602001808311612c2557829003601f168201915b5050505050905090565b6000662386f26fc1000060176000600181526020019081526020016000205481612c7257fe5b04905090565b612c80613b98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b80600f6000612d2e613b98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612ddb613b98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b601b60159054906101000a900460ff16612eb0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f53616c65206973206e6f7420616374697665000000000000000000000000000081525060200191505060405180910390fd5b600a811115612f27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6f6e656365206973206c696d742031300000000000000000000000000000000081525060200191505060405180910390fd5b612f313382613736565b612f86576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806158b56032913960400191505060405180910390fd5b612f8f33612654565b612fe4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806159186025913960400191505060405180910390fd5b60195461300182612ff3611e86565b613ba090919063ffffffff16565b1115613058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180615655602b913960400191505060405180910390fd5b6000613063336122b7565b9050600060176000600181526020019081526020016000205490503460646130a6846130988786613c2890919063ffffffff16565b613c2890919063ffffffff16565b816130ad57fe5b041115613122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45746865722076616c7565206973206e6f7420636f727265637400000000000081525060200191505060405180910390fd5b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561318a573d6000803e3d6000fd5b5060005b838110156132585760006131b360016131a5611e86565b613ba090919063ffffffff16565b90506019546131c0611e86565b10156131d2576131d03382614381565b505b6131dc3382613cae565b6019546131e7611e86565b101561324a576131f73382613d6c565b33601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50808060010191505061318e565b50505050565b613266613b98565b73ffffffffffffffffffffffffffffffffffffffff16613284612aac565b73ffffffffffffffffffffffffffffffffffffffff161461330d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61336261335c613b98565b83613e75565b6133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806158e76031913960400191505060405180910390fd5b6133c384848484614397565b50505050565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606133fa82613d8a565b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615865602f913960400191505060405180910390fd5b6000601260008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156134f85780601f106134cd576101008083540402835291602001916134f8565b820191906000526020600020905b8154815290600101906020018083116134db57829003601f168201915b5050505050905060006135096126b0565b905060008151141561351f57819250505061370b565b6000825111156136185780826040516020018083805190602001908083835b60208310613561578051825260208201915060208101905060208303925061353e565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106135b2578051825260208201915060208101905060208303925061358f565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600501925050506040516020818303038152906040529250505061370b565b8061362285614409565b6040516020018083805190602001908083835b602083106136585780518252602082019150602081019050602083039250613635565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106136a95780518252602082019150602081019050602083039250613686565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061374460158484614550565b905092915050565b6000601a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600061382a6015836145e9565b9050919050565b613839613b98565b73ffffffffffffffffffffffffffffffffffffffff16613857612aac565b73ffffffffffffffffffffffffffffffffffffffff16146138e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156806026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000613a33601583614638565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b613a66613b98565b73ffffffffffffffffffffffffffffffffffffffff16613a84612aac565b73ffffffffffffffffffffffffffffffffffffffff1614613b0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b8351811015613b9257613b35848281518110613b2857fe5b6020026020010151612654565b15613b3f57613b85565b613b83848281518110613b4e57fe5b6020026020010151848381518110613b6257fe5b6020026020010151848481518110613b7657fe5b6020026020010151614687565b505b8080600101915050613b10565b50505050565b600033905090565b600080828401905083811015613c1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415613c3b5760009050613ca8565b6000828402905082848281613c4c57fe5b0414613ca3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806157ef6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613d678183600c61469f9092919063ffffffff16565b505050565b613d868282604051806020016040528060008152506146d4565b5050565b6000613da082600261474590919063ffffffff16565b9050919050565b81600e600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613e1a83612668565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613e6e8260000161475f565b9050919050565b6000613e8082613d8a565b613ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806156f0602c913960400191505060405180910390fd5b6000613ee083612668565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613f4f57508373ffffffffffffffffffffffffffffffffffffffff16613f3784611c94565b73ffffffffffffffffffffffffffffffffffffffff16145b80613f605750613f5f8185613789565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613f8982612668565b73ffffffffffffffffffffffffffffffffffffffff1614613ff5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602981526020018061583c6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561407b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156a66024913960400191505060405180910390fd5b614086838383614770565b614091600082613da7565b6140e281600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061477590919063ffffffff16565b5061413481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061478f90919063ffffffff16565b5061414b8183600261469f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006141bb83600001836147a9565b60001c905092915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030154905092915050565b600080600080614228866000018661482c565b915091508160001c8160001c9350935050509250929050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201548360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001541115905092915050565b80601390805190602001906142ed929190615555565b5050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900460ff16905092915050565b6000614360846000018460001b846148c5565b60001c90509392505050565b600061437a826000016149bb565b9050919050565b600061438f601584846149cc565b905092915050565b6143a2848484613f69565b6143ae84848484614ad4565b614403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806156236032913960400191505060405180910390fd5b50505050565b60606000821415614451576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061454b565b600082905060005b6000821461447b578080600101915050600a828161447357fe5b049150614459565b60008167ffffffffffffffff8111801561449457600080fd5b506040519080825280601f01601f1916602001820160405280156144c75781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461454357600a84816144e857fe5b0660300160f81b8282806001900393508151811061450257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161453b57fe5b0493506144d6565b819450505050505b919050565b60008360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401111590509392505050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905092915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154905092915050565b60006146966015858585614ced565b90509392505050565b60006146cb846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614e48565b90509392505050565b6146de8383614f24565b6146eb6000848484614ad4565b614740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806156236032913960400191505060405180910390fd5b505050565b6000614757836000018360001b615118565b905092915050565b600081600001805490509050919050565b505050565b6000614787836000018360001b61513b565b905092915050565b60006147a1836000018360001b615223565b905092915050565b60008183600001805490501161480a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806156016022913960400191505060405180910390fd5b82600001828154811061481957fe5b9060005260206000200154905092915050565b6000808284600001805490501161488e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157cd6022913960400191505060405180910390fd5b600084600001848154811061489f57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061498c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614951578082015181840152602081019050614936565b50505050905090810190601f16801561497e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061499f57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600060018460000160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154018460000160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401829080600181540180825580915050600190039060005260206000200160009091909190915055600190509392505050565b6000614af58473ffffffffffffffffffffffffffffffffffffffff16615293565b614b025760019050614ce5565b6000614c6c63150b7a0260e01b614b17613b98565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614b9b578082015181840152602081019050614b80565b50505050905090810190601f168015614bc85780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615623603291398773ffffffffffffffffffffffffffffffffffffffff166152a69092919063ffffffff16565b90506000818060200190516020811015614c8557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600060018560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548160ff021916908315150217905550828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555060008560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550818560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550846001016000815480929190600101919050555060019050949350505050565b6000808460010160008581526020019081526020016000205490506000811415614eef57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614f1d565b82856000016001830381548110614f0257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614fc7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b614fd081613d8a565b15615043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61504f60008383614770565b6150a081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061478f90919063ffffffff16565b506150b78183600261469f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114615217576000600182039050600060018660000180549050039050600086600001828154811061518657fe5b90600052602060002001549050808760000184815481106151a357fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806151db57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061521d565b60009150505b92915050565b600061522f83836152be565b61528857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061528d565b600090505b92915050565b600080823b905060008111915050919050565b60606152b584846000856152e1565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561533c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806156ca6026913960400191505060405180910390fd5b61534585615293565b6153b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061540657805182526020820191506020810190506020830392506153e3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615468576040519150601f19603f3d011682016040523d82523d6000602084013e61546d565b606091505b509150915061547d828286615489565b92505050949350505050565b606083156154995782905061554e565b6000835111156154ac5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156155135780820151818401526020810190506154f8565b50505050905090810190601f1680156155405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261558b57600085556155d2565b82601f106155a457805160ff19168380011785556155d2565b828001600101855582156155d2579182015b828111156155d15782518255916020019190600101906155b6565b5b5090506155df91906155e3565b5090565b5b808211156155fc5760008160009055506001016155e4565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572507572636861736520776f756c6420657863656564206d617820737570706c79206f66204d61727469616c4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4e6f206d6f7265207468616e20313020746f6b656e7320706572207472616e73616374696f6e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572696e207768697465206c69737420616e6420616c7265616479206279206f766572202c6e6f772063616e206e6f74206275794552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665646e6f7420696e207768697465206c69737420616e64206e6f772063616e206e6f7420627579a2646970667358221220a1d75f27a0fdf2c1778e555d68d0102e6a55542550ac40f015171e871708b9ab64736f6c63430007060033
Deployed Bytecode Sourcemap
68478:7567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75934:104;;;;;;;;;;;;;:::i;:::-;;9740:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50866:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71043:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54900:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;70173:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54430:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52680:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53677:212;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55790:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71902:943;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74556:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52442:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69310:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75826:89;;;;;;;;;;;;;:::i;:::-;;70009:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75512:184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;70920:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74818:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56166:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54197:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68764:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53899:207;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75710:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70142:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69722:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50622:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52969:210;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52261:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70696:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50339:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67761:148;;;;;;;;;;;;;:::i;:::-;;53187:201;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53396;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67110:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;70583:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51035:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70803:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55193:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72861:1664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70484:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56388:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70209:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51210:812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70110:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68892:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74994:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55559:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69178:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68064:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69050:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69965:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75124:342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75934:104;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76013:17:::1;;;;;;;;;;;76012:18;75992:17;;:38;;;;;;;;;;;;;;;;;;75934:104::o:0;9740:150::-;9825:4;9849:20;:33;9870:11;9849:33;;;;;;;;;;;;;;;;;;;;;;;;;;;9842:40;;9740:150;;;:::o;50866:100::-;50920:13;50953:5;50946:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50866:100;:::o;71043:841::-;71118:12;;;;;;;;;;;71110:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71190:8;71172:14;:26;;71164:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71297:9;;71260:33;71278:14;71260:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;71252:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71365:13;71381:8;:11;71390:1;71381:11;;;;;;;;;;;;71365:27;;71442:9;71413:25;71423:14;71413:5;:9;;:25;;;;:::i;:::-;:38;71405:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71501:8;;;;;;;;;;;71493:26;;:37;71520:9;71493:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71548:9;71543:334;71567:14;71563:1;:18;71543:334;;;71603:18;71624:20;71642:1;71624:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;71603:41;;71659:36;71672:10;71684;71659:12;:36::i;:::-;71730:9;;71714:13;:11;:13::i;:::-;:25;71710:156;;;71762:33;71772:10;71784;71762:9;:33::i;:::-;71840:10;71814:11;:23;71826:10;71814:23;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;71710:156;71543:334;71583:3;;;;;;;71543:334;;;;71043:841;;:::o;54900:221::-;54976:7;55004:16;55012:7;55004;:16::i;:::-;54996:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55089:15;:24;55105:7;55089:24;;;;;;;;;;;;;;;;;;;;;55082:31;;54900:221;;;:::o;70173:29::-;;;;;;;;;;;;;:::o;54430:404::-;54511:13;54527:23;54542:7;54527:14;:23::i;:::-;54511:39;;54575:5;54569:11;;:2;:11;;;;54561:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54655:5;54639:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54664:44;54688:5;54695:12;:10;:12::i;:::-;54664:23;:44::i;:::-;54639:69;54631:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54805:21;54814:2;54818:7;54805:8;:21::i;:::-;54430:404;;;:::o;52680:211::-;52741:7;52862:21;:12;:19;:21::i;:::-;52855:28;;52680:211;:::o;53677:212::-;53734:7;53855:26;:17;:24;:26::i;:::-;53848:33;;53677:212;:::o;55790:305::-;55951:41;55970:12;:10;:12::i;:::-;55984:7;55951:18;:41::i;:::-;55943:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56059:28;56069:4;56075:2;56079:7;56059:9;:28::i;:::-;55790:305;;;:::o;71902:943::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72016:6:::1;72011:827;72032:7;:14;72028:1;:18;72011:827;;;72071:16;72090:7;72098:1;72090:10;;;;;;;;;;;;;;72071:29;;72132:22;72157:18;72176:1;72157:21;;;;;;;;;;;;;;72132:46;;72238:9;;72201:33;72219:14;72201:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;72193:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72348:8;72331:14;:25;72327:500;;;72379:8;;;;72327:500;72433:9;72428:384;72452:14;72448:1;:18;72428:384;;;72496:18;72517:20;72535:1;72517:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;72496:41;;72560:34;72573:8;72583:10;72560:12;:34::i;:::-;72637:9;;72621:13;:11;:13::i;:::-;:25;72617:176;;;72677:31;72687:8;72697:10;72677:9;:31::i;:::-;72761:8;72735:11;:23;72747:10;72735:23;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;72617:176;72428:384;72468:3;;;;;;;72428:384;;;;72011:827;;;72048:3;;;;;;;72011:827;;;;71902:943:::0;;:::o;74556:229::-;74623:45;74636:10;74648;;;;;;;;;;;74660:7;74623:12;:45::i;:::-;74679:18;74713:10;;;;;;;;;;;74679:45;;74735:6;:13;;;74749:10;74761:7;74770:6;74735:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74556:229;;;:::o;52442:162::-;52539:7;52566:30;52590:5;52566:13;:20;52580:5;52566:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;52559:37;;52442:162;;;;:::o;69310:118::-;69360:4;69389:31;69410:4;69416:3;69389:20;:31::i;:::-;69382:38;;69310:118;;;:::o;75826:89::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75895:12:::1;;;;;;;;;;;75894:13;75879:12;;:28;;;;;;;;;;;;;;;;;;75826:89::o:0;70009:25::-;;;;:::o;75512:184::-;75567:4;75588:16;75596:7;75588;:16::i;:::-;75584:105;;;75628:4;75621:11;;;;75584:105;75672:5;75665:12;;75512:184;;;;:::o;70920:95::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70998:9:::1;70986;:21;;;;70920:95:::0;:::o;74818:141::-;74871:18;74905:10;;;;;;;;;;;74871:45;;74927:6;:15;;;74943:7;74927:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74818:141;;:::o;56166:151::-;56270:39;56287:4;56293:2;56297:7;56270:39;;;;;;;;;;;;:16;:39::i;:::-;56166:151;;;:::o;54197:171::-;54272:7;54293:15;54313:22;54329:5;54313:12;:15;;:22;;;;:::i;:::-;54292:43;;;54353:7;54346:14;;;54197:171;;;:::o;68764:120::-;68815:4;68844:32;68866:4;68872:3;68844:21;:32::i;:::-;68837:39;;68764:120;;;:::o;53899:207::-;53954:7;54075:23;:14;:21;:23::i;:::-;54068:30;;53899:207;:::o;75710:99::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75781:20:::1;75793:7;75781:11;:20::i;:::-;75710:99:::0;:::o;70142:24::-;;;;;;;;;;;;;:::o;69722:122::-;69774:4;69803:33;69826:4;69832:3;69803:22;:33::i;:::-;69796:40;;69722:122;;;:::o;50622:177::-;50694:7;50721:70;50738:7;50721:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;50714:77;;50622:177;;;:::o;52969:210::-;53025:7;53146:25;:16;:23;:25::i;:::-;53139:32;;52969:210;:::o;52261:97::-;52309:13;52342:8;52335:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52261:97;:::o;70696:90::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70772:6:::1;70759:10;;:19;;;;;;;;;;;;;;;;;;70696:90:::0;:::o;50339:221::-;50411:7;50456:1;50439:19;;:5;:19;;;;50431:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50523:29;:13;:20;50537:5;50523:20;;;;;;;;;;;;;;;:27;:29::i;:::-;50516:36;;50339:221;;;:::o;67761:148::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67868:1:::1;67831:40;;67852:6;;;;;;;;;;;67831:40;;;;;;;;;;;;67899:1;67882:6;;:19;;;;;;;;;;;;;;;;;;67761:148::o:0;53187:201::-;53244:7;53365:15;:6;:13;:15::i;:::-;53358:22;;53187:201;:::o;53396:::-;53453:7;53574:15;:6;:13;:15::i;:::-;53567:22;;53396:201;:::o;67110:87::-;67156:7;67183:6;;;;;;;;;;;67176:13;;67110:87;:::o;70583:97::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70664:8:::1;70657:4;:15;70643:8;:11;70652:1;70643:11;;;;;;;;;;;:29;;;;70583:97:::0;:::o;51035:104::-;51091:13;51124:7;51117:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51035:104;:::o;70803:100::-;70844:7;70886:8;70871;:11;70880:1;70871:11;;;;;;;;;;;;:24;;;;;;70864:31;;70803:100;:::o;55193:295::-;55308:12;:10;:12::i;:::-;55296:24;;:8;:24;;;;55288:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55408:8;55363:18;:32;55382:12;:10;:12::i;:::-;55363:32;;;;;;;;;;;;;;;:42;55396:8;55363:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55461:8;55432:48;;55447:12;:10;:12::i;:::-;55432:48;;;55471:8;55432:48;;;;;;;;;;;;;;;;;;;;55193:295;;:::o;72861:1664::-;72950:17;;;;;;;;;;;72942:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73039:2;73021:14;:20;;73013:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73094:38;73105:10;73117:14;73094:10;:38::i;:::-;73086:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73218:20;73227:10;73218:8;:20::i;:::-;73210:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73349:9;;73312:33;73330:14;73312:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;73304:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73429:9;73441:18;73448:10;73441:6;:18::i;:::-;73429:30;;73472:13;73488:8;:11;73497:1;73488:11;;;;;;;;;;;;73472:27;;73563:9;73556:3;73518:35;73548:4;73518:25;73528:14;73518:5;:9;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;:41;;;;;;:54;;73510:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73622:8;;;;;;;;;;;73614:26;;:37;73641:9;73614:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73667:9;73662:856;73686:14;73682:1;:18;73662:856;;;73722:17;73742:20;73760:1;73742:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;73722:40;;73830:9;;73814:13;:11;:13::i;:::-;:25;73810:92;;;73860:26;73864:10;73876:9;73860:3;:26::i;:::-;;73810:92;73916:35;73929:10;73941:9;73916:12;:35::i;:::-;73986:9;;73970:13;:11;:13::i;:::-;:25;73966:153;;;74018:32;74028:10;74040:9;74018;:32::i;:::-;74093:10;74069:11;:22;74081:9;74069:22;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;73966:153;73662:856;73702:3;;;;;;;73662:856;;;;72861:1664;;;:::o;70484:82::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70554:4:::1;70543:8;;:15;;;;;;;;;;;;;;;;;;70484:82:::0;:::o;56388:285::-;56520:41;56539:12;:10;:12::i;:::-;56553:7;56520:18;:41::i;:::-;56512:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56626:39;56640:4;56646:2;56650:7;56659:5;56626:13;:39::i;:::-;56388:285;;;;:::o;70209:23::-;;;;;;;;;;;;;:::o;51210:812::-;51283:13;51317:16;51325:7;51317;:16::i;:::-;51309:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51398:23;51424:10;:19;51435:7;51424:19;;;;;;;;;;;51398:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51454:18;51475:9;:7;:9::i;:::-;51454:30;;51582:1;51566:4;51560:18;:23;51556:72;;;51607:9;51600:16;;;;;;51556:72;51758:1;51738:9;51732:23;:27;51728:117;;;51807:4;51813:9;51790:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51776:57;;;;;;51728:117;51977:4;51984:18;:7;:16;:18::i;:::-;51960:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51946:68;;;;51210:812;;;;:::o;70110:25::-;;;;;;;;;;;;;:::o;68892:150::-;68962:4;68991:43;69016:4;69022:3;69027:6;68991:24;:43::i;:::-;68984:50;;68892:150;;;;:::o;74994:114::-;75054:7;75080:11;:20;75092:7;75080:20;;;;;;;;;;;;;;;;;;;;;75073:27;;74994:114;;;:::o;55559:164::-;55656:4;55680:18;:25;55699:5;55680:25;;;;;;;;;;;;;;;:35;55706:8;55680:35;;;;;;;;;;;;;;;;;;;;;;;;;55673:42;;55559:164;;;;:::o;69178:122::-;69230:4;69259:33;69282:4;69288:3;69259:22;:33::i;:::-;69252:40;;69178:122;;;:::o;68064:244::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68173:1:::1;68153:22;;:8;:22;;;;68145:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68263:8;68234:38;;68255:6;;;;;;;;;;;68234:38;;;;;;;;;;;;68292:8;68283:6;;:17;;;;;;;;;;;;;;;;;;68064:244:::0;:::o;69050:120::-;69101:4;69130:32;69152:4;69158:3;69130:21;:32::i;:::-;69123:39;;69050:120;;;:::o;69965:33::-;;;:::o;75124:342::-;67341:12;:10;:12::i;:::-;67330:23;;:7;:5;:7::i;:::-;:23;;;67322:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75249:6:::1;75244:215;75265:7;:14;75261:1;:18;75244:215;;;75305:20;75314:7;75322:1;75314:10;;;;;;;;;;;;;;75305:8;:20::i;:::-;75301:72;;;75349:8;;75301:72;75387:43;75394:7;75402:1;75394:10;;;;;;;;;;;;;;75406:8;75415:1;75406:11;;;;;;;;;;;;;;75419:7;75427:1;75419:10;;;;;;;;;;;;;;75387:6;:43::i;:::-;;75244:215;75281:3;;;;;;;75244:215;;;;75124:342:::0;;;:::o;790:106::-;843:15;878:10;871:17;;790:106;:::o;13211:179::-;13269:7;13289:9;13305:1;13301;:5;13289:17;;13330:1;13325;:6;;13317:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13381:1;13374:8;;;13211:179;;;;:::o;14090:220::-;14148:7;14177:1;14172;:6;14168:20;;;14187:1;14180:8;;;;14168:20;14199:9;14215:1;14211;:5;14199:17;;14244:1;14239;14235;:5;;;;;;:10;14227:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14301:1;14294:8;;;14090:220;;;;;:::o;61255:190::-;61356:1;61342:16;;:2;:16;;;;61334:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61406:31;61425:7;61434:2;61406:14;:18;;:31;;;;;:::i;:::-;;61255:190;;:::o;59132:110::-;59208:26;59218:2;59222:7;59208:26;;;;;;;;;;;;:9;:26::i;:::-;59132:110;;:::o;58140:127::-;58205:4;58229:30;58251:7;58229:12;:21;;:30;;;;:::i;:::-;58222:37;;58140:127;;;:::o;65180:201::-;65282:2;65255:15;:24;65271:7;65255:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65338:7;65334:2;65300:46;;65309:23;65324:7;65309:14;:23::i;:::-;65300:46;;;;;;;;;;;;65180:201;;:::o;43524:123::-;43593:7;43620:19;43628:3;:10;;43620:7;:19::i;:::-;43613:26;;43524:123;;;:::o;58434:355::-;58527:4;58552:16;58560:7;58552;:16::i;:::-;58544:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58628:13;58644:23;58659:7;58644:14;:23::i;:::-;58628:39;;58697:5;58686:16;;:7;:16;;;:51;;;;58730:7;58706:31;;:20;58718:7;58706:11;:20::i;:::-;:31;;;58686:51;:94;;;;58741:39;58765:5;58772:7;58741:23;:39::i;:::-;58686:94;58678:103;;;58434:355;;;;:::o;62563:608::-;62688:4;62661:31;;:23;62676:7;62661:14;:23::i;:::-;:31;;;62653:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62798:1;62784:16;;:2;:16;;;;62776:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62854:39;62875:4;62881:2;62885:7;62854:20;:39::i;:::-;62958:29;62975:1;62979:7;62958:8;:29::i;:::-;63000:35;63027:7;63000:13;:19;63014:4;63000:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;63046:30;63068:7;63046:13;:17;63060:2;63046:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;63089:29;63106:7;63115:2;63089:12;:16;;:29;;;;;:::i;:::-;;63155:7;63151:2;63136:27;;63145:4;63136:27;;;;;;;;;;;;62563:608;;;:::o;35340:137::-;35411:7;35446:22;35450:3;:10;;35462:5;35446:3;:22::i;:::-;35438:31;;35431:38;;35340:137;;;;:::o;77060:127::-;77132:4;77161;:9;;:14;77171:3;77161:14;;;;;;;;;;;;;;;:18;;;77154:25;;77060:127;;;;:::o;43995:236::-;44075:7;44084;44105:11;44118:13;44135:22;44139:3;:10;;44151:5;44135:3;:22::i;:::-;44104:53;;;;44184:3;44176:12;;44214:5;44206:14;;44168:55;;;;;;43995:236;;;;;:::o;78114:152::-;78187:4;78240;:9;;:14;78250:3;78240:14;;;;;;;;;;;;;;;:18;;;78216:4;:9;;:14;78226:3;78216:14;;;;;;;;;;;;;;;:20;;;:42;;78209:49;;78114:152;;;;:::o;63772:100::-;63856:8;63845;:19;;;;;;;;;;;;:::i;:::-;;63772:100;:::o;78474:133::-;78548:4;78577;:9;;:14;78587:3;78577:14;;;;;;;;;;;;;;;:22;;;;;;;;;;;;78570:29;;78474:133;;;;:::o;45281:213::-;45388:7;45439:44;45444:3;:10;;45464:3;45456:12;;45470;45439:4;:44::i;:::-;45431:53;;45408:78;;45281:213;;;;;:::o;34872:114::-;34932:7;34959:19;34967:3;:10;;34959:7;:19::i;:::-;34952:26;;34872:114;;;:::o;69436:135::-;69497:4;69526:37;69544:4;69550:3;69555:7;69526:17;:37::i;:::-;69519:44;;69436:135;;;;:::o;57555:272::-;57669:28;57679:4;57685:2;57689:7;57669:9;:28::i;:::-;57716:48;57739:4;57745:2;57749:7;57758:5;57716:22;:48::i;:::-;57708:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57555:272;;;;:::o;45652:746::-;45708:13;45938:1;45929:5;:10;45925:53;;;45956:10;;;;;;;;;;;;;;;;;;;;;45925:53;45988:12;46003:5;45988:20;;46019:14;46044:78;46059:1;46051:4;:9;46044:78;;46077:8;;;;;;;46108:2;46100:10;;;;;;;;;46044:78;;;46132:19;46164:6;46154:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46132:39;;46182:13;46207:1;46198:6;:10;46182:26;;46226:5;46219:12;;46242:117;46257:1;46249:4;:9;46242:117;;46318:2;46311:4;:9;;;;;;46306:2;:14;46293:29;;46275:6;46282:7;;;;;;;46275:15;;;;;;;;;;;:47;;;;;;;;;;;46345:2;46337:10;;;;;;;;;46242:117;;;46383:6;46369:21;;;;;;45652:746;;;;:::o;78280:180::-;78372:4;78434;:9;;:14;78444:3;78434:14;;;;;;;;;;;;;;;:18;;;78424:6;78401:4;:9;;:14;78411:3;78401:14;;;;;;;;;;;;;;;:20;;;:29;:51;;78394:58;;78280:180;;;;;:::o;76915:131::-;76989:4;77018;:9;;:14;77028:3;77018:14;;;;;;;;;;;;;;;:20;;;77011:27;;76915:131;;;;:::o;76773:128::-;76846:4;76875;:9;;:14;76885:3;76875:14;;;;;;;;;;;;;;;:18;;;76868:25;;76773:128;;;;:::o;68611:145::-;68678:4;68707:41;68728:4;68734:3;68739;68744;68707:20;:41::i;:::-;68700:48;;68611:145;;;;;:::o;42708:185::-;42797:4;42821:64;42826:3;:10;;42846:3;42838:12;;42876:5;42860:23;;42852:32;;42821:4;:64::i;:::-;42814:71;;42708:185;;;;;:::o;59469:250::-;59565:18;59571:2;59575:7;59565:5;:18::i;:::-;59602:54;59633:1;59637:2;59641:7;59650:5;59602:22;:54::i;:::-;59594:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59469:250;;;:::o;43285:151::-;43369:4;43393:35;43403:3;:10;;43423:3;43415:12;;43393:9;:35::i;:::-;43386:42;;43285:151;;;;:::o;40039:110::-;40095:7;40122:3;:12;;:19;;;;40115:26;;40039:110;;;:::o;65994:92::-;;;;:::o;34417:137::-;34487:4;34511:35;34519:3;:10;;34539:5;34531:14;;34511:7;:35::i;:::-;34504:42;;34417:137;;;;:::o;34110:131::-;34177:4;34201:32;34206:3;:10;;34226:5;34218:14;;34201:4;:32::i;:::-;34194:39;;34110:131;;;;:::o;30348:204::-;30415:7;30464:5;30443:3;:11;;:18;;;;:26;30435:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30526:3;:11;;30538:5;30526:18;;;;;;;;;;;;;;;;30519:25;;30348:204;;;;:::o;40514:279::-;40581:7;40590;40640:5;40618:3;:12;;:19;;;;:27;40610:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40697:22;40722:3;:12;;40735:5;40722:19;;;;;;;;;;;;;;;;;;40697:44;;40760:5;:10;;;40772:5;:12;;;40752:33;;;;;40514:279;;;;;:::o;42047:337::-;42141:7;42161:16;42180:3;:12;;:17;42193:3;42180:17;;;;;;;;;;;;42161:36;;42228:1;42216:8;:13;;42231:12;42208:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42307:3;:12;;42331:1;42320:8;:12;42307:26;;;;;;;;;;;;;;;;;;:33;;;42300:40;;;42047:337;;;;;:::o;29885:109::-;29941:7;29968:3;:11;;:18;;;;29961:25;;29885:109;;;:::o;77201:228::-;77282:4;77350:1;77327:4;:9;;:14;77337:3;77327:14;;;;;;;;;;;;;;;:20;;;:24;77304:4;:9;;:14;77314:3;77304:14;;;;;;;;;;;;;;;:20;;:47;;;;77362:4;:9;;:14;77372:3;77362:14;;;;;;;;;;;;;;;:23;;77391:7;77362:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77417:4;77410:11;;77201:228;;;;;:::o;64437:624::-;64554:4;64581:15;:2;:13;;;:15::i;:::-;64576:60;;64620:4;64613:11;;;;64576:60;64646:23;64672:276;64729:45;;;64793:12;:10;:12::i;:::-;64824:4;64847:7;64873:5;64688:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64672:276;;;;;;;;;;;;;;;;;:2;:15;;;;:276;;;;;:::i;:::-;64646:302;;64959:13;64986:10;64975:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64959:48;;47050:10;65036:16;;65026:26;;;:6;:26;;;;65018:35;;;;64437:624;;;;;;;:::o;76306:295::-;76393:4;76440;76415;:9;;:14;76425:3;76415:14;;;;;;;;;;;;;;;:22;;;:29;;;;;;;;;;;;;;;;;;76476:3;76455:4;:9;;:14;76465:3;76455:14;;;;;;;;;;;;;;;:18;;:24;;;;76513:1;76490:4;:9;;:14;76500:3;76490:14;;;;;;;;;;;;;;;:20;;:24;;;;76546:3;76525:4;:9;;:14;76535:3;76525:14;;;;;;;;;;;;;;;:18;;:24;;;;76560:4;:9;;;:11;;;;;;;;;;;;;76589:4;76582:11;;76306:295;;;;;;:::o;37308:691::-;37384:4;37500:16;37519:3;:12;;:17;37532:3;37519:17;;;;;;;;;;;;37500:36;;37565:1;37553:8;:13;37549:443;;;37619:3;:12;;37637:38;;;;;;;;37654:3;37637:38;;;;37668:5;37637:38;;;37619:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37834:3;:12;;:19;;;;37814:3;:12;;:17;37827:3;37814:17;;;;;;;;;;;:39;;;;37875:4;37868:11;;;;;37549:443;37948:5;37912:3;:12;;37936:1;37925:8;:12;37912:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;37975:5;37968:12;;;37308:691;;;;;;:::o;60055:406::-;60149:1;60135:16;;:2;:16;;;;60127:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60210:16;60218:7;60210;:16::i;:::-;60209:17;60201:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60272:45;60301:1;60305:2;60309:7;60272:20;:45::i;:::-;60330:30;60352:7;60330:13;:17;60344:2;60330:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60373:29;60390:7;60399:2;60373:12;:16;;:29;;;;;:::i;:::-;;60445:7;60441:2;60420:33;;60437:1;60420:33;;;;;;;;;;;;60055:406;;:::o;39819:125::-;39890:4;39935:1;39914:3;:12;;:17;39927:3;39914:17;;;;;;;;;;;;:22;;39907:29;;39819:125;;;;:::o;28028:1556::-;28094:4;28212:18;28233:3;:12;;:19;28246:5;28233:19;;;;;;;;;;;;28212:40;;28283:1;28269:10;:15;28265:1312;;28630:21;28667:1;28654:10;:14;28630:38;;28683:17;28724:1;28703:3;:11;;:18;;;;:22;28683:42;;28970:17;28990:3;:11;;29002:9;28990:22;;;;;;;;;;;;;;;;28970:42;;29136:9;29107:3;:11;;29119:13;29107:26;;;;;;;;;;;;;;;:38;;;;29255:1;29239:13;:17;29213:3;:12;;:23;29226:9;29213:23;;;;;;;;;;;:43;;;;29378:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29473:3;:12;;:19;29486:5;29473:19;;;;;;;;;;;29466:26;;;29516:4;29509:11;;;;;;;;28265:1312;29560:5;29553:12;;;28028:1556;;;;;:::o;27438:414::-;27501:4;27523:21;27533:3;27538:5;27523:9;:21::i;:::-;27518:327;;27561:3;:11;;27578:5;27561:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27744:3;:11;;:18;;;;27722:3;:12;;:19;27735:5;27722:19;;;;;;;;;;;:40;;;;27784:4;27777:11;;;;27518:327;27828:5;27821:12;;27438:414;;;;;:::o;18559:420::-;18619:4;18827:12;18937:7;18925:20;18917:28;;18970:1;18963:4;:8;18956:15;;;18559:420;;;:::o;21475:195::-;21578:12;21610:52;21632:6;21640:4;21646:1;21649:12;21610:21;:52::i;:::-;21603:59;;21475:195;;;;;:::o;29670:129::-;29743:4;29790:1;29767:3;:12;;:19;29780:5;29767:19;;;;;;;;;;;;:24;;29760:31;;29670:129;;;;:::o;22527:529::-;22654:12;22712:5;22687:21;:30;;22679:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22779:18;22790:6;22779:10;:18::i;:::-;22771:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22905:12;22919:23;22946:6;:11;;22966:5;22973:4;22946:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22904:74;;;;22996:52;23014:7;23023:10;23035:12;22996:17;:52::i;:::-;22989:59;;;;22527:529;;;;;;:::o;25066:743::-;25182:12;25211:7;25207:595;;;25242:10;25235:17;;;;25207:595;25376:1;25356:10;:17;:21;25352:439;;;25619:10;25613:17;25680:15;25667:10;25663:2;25659:19;25652:44;25567:148;25762:12;25755:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25066:743;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://a1d75f27a0fdf2c1778e555d68d0102e6a55542550ac40f015171e871708b9ab
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.