Token BITGoblinsFTM
Overview ERC-721
Total Supply:
2,468 BITGOBBIES
Holders:
1,314 addresses
Contract:
Balance
1 BITGOBBIES
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitGoblinsFTM
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-12 */ // SPDX-License-Identifier: MIT /** *Submitted for verification at FtmScan.com on 2022-06-05 */ /* The bitGoblins.FTM - Tombheads Funeral FTMdead , , , , , , /(.-""-.)\ /(.-""-.)\ /(.-""-.)\ |\ \/ \/ /| |\ \/ \/ /| |\ \/ \/ /| | \ / =. .= \ / | | \ / =. .= \ / | | \ / =. .= \ / | \( \ o\/o / )/ \( \ o\/o / )/ \( \ o\/o / )/ \_, '-/ \-' ,_/ \_, '-/ \-' ,_/ \_, '-/ \-' ,_/ / \__/ \ / \__/ \ / \__/ \ \,___/\___,/ \,___/\___,/ \,___/\___,/ ___\ \|uu|/ /___ ___\ \|uu|/ /___ ___\ \|uu|/ /___ /` \ .--. / `\ /` \ .--. / `\ /` \ .--. / `\ / '----' \ / '----' \ / '----' \ */ // File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { 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] = valueIndex; // Replace lastValue's index to valueIndex } // 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) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // 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); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // 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)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // 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 Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/access/IAccessControlEnumerable.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal 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); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/access/AccessControlEnumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @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 _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @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 || 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 { _setApprovalForAll(_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 _owners[tokenId] != address(0); } /** * @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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(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 from incorrect 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); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: 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)); } return super.tokenURI(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), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/ClampedRandomizer.sol pragma solidity ^0.8.7; contract ClampedRandomizer { uint256 private _scopeIndex = 0; //Clamping cache for random TokenID generation in the anti-sniping algo uint256 private immutable _scopeCap; //Size of initial randomized number pool & max generated value (zero indexed) mapping(uint256 => uint256) _swappedIDs; //TokenID cache for random TokenID generation in the anti-sniping algo constructor(uint256 scopeCap) { _scopeCap = scopeCap; } function _genClampedNonce() internal virtual returns (uint256) { uint256 scope = _scopeCap - _scopeIndex; uint256 swap; uint256 result; uint256 i = randomNumber() % scope; //Setup the value to swap in for the selected number if (_swappedIDs[scope - 1] == 0) { swap = scope - 1; } else { swap = _swappedIDs[scope - 1]; } //Select a random number, swap it out with an unselected one then shorten the selection range by 1 if (_swappedIDs[i] == 0) { result = i; _swappedIDs[i] = swap; } else { result = _swappedIDs[i]; _swappedIDs[i] = swap; } _scopeIndex++; return result; } function randomNumber() internal view returns (uint256) { return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp))); } } pragma solidity ^0.8.0; contract BitGoblinsFTM is AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage, ClampedRandomizer { using Counters for Counters.Counter; using Strings for uint; Counters.Counter public tokenIdTracker; uint public max_supply; uint public publicPrice; string private _baseTokenURI; string private _baseExtension; string private _notRevealedURI; uint256 public maxMintAmount = 1; uint256 public nftPerAddressLimit = 1; bool private _revealed = true; bool public _openMint = false; bool public _onlyWhitelisted = true; address payable private _wallet; address[] public whiteListedAddresses; mapping(address => uint256) public addressMintedBalance; constructor ( string memory name, string memory symbol, string memory baseURI, string memory baseExtension, string memory notRevealedURI, uint publicMintPrice, uint maxSupply, address payable wallet ) ERC721 (name, symbol) ClampedRandomizer(maxSupply) { max_supply = maxSupply; publicPrice = publicMintPrice; _baseTokenURI = baseURI; _baseExtension = baseExtension; _notRevealedURI = notRevealedURI; _wallet = wallet; _setupRole(DEFAULT_ADMIN_ROLE, wallet); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin"); _; } function revealGoblin() external onlyAdmin { _revealed = true; } function setBaseURI(string memory baseURI) external onlyAdmin { _baseTokenURI = baseURI; } function setBaseExtension(string memory baseExtension) external onlyAdmin { _baseExtension = baseExtension; } function setTokenURI(uint tokenId, string memory _tokenURI) external onlyAdmin { _setTokenURI(tokenId, _tokenURI); } function setPublicPrice(uint publicMintPrice) external onlyAdmin { publicPrice = publicMintPrice; } function setNftPerAddressLimit(uint _limit) public onlyAdmin { nftPerAddressLimit = _limit; } function mintSwitch() external onlyAdmin { _openMint = !_openMint; } function whitelistSwitch() public onlyAdmin { _onlyWhitelisted = !_onlyWhitelisted; } function adminMint(uint _mintAmount) public onlyAdmin { uint256 supply = totalSupply(); require(supply + _mintAmount <= max_supply, "max NFT limit exceeded"); for (uint i = 0; i < _mintAmount; i++) { internalMint(msg.sender); } } function bulkAirdrop(IERC721 _token, address[] calldata _to, uint256[] calldata _id) public onlyAdmin { require(_to.length == _id.length, "Recievers and IDs are different length"); for (uint256 i = 0; i < _to.length; i++) { _token.safeTransferFrom(msg.sender, _to[i], _id[i]); } } function publicMint(uint _mintAmount) public payable { require(_openMint == true, "Minting is currently not open"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); uint256 supply = totalSupply(); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); require(supply + _mintAmount <= max_supply, "max NFT limit exceeded"); require(msg.value >= publicPrice * _mintAmount, "Amount sent is incorrect"); for (uint i = 0; i < _mintAmount; i++) { addressMintedBalance[msg.sender]++; internalMint(msg.sender); } _wallet.transfer(msg.value); } function isWhitelisted(address _user) public view returns (bool) { for(uint256 i = 0; i < whiteListedAddresses.length; i++) { if (whiteListedAddresses[i] == _user) { return true; } } return false; } function tokenURI(uint tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { if (!_revealed) { require(_exists(tokenId), "URI query for nonexistent token"); return _notRevealedURI; } return ERC721URIStorage.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function internalMint(address to) internal { uint tokenId = _genClampedNonce(); _safeMint(to, tokenId); _setTokenURI( tokenId, string(abi.encodePacked(tokenId.toString(), _baseExtension)) ); } function internalMintToken(address to,uint256 tokenId) internal { _safeMint(to, tokenId); _setTokenURI( tokenId, string(abi.encodePacked(tokenId.toString(), _baseExtension)) ); } function safeMint(address to) public onlyAdmin { internalMint(to); } function safeMintToken(address to,uint256 tokenId) public onlyAdmin { internalMintToken(to,tokenId); } function _burn(uint tokenId) internal virtual override(ERC721, ERC721URIStorage) { return ERC721URIStorage._burn(tokenId); } function _beforeTokenTransfer(address from, address to, uint tokenId) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"baseExtension","type":"string"},{"internalType":"string","name":"notRevealedURI","type":"string"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address payable","name":"wallet","type":"address"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_openMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"_token","type":"address"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"bulkAirdrop","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealGoblin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMintToken","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":"baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","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":[],"name":"tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","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":"uint256","name":"","type":"uint256"}],"name":"whiteListedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000600d55600160155560016016556001601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff0219169083151502179055506001601760026101000a81548160ff0219169083151502179055503480156200007157600080fd5b50604051620066213803806200662183398181016040528101906200009791906200059b565b8188888160029080519060200190620000b29291906200043f565b508060039080519060200190620000cb9291906200043f565b50505080608081815250505081601081905550826011819055508560129080519060200190620000fd9291906200043f565b508460139080519060200190620001169291906200043f565b5083601490805190602001906200012f9291906200043f565b5080601760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001866000801b82620001a960201b60201c565b6200019b6000801b33620001a960201b60201c565b5050505050505050620008f5565b620001bb8282620001bf60201b60201c565b5050565b620001d682826200020760201b62001edb1760201c565b620002028160016000858152602001908152602001600020620002f860201b62001fbb1790919060201c565b505050565b6200021982826200033060201b60201c565b620002f457600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002996200039a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000328836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620003a260201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6000620003b683836200041c60201b60201c565b6200041157826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000416565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200044d90620007d2565b90600052602060002090601f016020900481019282620004715760008555620004bd565b82601f106200048c57805160ff1916838001178555620004bd565b82800160010185558215620004bd579182015b82811115620004bc5782518255916020019190600101906200049f565b5b509050620004cc9190620004d0565b5090565b5b80821115620004eb576000816000905550600101620004d1565b5090565b600062000506620005008462000728565b620006ff565b905082815260208101848484011115620005255762000524620008a1565b5b620005328482856200079c565b509392505050565b6000815190506200054b81620008c1565b92915050565b600082601f8301126200056957620005686200089c565b5b81516200057b848260208601620004ef565b91505092915050565b6000815190506200059581620008db565b92915050565b600080600080600080600080610100898b031215620005bf57620005be620008ab565b5b600089015167ffffffffffffffff811115620005e057620005df620008a6565b5b620005ee8b828c0162000551565b985050602089015167ffffffffffffffff811115620006125762000611620008a6565b5b620006208b828c0162000551565b975050604089015167ffffffffffffffff811115620006445762000643620008a6565b5b620006528b828c0162000551565b965050606089015167ffffffffffffffff811115620006765762000675620008a6565b5b620006848b828c0162000551565b955050608089015167ffffffffffffffff811115620006a857620006a7620008a6565b5b620006b68b828c0162000551565b94505060a0620006c98b828c0162000584565b93505060c0620006dc8b828c0162000584565b92505060e0620006ef8b828c016200053a565b9150509295985092959890939650565b60006200070b6200071e565b905062000719828262000808565b919050565b6000604051905090565b600067ffffffffffffffff8211156200074657620007456200086d565b5b6200075182620008b0565b9050602081019050919050565b60006200076b8262000772565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620007bc5780820151818401526020810190506200079f565b83811115620007cc576000848401525b50505050565b60006002820490506001821680620007eb57607f821691505b602082108114156200080257620008016200083e565b5b50919050565b6200081382620008b0565b810181811067ffffffffffffffff821117156200083557620008346200086d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620008cc816200075e565b8114620008d857600080fd5b50565b620008e68162000792565b8114620008f257600080fd5b50565b608051615d10620009116000396000612b100152615d106000f3fe6080604052600436106102885760003560e01c8063585beb901161015a578063ba7d2c76116100c1578063d0eb26b01161007a578063d0eb26b014610a2d578063d547741f14610a56578063da3ef23f14610a7f578063e985e9c514610aa8578063eacb912d14610ae5578063faaf25c414610afc57610288565b8063ba7d2c761461091f578063bcd25ee51461094a578063c1f2612314610961578063c62752551461098a578063c87b56dd146109b3578063ca15c873146109f057610288565b806391d148541161011357806391d148541461080f57806395d89b411461084c578063a217fddf14610877578063a22cb465146108a2578063a945bf80146108cb578063b88d4fde146108f657610288565b8063585beb90146106d95780636352211e1461070457806370a08231146107415780638a333b501461077e5780638d7d473c146107a95780639010d07c146107d257610288565b8063248a9ca3116101fe5780633af32abf116101b75780633af32abf146105bb57806340d097c3146105f857806342842e0e146106215780634389de9a1461064a5780634f6ccce71461067357806355f804b3146106b057610288565b8063248a9ca3146104965780632c69953b146104d35780632db11544146105105780632f2ff15d1461052c5780632f745c591461055557806336568abe1461059257610288565b8063095ea7b311610250578063095ea7b314610388578063162094c4146103b157806318160ddd146103da57806318cae26914610405578063239c70ae1461044257806323b872dd1461046d57610288565b806301ffc9a71461028d578063026bf136146102ca57806302bf3d56146102f557806306fdde0314610320578063081812fc1461034b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190614327565b610b13565b6040516102c19190614bc3565b60405180910390f35b3480156102d657600080fd5b506102df610b25565b6040516102ec9190614bc3565b60405180910390f35b34801561030157600080fd5b5061030a610b38565b6040516103179190614f9b565b60405180910390f35b34801561032c57600080fd5b50610335610b44565b6040516103429190614bf9565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061445f565b610bd6565b60405161037f9190614b25565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa919061423a565b610c5b565b005b3480156103bd57600080fd5b506103d860048036038101906103d3919061448c565b610d73565b005b3480156103e657600080fd5b506103ef610dcd565b6040516103fc9190614f9b565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906140b7565b610dda565b6040516104399190614f9b565b60405180910390f35b34801561044e57600080fd5b50610457610df2565b6040516104649190614f9b565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190614124565b610df8565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061427a565b610e58565b6040516104ca9190614bde565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f5919061445f565b610e77565b6040516105079190614b25565b60405180910390f35b61052a6004803603810190610525919061445f565b610eb6565b005b34801561053857600080fd5b50610553600480360381019061054e91906142a7565b61117c565b005b34801561056157600080fd5b5061057c6004803603810190610577919061423a565b61119d565b6040516105899190614f9b565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b491906142a7565b611242565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906140b7565b6112c5565b6040516105ef9190614bc3565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906140b7565b611374565b005b34801561062d57600080fd5b5061064860048036038101906106439190614124565b6113cc565b005b34801561065657600080fd5b50610671600480360381019061066c919061423a565b6113ec565b005b34801561067f57600080fd5b5061069a6004803603810190610695919061445f565b611446565b6040516106a79190614f9b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190614416565b6114b7565b005b3480156106e557600080fd5b506106ee61151d565b6040516106fb9190614bc3565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061445f565b611530565b6040516107389190614b25565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906140b7565b6115e2565b6040516107759190614f9b565b60405180910390f35b34801561078a57600080fd5b5061079361169a565b6040516107a09190614f9b565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190614381565b6116a0565b005b3480156107de57600080fd5b506107f960048036038101906107f491906142e7565b61180c565b6040516108069190614b25565b60405180910390f35b34801561081b57600080fd5b50610836600480360381019061083191906142a7565b61183b565b6040516108439190614bc3565b60405180910390f35b34801561085857600080fd5b506108616118a5565b60405161086e9190614bf9565b60405180910390f35b34801561088357600080fd5b5061088c611937565b6040516108999190614bde565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c491906141fa565b61193e565b005b3480156108d757600080fd5b506108e0611954565b6040516108ed9190614f9b565b60405180910390f35b34801561090257600080fd5b5061091d60048036038101906109189190614177565b61195a565b005b34801561092b57600080fd5b506109346119bc565b6040516109419190614f9b565b60405180910390f35b34801561095657600080fd5b5061095f6119c2565b005b34801561096d57600080fd5b506109886004803603810190610983919061445f565b611a3a565b005b34801561099657600080fd5b506109b160048036038101906109ac919061445f565b611b0e565b005b3480156109bf57600080fd5b506109da60048036038101906109d5919061445f565b611b64565b6040516109e79190614bf9565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a12919061427a565b611c65565b604051610a249190614f9b565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f919061445f565b611c89565b005b348015610a6257600080fd5b50610a7d6004803603810190610a7891906142a7565b611cdf565b005b348015610a8b57600080fd5b50610aa66004803603810190610aa19190614416565b611d00565b005b348015610ab457600080fd5b50610acf6004803603810190610aca91906140e4565b611d66565b604051610adc9190614bc3565b60405180910390f35b348015610af157600080fd5b50610afa611dfa565b005b348015610b0857600080fd5b50610b11611e72565b005b6000610b1e82611feb565b9050919050565b601760029054906101000a900460ff1681565b600f8060000154905081565b606060028054610b53906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7f906152a6565b8015610bcc5780601f10610ba157610100808354040283529160200191610bcc565b820191906000526020600020905b815481529060010190602001808311610baf57829003601f168201915b5050505050905090565b6000610be182612065565b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790614e7b565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6682611530565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90614edb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf66120d1565b73ffffffffffffffffffffffffffffffffffffffff161480610d255750610d2481610d1f6120d1565b611d66565b5b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90614d7b565b60405180910390fd5b610d6e83836120d9565b505050565b610d806000801b3361183b565b610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690614efb565b60405180910390fd5b610dc98282612192565b5050565b6000600a80549050905090565b60196020528060005260406000206000915090505481565b60155481565b610e09610e036120d1565b82612206565b610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90614f1b565b60405180910390fd5b610e538383836122e4565b505050565b6000806000838152602001908152602001600020600101549050919050565b60188181548110610e8757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515601760019054906101000a900460ff16151514610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390614c3b565b60405180910390fd5b601554811115610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890614e1b565b60405180910390fd5b6000610f5b610dcd565b90506000601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506016548382610fb09190615095565b1115610ff1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe890614cfb565b60405180910390fd5b60105483836110009190615095565b1115611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614dfb565b60405180910390fd5b8260115461104f919061511c565b341015611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890614ebb565b60405180910390fd5b60005b8381101561110d57601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906110ec90615309565b91905055506110fa3361254b565b808061110590615309565b915050611094565b50601760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611176573d6000803e3d6000fd5b50505050565b61118582610e58565b61118e81612599565b61119883836125ad565b505050565b60006111a8836115e2565b82106111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614c7b565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61124a6120d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614f7b565b60405180910390fd5b6112c182826125e1565b5050565b600080600090505b601880549050811015611369578273ffffffffffffffffffffffffffffffffffffffff166018828154811061130557611304615449565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561135657600191505061136f565b808061136190615309565b9150506112cd565b50600090505b919050565b6113816000801b3361183b565b6113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790614efb565b60405180910390fd5b6113c98161254b565b50565b6113e78383836040518060200160405280600081525061195a565b505050565b6113f96000801b3361183b565b611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614efb565b60405180910390fd5b6114428282612615565b5050565b6000611450610dcd565b8210611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890614f3b565b60405180910390fd5b600a82815481106114a5576114a4615449565b5b90600052602060002001549050919050565b6114c46000801b3361183b565b611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614efb565b60405180910390fd5b8060129080519060200190611519929190613df5565b5050565b601760019054906101000a900460ff1681565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090614dbb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90614d9b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60105481565b6116ad6000801b3361183b565b6116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390614efb565b60405180910390fd5b818190508484905014611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90614f5b565b60405180910390fd5b60005b84849050811015611804578573ffffffffffffffffffffffffffffffffffffffff166342842e0e3387878581811061177257611771615449565b5b905060200201602081019061178791906140b7565b86868681811061179a57611799615449565b5b905060200201356040518463ffffffff1660e01b81526004016117bf93929190614b40565b600060405180830381600087803b1580156117d957600080fd5b505af11580156117ed573d6000803e3d6000fd5b5050505080806117fc90615309565b915050611737565b505050505050565b6000611833826001600086815260200190815260200160002061265790919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600380546118b4906152a6565b80601f01602080910402602001604051908101604052809291908181526020018280546118e0906152a6565b801561192d5780601f106119025761010080835404028352916020019161192d565b820191906000526020600020905b81548152906001019060200180831161191057829003601f168201915b5050505050905090565b6000801b81565b6119506119496120d1565b8383612671565b5050565b60115481565b61196b6119656120d1565b83612206565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190614f1b565b60405180910390fd5b6119b6848484846127de565b50505050565b60165481565b6119cf6000801b3361183b565b611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590614efb565b60405180910390fd5b601760029054906101000a900460ff1615601760026101000a81548160ff021916908315150217905550565b611a476000801b3361183b565b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90614efb565b60405180910390fd5b6000611a90610dcd565b90506010548282611aa19190615095565b1115611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614dfb565b60405180910390fd5b60005b82811015611b0957611af63361254b565b8080611b0190615309565b915050611ae5565b505050565b611b1b6000801b3361183b565b611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614efb565b60405180910390fd5b8060118190555050565b6060601760009054906101000a900460ff16611c5457611b8382612065565b611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990614c5b565b60405180910390fd5b60148054611bcf906152a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfb906152a6565b8015611c485780601f10611c1d57610100808354040283529160200191611c48565b820191906000526020600020905b815481529060010190602001808311611c2b57829003601f168201915b50505050509050611c60565b611c5d8261283a565b90505b919050565b6000611c826001600084815260200190815260200160002061298c565b9050919050565b611c966000801b3361183b565b611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc90614efb565b60405180910390fd5b8060168190555050565b611ce882610e58565b611cf181612599565b611cfb83836125e1565b505050565b611d0d6000801b3361183b565b611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390614efb565b60405180910390fd5b8060139080519060200190611d62929190613df5565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e076000801b3361183b565b611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614efb565b60405180910390fd5b601760019054906101000a900460ff1615601760016101000a81548160ff021916908315150217905550565b611e7f6000801b3361183b565b611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614efb565b60405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b611ee5828261183b565b611fb757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f5c6120d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611fe3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129a1565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061205e575061205d82612a11565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661214c83611530565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61219b82612065565b6121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190614ddb565b60405180910390fd5b80600c60008481526020019081526020016000209080519060200190612201929190613df5565b505050565b600061221182612065565b612250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224790614d5b565b60405180910390fd5b600061225b83611530565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229d575061229c8185611d66565b5b806122db57508373ffffffffffffffffffffffffffffffffffffffff166122c384610bd6565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661230482611530565b73ffffffffffffffffffffffffffffffffffffffff161461235a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235190614cbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c190614d1b565b60405180910390fd5b6123d5838383612af3565b6123e06000826120d9565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124309190615176565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124879190615095565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612546838383612b03565b505050565b6000612555612b08565b90506125618282612c41565b6125958161256e83612c5f565b6013604051602001612581929190614a9b565b604051602081830303815290604052612192565b5050565b6125aa816125a56120d1565b612dc0565b50565b6125b78282611edb565b6125dc8160016000858152602001908152602001600020611fbb90919063ffffffff16565b505050565b6125eb8282612e5d565b6126108160016000858152602001908152602001600020612f3e90919063ffffffff16565b505050565b61261f8282612c41565b6126538161262c83612c5f565b601360405160200161263f929190614a9b565b604051602081830303815290604052612192565b5050565b60006126668360000183612f6e565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790614d3b565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127d19190614bc3565b60405180910390a3505050565b6127e98484846122e4565b6127f584848484612f99565b612834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282b90614c9b565b60405180910390fd5b50505050565b606061284582612065565b612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b90614e5b565b60405180910390fd5b6000600c600084815260200190815260200160002080546128a4906152a6565b80601f01602080910402602001604051908101604052809291908181526020018280546128d0906152a6565b801561291d5780601f106128f25761010080835404028352916020019161291d565b820191906000526020600020905b81548152906001019060200180831161290057829003601f168201915b50505050509050600061292e613130565b9050600081511415612944578192505050612987565b600082511115612979578082604051602001612961929190614a77565b60405160208183030381529060405292505050612987565b612982846131c2565b925050505b919050565b600061299a82600001613269565b9050919050565b60006129ad838361327a565b612a06578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a0b565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612adc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612aec5750612aeb8261329d565b5b9050919050565b612afe838383613317565b505050565b505050565b600080600d547f0000000000000000000000000000000000000000000000000000000000000000612b399190615176565b9050600080600083612b4961342b565b612b53919061535c565b90506000600e6000600187612b689190615176565b8152602001908152602001600020541415612b9157600184612b8a9190615176565b9250612bb4565b600e6000600186612ba29190615176565b81526020019081526020016000205492505b6000600e6000838152602001908152602001600020541415612bf05780915082600e600083815260200190815260200160002081905550612c1f565b600e600082815260200190815260200160002054915082600e6000838152602001908152602001600020819055505b600d6000815480929190612c3290615309565b91905055508194505050505090565b612c5b82826040518060200160405280600081525061345e565b5050565b60606000821415612ca7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dbb565b600082905060005b60008214612cd9578080612cc290615309565b915050600a82612cd291906150eb565b9150612caf565b60008167ffffffffffffffff811115612cf557612cf4615478565b5b6040519080825280601f01601f191660200182016040528015612d275781602001600182028036833780820191505090505b5090505b60008514612db457600182612d409190615176565b9150600a85612d4f919061535c565b6030612d5b9190615095565b60f81b818381518110612d7157612d70615449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dad91906150eb565b9450612d2b565b8093505050505b919050565b612dca828261183b565b612e5957612def8173ffffffffffffffffffffffffffffffffffffffff1660146134b9565b612dfd8360001c60206134b9565b604051602001612e0e929190614abf565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e509190614bf9565b60405180910390fd5b5050565b612e67828261183b565b15612f3a57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612edf6120d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612f66836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6136f5565b905092915050565b6000826000018281548110612f8657612f85615449565b5b9060005260206000200154905092915050565b6000612fba8473ffffffffffffffffffffffffffffffffffffffff16613809565b15613123578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fe36120d1565b8786866040518563ffffffff1660e01b81526004016130059493929190614b77565b602060405180830381600087803b15801561301f57600080fd5b505af192505050801561305057506040513d601f19601f8201168201806040525081019061304d9190614354565b60015b6130d3573d8060008114613080576040519150601f19603f3d011682016040523d82523d6000602084013e613085565b606091505b506000815114156130cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c290614c9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613128565b600190505b949350505050565b60606012805461313f906152a6565b80601f016020809104026020016040519081016040528092919081815260200182805461316b906152a6565b80156131b85780601f1061318d576101008083540402835291602001916131b8565b820191906000526020600020905b81548152906001019060200180831161319b57829003601f168201915b5050505050905090565b60606131cd82612065565b61320c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320390614e9b565b60405180910390fd5b6000613216613130565b905060008151116132365760405180602001604052806000815250613261565b8061324084612c5f565b604051602001613251929190614a77565b6040516020818303038152906040525b915050919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613310575061330f8261382c565b5b9050919050565b6133228383836138a6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561336557613360816138ab565b6133a4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133a3576133a283826138f4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e7576133e281613a61565b613426565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613425576134248282613b32565b5b5b505050565b60004442604051602001613440929190614af9565b6040516020818303038152906040528051906020012060001c905090565b6134688383613bb1565b6134756000848484612f99565b6134b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90614c9b565b60405180910390fd5b505050565b6060600060028360026134cc919061511c565b6134d69190615095565b67ffffffffffffffff8111156134ef576134ee615478565b5b6040519080825280601f01601f1916602001820160405280156135215781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061355957613558615449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106135bd576135bc615449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135fd919061511c565b6136079190615095565b90505b60018111156136a7577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061364957613648615449565b5b1a60f81b8282815181106136605761365f615449565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806136a09061527c565b905061360a565b50600084146136eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e290614c1b565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020549050600081146137fd5760006001826137279190615176565b905060006001866000018054905061373f9190615176565b90508181146137ae5760008660000182815481106137605761375f615449565b5b906000526020600020015490508087600001848154811061378457613783615449565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806137c2576137c161541a565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613803565b60009150505b92915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061389f575061389e82613d8b565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613901846115e2565b61390b9190615176565b90506000600960008481526020019081526020016000205490508181146139f0576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050613a759190615176565b90506000600b60008481526020019081526020016000205490506000600a8381548110613aa557613aa4615449565b5b9060005260206000200154905080600a8381548110613ac757613ac6615449565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613b1657613b1561541a565b5b6001900381819060005260206000200160009055905550505050565b6000613b3d836115e2565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1890614e3b565b60405180910390fd5b613c2a81612065565b15613c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6190614cdb565b60405180910390fd5b613c7660008383612af3565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cc69190615095565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d8760008383612b03565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054613e01906152a6565b90600052602060002090601f016020900481019282613e235760008555613e6a565b82601f10613e3c57805160ff1916838001178555613e6a565b82800160010185558215613e6a579182015b82811115613e69578251825591602001919060010190613e4e565b5b509050613e779190613e7b565b5090565b5b80821115613e94576000816000905550600101613e7c565b5090565b6000613eab613ea684614fdb565b614fb6565b905082815260208101848484011115613ec757613ec66154b6565b5b613ed284828561523a565b509392505050565b6000613eed613ee88461500c565b614fb6565b905082815260208101848484011115613f0957613f086154b6565b5b613f1484828561523a565b509392505050565b600081359050613f2b81615c50565b92915050565b60008083601f840112613f4757613f466154ac565b5b8235905067ffffffffffffffff811115613f6457613f636154a7565b5b602083019150836020820283011115613f8057613f7f6154b1565b5b9250929050565b60008083601f840112613f9d57613f9c6154ac565b5b8235905067ffffffffffffffff811115613fba57613fb96154a7565b5b602083019150836020820283011115613fd657613fd56154b1565b5b9250929050565b600081359050613fec81615c67565b92915050565b60008135905061400181615c7e565b92915050565b60008135905061401681615c95565b92915050565b60008151905061402b81615c95565b92915050565b600082601f830112614046576140456154ac565b5b8135614056848260208601613e98565b91505092915050565b60008135905061406e81615cac565b92915050565b600082601f830112614089576140886154ac565b5b8135614099848260208601613eda565b91505092915050565b6000813590506140b181615cc3565b92915050565b6000602082840312156140cd576140cc6154c0565b5b60006140db84828501613f1c565b91505092915050565b600080604083850312156140fb576140fa6154c0565b5b600061410985828601613f1c565b925050602061411a85828601613f1c565b9150509250929050565b60008060006060848603121561413d5761413c6154c0565b5b600061414b86828701613f1c565b935050602061415c86828701613f1c565b925050604061416d868287016140a2565b9150509250925092565b60008060008060808587031215614191576141906154c0565b5b600061419f87828801613f1c565b94505060206141b087828801613f1c565b93505060406141c1878288016140a2565b925050606085013567ffffffffffffffff8111156141e2576141e16154bb565b5b6141ee87828801614031565b91505092959194509250565b60008060408385031215614211576142106154c0565b5b600061421f85828601613f1c565b925050602061423085828601613fdd565b9150509250929050565b60008060408385031215614251576142506154c0565b5b600061425f85828601613f1c565b9250506020614270858286016140a2565b9150509250929050565b6000602082840312156142905761428f6154c0565b5b600061429e84828501613ff2565b91505092915050565b600080604083850312156142be576142bd6154c0565b5b60006142cc85828601613ff2565b92505060206142dd85828601613f1c565b9150509250929050565b600080604083850312156142fe576142fd6154c0565b5b600061430c85828601613ff2565b925050602061431d858286016140a2565b9150509250929050565b60006020828403121561433d5761433c6154c0565b5b600061434b84828501614007565b91505092915050565b60006020828403121561436a576143696154c0565b5b60006143788482850161401c565b91505092915050565b60008060008060006060868803121561439d5761439c6154c0565b5b60006143ab8882890161405f565b955050602086013567ffffffffffffffff8111156143cc576143cb6154bb565b5b6143d888828901613f31565b9450945050604086013567ffffffffffffffff8111156143fb576143fa6154bb565b5b61440788828901613f87565b92509250509295509295909350565b60006020828403121561442c5761442b6154c0565b5b600082013567ffffffffffffffff81111561444a576144496154bb565b5b61445684828501614074565b91505092915050565b600060208284031215614475576144746154c0565b5b6000614483848285016140a2565b91505092915050565b600080604083850312156144a3576144a26154c0565b5b60006144b1858286016140a2565b925050602083013567ffffffffffffffff8111156144d2576144d16154bb565b5b6144de85828601614074565b9150509250929050565b6144f1816151aa565b82525050565b614500816151bc565b82525050565b61450f816151c8565b82525050565b600061452082615052565b61452a8185615068565b935061453a818560208601615249565b614543816154c5565b840191505092915050565b60006145598261505d565b6145638185615079565b9350614573818560208601615249565b61457c816154c5565b840191505092915050565b60006145928261505d565b61459c818561508a565b93506145ac818560208601615249565b80840191505092915050565b600081546145c5816152a6565b6145cf818661508a565b945060018216600081146145ea57600181146145fb5761462e565b60ff1983168652818601935061462e565b6146048561503d565b60005b8381101561462657815481890152600182019150602081019050614607565b838801955050505b50505092915050565b6000614644602083615079565b915061464f826154d6565b602082019050919050565b6000614667601d83615079565b9150614672826154ff565b602082019050919050565b600061468a601f83615079565b915061469582615528565b602082019050919050565b60006146ad602b83615079565b91506146b882615551565b604082019050919050565b60006146d0603283615079565b91506146db826155a0565b604082019050919050565b60006146f3602583615079565b91506146fe826155ef565b604082019050919050565b6000614716601c83615079565b91506147218261563e565b602082019050919050565b6000614739601c83615079565b915061474482615667565b602082019050919050565b600061475c602483615079565b915061476782615690565b604082019050919050565b600061477f601983615079565b915061478a826156df565b602082019050919050565b60006147a2602c83615079565b91506147ad82615708565b604082019050919050565b60006147c5603883615079565b91506147d082615757565b604082019050919050565b60006147e8602a83615079565b91506147f3826157a6565b604082019050919050565b600061480b602983615079565b9150614816826157f5565b604082019050919050565b600061482e602e83615079565b915061483982615844565b604082019050919050565b6000614851601683615079565b915061485c82615893565b602082019050919050565b6000614874602483615079565b915061487f826158bc565b604082019050919050565b6000614897602083615079565b91506148a28261590b565b602082019050919050565b60006148ba603183615079565b91506148c582615934565b604082019050919050565b60006148dd602c83615079565b91506148e882615983565b604082019050919050565b6000614900602f83615079565b915061490b826159d2565b604082019050919050565b6000614923601883615079565b915061492e82615a21565b602082019050919050565b6000614946602183615079565b915061495182615a4a565b604082019050919050565b6000614969601383615079565b915061497482615a99565b602082019050919050565b600061498c603183615079565b915061499782615ac2565b604082019050919050565b60006149af602c83615079565b91506149ba82615b11565b604082019050919050565b60006149d260178361508a565b91506149dd82615b60565b601782019050919050565b60006149f5602683615079565b9150614a0082615b89565b604082019050919050565b6000614a1860118361508a565b9150614a2382615bd8565b601182019050919050565b6000614a3b602f83615079565b9150614a4682615c01565b604082019050919050565b614a5a81615230565b82525050565b614a71614a6c82615230565b615352565b82525050565b6000614a838285614587565b9150614a8f8284614587565b91508190509392505050565b6000614aa78285614587565b9150614ab382846145b8565b91508190509392505050565b6000614aca826149c5565b9150614ad68285614587565b9150614ae182614a0b565b9150614aed8284614587565b91508190509392505050565b6000614b058285614a60565b602082019150614b158284614a60565b6020820191508190509392505050565b6000602082019050614b3a60008301846144e8565b92915050565b6000606082019050614b5560008301866144e8565b614b6260208301856144e8565b614b6f6040830184614a51565b949350505050565b6000608082019050614b8c60008301876144e8565b614b9960208301866144e8565b614ba66040830185614a51565b8181036060830152614bb88184614515565b905095945050505050565b6000602082019050614bd860008301846144f7565b92915050565b6000602082019050614bf36000830184614506565b92915050565b60006020820190508181036000830152614c13818461454e565b905092915050565b60006020820190508181036000830152614c3481614637565b9050919050565b60006020820190508181036000830152614c548161465a565b9050919050565b60006020820190508181036000830152614c748161467d565b9050919050565b60006020820190508181036000830152614c94816146a0565b9050919050565b60006020820190508181036000830152614cb4816146c3565b9050919050565b60006020820190508181036000830152614cd4816146e6565b9050919050565b60006020820190508181036000830152614cf481614709565b9050919050565b60006020820190508181036000830152614d148161472c565b9050919050565b60006020820190508181036000830152614d348161474f565b9050919050565b60006020820190508181036000830152614d5481614772565b9050919050565b60006020820190508181036000830152614d7481614795565b9050919050565b60006020820190508181036000830152614d94816147b8565b9050919050565b60006020820190508181036000830152614db4816147db565b9050919050565b60006020820190508181036000830152614dd4816147fe565b9050919050565b60006020820190508181036000830152614df481614821565b9050919050565b60006020820190508181036000830152614e1481614844565b9050919050565b60006020820190508181036000830152614e3481614867565b9050919050565b60006020820190508181036000830152614e548161488a565b9050919050565b60006020820190508181036000830152614e74816148ad565b9050919050565b60006020820190508181036000830152614e94816148d0565b9050919050565b60006020820190508181036000830152614eb4816148f3565b9050919050565b60006020820190508181036000830152614ed481614916565b9050919050565b60006020820190508181036000830152614ef481614939565b9050919050565b60006020820190508181036000830152614f148161495c565b9050919050565b60006020820190508181036000830152614f348161497f565b9050919050565b60006020820190508181036000830152614f54816149a2565b9050919050565b60006020820190508181036000830152614f74816149e8565b9050919050565b60006020820190508181036000830152614f9481614a2e565b9050919050565b6000602082019050614fb06000830184614a51565b92915050565b6000614fc0614fd1565b9050614fcc82826152d8565b919050565b6000604051905090565b600067ffffffffffffffff821115614ff657614ff5615478565b5b614fff826154c5565b9050602081019050919050565b600067ffffffffffffffff82111561502757615026615478565b5b615030826154c5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006150a082615230565b91506150ab83615230565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150e0576150df61538d565b5b828201905092915050565b60006150f682615230565b915061510183615230565b925082615111576151106153bc565b5b828204905092915050565b600061512782615230565b915061513283615230565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561516b5761516a61538d565b5b828202905092915050565b600061518182615230565b915061518c83615230565b92508282101561519f5761519e61538d565b5b828203905092915050565b60006151b582615210565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000615209826151aa565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561526757808201518184015260208101905061524c565b83811115615276576000848401525b50505050565b600061528782615230565b9150600082141561529b5761529a61538d565b5b600182039050919050565b600060028204905060018216806152be57607f821691505b602082108114156152d2576152d16153eb565b5b50919050565b6152e1826154c5565b810181811067ffffffffffffffff82111715615300576152ff615478565b5b80604052505050565b600061531482615230565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153475761534661538d565b5b600182019050919050565b6000819050919050565b600061536782615230565b915061537283615230565b925082615382576153816153bc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4d696e74696e672069732063757272656e746c79206e6f74206f70656e000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f416d6f756e742073656e7420697320696e636f72726563740000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f52656369657665727320616e64204944732061726520646966666572656e742060008201527f6c656e6774680000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615c59816151aa565b8114615c6457600080fd5b50565b615c70816151bc565b8114615c7b57600080fd5b50565b615c87816151c8565b8114615c9257600080fd5b50565b615c9e816151d2565b8114615ca957600080fd5b50565b615cb5816151fe565b8114615cc057600080fd5b50565b615ccc81615230565b8114615cd757600080fd5b5056fea26469706673582212206bfd34eedae0ba9160d7f347346c50127adeec87564fad1b39d5a2a1b2975a4564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009a5000000000000000000000000d4cf8881802b6d19c02dd72ec2a2647882038e11000000000000000000000000000000000000000000000000000000000000000d424954476f626c696e7346544d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424954474f424249455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f66746d646561642e6d7970696e6174612e636c6f75642f697066732f516d555343597747744669346d53724257677a64527a546461357743545169724e584a584a56574345576648676d2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009a5000000000000000000000000d4cf8881802b6d19c02dd72ec2a2647882038e11000000000000000000000000000000000000000000000000000000000000000d424954476f626c696e7346544d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424954474f424249455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f66746d646561642e6d7970696e6174612e636c6f75642f697066732f516d555343597747744669346d53724257677a64527a546461357743545169724e584a584a56574345576648676d2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): BITGoblinsFTM
Arg [1] : symbol (string): BITGOBBIES
Arg [2] : baseURI (string): https://ftmdead.mypinata.cloud/ipfs/QmUSCYwGtFi4mSrBWgzdRzTda5wCTQirNXJXJVWCEWfHgm/
Arg [3] : baseExtension (string): .json
Arg [4] : notRevealedURI (string):
Arg [5] : publicMintPrice (uint256): 0
Arg [6] : maxSupply (uint256): 2469
Arg [7] : wallet (address): 0xd4cf8881802b6d19c02dd72ec2a2647882038e11
-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000009a5
Arg [7] : 000000000000000000000000d4cf8881802b6d19c02dd72ec2a2647882038e11
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [9] : 424954476f626c696e7346544d00000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [11] : 424954474f424249455300000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [13] : 68747470733a2f2f66746d646561642e6d7970696e6174612e636c6f75642f69
Arg [14] : 7066732f516d555343597747744669346d53724257677a64527a546461357743
Arg [15] : 545169724e584a584a56574345576648676d2f00000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [17] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
76210:5992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80753:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76764:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76395:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53368:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54928:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54451:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78102:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69190:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76888:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76609:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55678:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38290:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76844:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79299:791;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38683:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68858:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39731:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80098:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81629:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56088:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81719:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69380:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77859:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76728:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53062:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52792:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76440:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78966:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43240:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36750:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53537:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35855:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55221:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76469:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56344:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76648:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78566:99;;;;;;;;;;;;;:::i;:::-;;78673:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78240:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80391:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43567:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78361:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39075:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77971:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55447:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78476:82;;;;;;;;;;;;;:::i;:::-;;77773:78;;;;;;;;;;;;;:::i;:::-;;80753:245;80925:4;80954:36;80978:11;80954:23;:36::i;:::-;80947:43;;80753:245;;;:::o;76764:35::-;;;;;;;;;;;;;:::o;76395:38::-;;;;;;;;;:::o;53368:100::-;53422:13;53455:5;53448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53368:100;:::o;54928:221::-;55004:7;55032:16;55040:7;55032;:16::i;:::-;55024:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55117:15;:24;55133:7;55117:24;;;;;;;;;;;;;;;;;;;;;55110:31;;54928:221;;;:::o;54451:411::-;54532:13;54548:23;54563:7;54548:14;:23::i;:::-;54532:39;;54596:5;54590:11;;:2;:11;;;;54582:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54690:5;54674:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;54699:37;54716:5;54723:12;:10;:12::i;:::-;54699:16;:37::i;:::-;54674:62;54652:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;54833:21;54842:2;54846:7;54833:8;:21::i;:::-;54521:341;54451:411;;:::o;78102:130::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78192:32:::1;78205:7;78214:9;78192:12;:32::i;:::-;78102:130:::0;;:::o;69190:113::-;69251:7;69278:10;:17;;;;69271:24;;69190:113;:::o;76888:55::-;;;;;;;;;;;;;;;;;:::o;76609:32::-;;;;:::o;55678:339::-;55873:41;55892:12;:10;:12::i;:::-;55906:7;55873:18;:41::i;:::-;55865:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55981:28;55991:4;55997:2;56001:7;55981:9;:28::i;:::-;55678:339;;;:::o;38290:131::-;38364:7;38391:6;:12;38398:4;38391:12;;;;;;;;;;;:22;;;38384:29;;38290:131;;;:::o;76844:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79299:791::-;79384:4;79371:17;;:9;;;;;;;;;;;:17;;;79363:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;79456:13;;79441:11;:28;;79433:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79521:14;79538:13;:11;:13::i;:::-;79521:30;;79562:24;79589:20;:32;79610:10;79589:32;;;;;;;;;;;;;;;;79562:59;;79674:18;;79659:11;79640:16;:30;;;;:::i;:::-;:52;;79632:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;79768:10;;79753:11;79744:6;:20;;;;:::i;:::-;:34;;79736:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;79851:11;79837;;:25;;;;:::i;:::-;79824:9;:38;;79816:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;79909:6;79904:139;79925:11;79921:1;:15;79904:139;;;79958:20;:32;79979:10;79958:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;80007:24;80020:10;80007:12;:24::i;:::-;79938:3;;;;;:::i;:::-;;;;79904:139;;;;80055:7;;;;;;;;;;;:16;;:27;80072:9;80055:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79352:738;;79299:791;:::o;38683:147::-;38766:18;38779:4;38766:12;:18::i;:::-;36346:16;36357:4;36346:10;:16::i;:::-;38797:25:::1;38808:4;38814:7;38797:10;:25::i;:::-;38683:147:::0;;;:::o;68858:256::-;68955:7;68991:23;69008:5;68991:16;:23::i;:::-;68983:5;:31;68975:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;69080:12;:19;69093:5;69080:19;;;;;;;;;;;;;;;:26;69100:5;69080:26;;;;;;;;;;;;69073:33;;68858:256;;;;:::o;39731:218::-;39838:12;:10;:12::i;:::-;39827:23;;:7;:23;;;39819:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;39915:26;39927:4;39933:7;39915:11;:26::i;:::-;39731:218;;:::o;80098:285::-;80157:4;80180:9;80192:1;80180:13;;80176:175;80199:20;:27;;;;80195:1;:31;80176:175;;;80281:5;80254:32;;:20;80275:1;80254:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;80250:88;;;80316:4;80309:11;;;;;80250:88;80228:3;;;;;:::i;:::-;;;;80176:175;;;;80370:5;80363:12;;80098:285;;;;:::o;81629:82::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;81687:16:::1;81700:2;81687:12;:16::i;:::-;81629:82:::0;:::o;56088:185::-;56226:39;56243:4;56249:2;56253:7;56226:39;;;;;;;;;;;;:16;:39::i;:::-;56088:185;;;:::o;81719:116::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;81798:29:::1;81816:2;81819:7;81798:17;:29::i;:::-;81719:116:::0;;:::o;69380:233::-;69455:7;69491:30;:28;:30::i;:::-;69483:5;:38;69475:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;69588:10;69599:5;69588:17;;;;;;;;:::i;:::-;;;;;;;;;;69581:24;;69380:233;;;:::o;77859:104::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77948:7:::1;77932:13;:23;;;;;;;;;;;;:::i;:::-;;77859:104:::0;:::o;76728:29::-;;;;;;;;;;;;;:::o;53062:239::-;53134:7;53154:13;53170:7;:16;53178:7;53170:16;;;;;;;;;;;;;;;;;;;;;53154:32;;53222:1;53205:19;;:5;:19;;;;53197:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53288:5;53281:12;;;53062:239;;;:::o;52792:208::-;52864:7;52909:1;52892:19;;:5;:19;;;;52884:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52976:9;:16;52986:5;52976:16;;;;;;;;;;;;;;;;52969:23;;52792:208;;;:::o;76440:22::-;;;;:::o;78966:325::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;79101:3:::1;;:10;;79087:3;;:10;;:24;79079:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;79170:9;79165:119;79189:3;;:10;;79185:1;:14;79165:119;;;79221:6;:23;;;79245:10;79257:3;;79261:1;79257:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;79265:3;;79269:1;79265:6;;;;;;;:::i;:::-;;;;;;;;79221:51;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;79201:3;;;;;:::i;:::-;;;;79165:119;;;;78966:325:::0;;;;;:::o;43240:153::-;43330:7;43357:28;43379:5;43357:12;:18;43370:4;43357:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;43350:35;;43240:153;;;;:::o;36750:147::-;36836:4;36860:6;:12;36867:4;36860:12;;;;;;;;;;;:20;;:29;36881:7;36860:29;;;;;;;;;;;;;;;;;;;;;;;;;36853:36;;36750:147;;;;:::o;53537:104::-;53593:13;53626:7;53619:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53537:104;:::o;35855:49::-;35900:4;35855:49;;;:::o;55221:155::-;55316:52;55335:12;:10;:12::i;:::-;55349:8;55359;55316:18;:52::i;:::-;55221:155;;:::o;76469:23::-;;;;:::o;56344:328::-;56519:41;56538:12;:10;:12::i;:::-;56552:7;56519:18;:41::i;:::-;56511:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56625:39;56639:4;56645:2;56649:7;56658:5;56625:13;:39::i;:::-;56344:328;;;;:::o;76648:37::-;;;;:::o;78566:99::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78641:16:::1;;;;;;;;;;;78640:17;78621:16;;:36;;;;;;;;;;;;;;;;;;78566:99::o:0;78673:285::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78738:14:::1;78755:13;:11;:13::i;:::-;78738:30;;78811:10;;78796:11;78787:6;:20;;;;:::i;:::-;:34;;78779:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;78866:6;78861:90;78882:11;78878:1;:15;78861:90;;;78915:24;78928:10;78915:12;:24::i;:::-;78895:3;;;;;:::i;:::-;;;;78861:90;;;;78727:231;78673:285:::0;:::o;78240:113::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78330:15:::1;78316:11;:29;;;;78240:113:::0;:::o;80391:354::-;80515:13;80551:9;;;;;;;;;;;80546:140;;80585:16;80593:7;80585;:16::i;:::-;80577:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80659:15;80652:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80546:140;80703:34;80729:7;80703:25;:34::i;:::-;80696:41;;80391:354;;;;:::o;43567:142::-;43647:7;43674:27;:12;:18;43687:4;43674:18;;;;;;;;;;;:25;:27::i;:::-;43667:34;;43567:142;;;:::o;78361:107::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78454:6:::1;78433:18;:27;;;;78361:107:::0;:::o;39075:149::-;39159:18;39172:4;39159:12;:18::i;:::-;36346:16;36357:4;36346:10;:16::i;:::-;39190:26:::1;39202:4;39208:7;39190:11;:26::i;:::-;39075:149:::0;;;:::o;77971:123::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78073:13:::1;78056:14;:30;;;;;;;;;;;;:::i;:::-;;77971:123:::0;:::o;55447:164::-;55544:4;55568:18;:25;55587:5;55568:25;;;;;;;;;;;;;;;:35;55594:8;55568:35;;;;;;;;;;;;;;;;;;;;;;;;;55561:42;;55447:164;;;;:::o;78476:82::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;78541:9:::1;;;;;;;;;;;78540:10;78528:9;;:22;;;;;;;;;;;;;;;;;;78476:82::o:0;77773:78::-;77682:39;35900:4;77690:18;;77710:10;77682:7;:39::i;:::-;77674:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;77839:4:::1;77827:9;;:16;;;;;;;;;;;;;;;;;;77773:78::o:0;41232:238::-;41316:22;41324:4;41330:7;41316;:22::i;:::-;41311:152;;41387:4;41355:6;:12;41362:4;41355:12;;;;;;;;;;;:20;;:29;41376:7;41355:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;41438:12;:10;:12::i;:::-;41411:40;;41429:7;41411:40;;41423:4;41411:40;;;;;;;;;;41311:152;41232:238;;:::o;8876:152::-;8946:4;8970:50;8975:3;:10;;9011:5;8995:23;;8987:32;;8970:4;:50::i;:::-;8963:57;;8876:152;;;;:::o;68550:224::-;68652:4;68691:35;68676:50;;;:11;:50;;;;:90;;;;68730:36;68754:11;68730:23;:36::i;:::-;68676:90;68669:97;;68550:224;;;:::o;58182:127::-;58247:4;58299:1;58271:30;;:7;:16;58279:7;58271:16;;;;;;;;;;;;;;;;;;;;;:30;;;;58264:37;;58182:127;;;:::o;22160:98::-;22213:7;22240:10;22233:17;;22160:98;:::o;62328:174::-;62430:2;62403:15;:24;62419:7;62403:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62486:7;62482:2;62448:46;;62457:23;62472:7;62457:14;:23::i;:::-;62448:46;;;;;;;;;;;;62328:174;;:::o;66884:217::-;66984:16;66992:7;66984;:16::i;:::-;66976:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;67084:9;67062:10;:19;67073:7;67062:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;66884:217;;:::o;58476:348::-;58569:4;58594:16;58602:7;58594;:16::i;:::-;58586:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58670:13;58686:23;58701:7;58686:14;:23::i;:::-;58670:39;;58739:5;58728:16;;:7;:16;;;:52;;;;58748:32;58765:5;58772:7;58748:16;:32::i;:::-;58728:52;:87;;;;58808:7;58784:31;;:20;58796:7;58784:11;:20::i;:::-;:31;;;58728:87;58720:96;;;58476:348;;;;:::o;61585:625::-;61744:4;61717:31;;:23;61732:7;61717:14;:23::i;:::-;:31;;;61709:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61823:1;61809:16;;:2;:16;;;;61801:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61879:39;61900:4;61906:2;61910:7;61879:20;:39::i;:::-;61983:29;62000:1;62004:7;61983:8;:29::i;:::-;62044:1;62025:9;:15;62035:4;62025:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;62073:1;62056:9;:13;62066:2;62056:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;62104:2;62085:7;:16;62093:7;62085:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;62143:7;62139:2;62124:27;;62133:4;62124:27;;;;;;;;;;;;62164:38;62184:4;62190:2;62194:7;62164:19;:38::i;:::-;61585:625;;;:::o;81128:254::-;81182:12;81197:18;:16;:18::i;:::-;81182:33;;81226:22;81236:2;81240:7;81226:9;:22::i;:::-;81259:115;81290:7;81323:18;:7;:16;:18::i;:::-;81343:14;81306:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81259:12;:115::i;:::-;81171:211;81128:254;:::o;37201:105::-;37268:30;37279:4;37285:12;:10;:12::i;:::-;37268:10;:30::i;:::-;37201:105;:::o;43802:169::-;43890:31;43907:4;43913:7;43890:16;:31::i;:::-;43932;43955:7;43932:12;:18;43945:4;43932:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;43802:169;;:::o;44065:174::-;44154:32;44172:4;44178:7;44154:17;:32::i;:::-;44197:34;44223:7;44197:12;:18;44210:4;44197:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;44065:174;;:::o;81390:231::-;81465:22;81475:2;81479:7;81465:9;:22::i;:::-;81498:115;81529:7;81562:18;:7;:16;:18::i;:::-;81582:14;81545:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81498:12;:115::i;:::-;81390:231;;:::o;10172:158::-;10246:7;10297:22;10301:3;:10;;10313:5;10297:3;:22::i;:::-;10289:31;;10266:56;;10172:158;;;;:::o;62644:315::-;62799:8;62790:17;;:5;:17;;;;62782:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;62886:8;62848:18;:25;62867:5;62848:25;;;;;;;;;;;;;;;:35;62874:8;62848:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;62932:8;62910:41;;62925:5;62910:41;;;62942:8;62910:41;;;;;;:::i;:::-;;;;;;;;62644:315;;;:::o;57554:::-;57711:28;57721:4;57727:2;57731:7;57711:9;:28::i;:::-;57758:48;57781:4;57787:2;57791:7;57800:5;57758:22;:48::i;:::-;57750:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57554:315;;;;:::o;66049:679::-;66122:13;66156:16;66164:7;66156;:16::i;:::-;66148:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;66239:23;66265:10;:19;66276:7;66265:19;;;;;;;;;;;66239:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66295:18;66316:10;:8;:10::i;:::-;66295:31;;66424:1;66408:4;66402:18;:23;66398:72;;;66449:9;66442:16;;;;;;66398:72;66600:1;66580:9;66574:23;:27;66570:108;;;66649:4;66655:9;66632:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66618:48;;;;;;66570:108;66697:23;66712:7;66697:14;:23::i;:::-;66690:30;;;;66049:679;;;;:::o;9701:117::-;9764:7;9791:19;9799:3;:10;;9791:7;:19::i;:::-;9784:26;;9701:117;;;:::o;2791:414::-;2854:4;2876:21;2886:3;2891:5;2876:9;:21::i;:::-;2871:327;;2914:3;:11;;2931:5;2914:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3097:3;:11;;:18;;;;3075:3;:12;;:19;3088:5;3075:19;;;;;;;;;;;:40;;;;3137:4;3130:11;;;;2871:327;3181:5;3174:12;;2791:414;;;;;:::o;52423:305::-;52525:4;52577:25;52562:40;;;:11;:40;;;;:105;;;;52634:33;52619:48;;;:11;:48;;;;52562:105;:158;;;;52684:36;52708:11;52684:23;:36::i;:::-;52562:158;52542:178;;52423:305;;;:::o;81990:209::-;82146:45;82173:4;82179:2;82183:7;82146:26;:45::i;:::-;81990:209;;;:::o;65406:125::-;;;;:::o;75229:786::-;75283:7;75303:13;75331:11;;75319:9;:23;;;;:::i;:::-;75303:39;;75353:12;75376:14;75403:9;75432:5;75415:14;:12;:14::i;:::-;:22;;;;:::i;:::-;75403:34;;75542:1;75516:11;:22;75536:1;75528:5;:9;;;;:::i;:::-;75516:22;;;;;;;;;;;;:27;75512:138;;;75575:1;75567:5;:9;;;;:::i;:::-;75560:16;;75512:138;;;75616:11;:22;75636:1;75628:5;:9;;;;:::i;:::-;75616:22;;;;;;;;;;;;75609:29;;75512:138;75792:1;75774:11;:14;75786:1;75774:14;;;;;;;;;;;;:19;75770:190;;;75819:1;75810:10;;75852:4;75835:11;:14;75847:1;75835:14;;;;;;;;;;;:21;;;;75770:190;;;75898:11;:14;75910:1;75898:14;;;;;;;;;;;;75889:23;;75944:4;75927:11;:14;75939:1;75927:14;;;;;;;;;;;:21;;;;75770:190;75970:11;;:13;;;;;;;;;:::i;:::-;;;;;;76001:6;75994:13;;;;;;75229:786;:::o;59166:110::-;59242:26;59252:2;59256:7;59242:26;;;;;;;;;;;;:9;:26::i;:::-;59166:110;;:::o;19722:723::-;19778:13;20008:1;19999:5;:10;19995:53;;;20026:10;;;;;;;;;;;;;;;;;;;;;19995:53;20058:12;20073:5;20058:20;;20089:14;20114:78;20129:1;20121:4;:9;20114:78;;20147:8;;;;;:::i;:::-;;;;20178:2;20170:10;;;;;:::i;:::-;;;20114:78;;;20202:19;20234:6;20224:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20202:39;;20252:154;20268:1;20259:5;:10;20252:154;;20296:1;20286:11;;;;;:::i;:::-;;;20363:2;20355:5;:10;;;;:::i;:::-;20342:2;:24;;;;:::i;:::-;20329:39;;20312:6;20319;20312:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20392:2;20383:11;;;;;:::i;:::-;;;20252:154;;;20430:6;20416:21;;;;;19722:723;;;;:::o;37596:505::-;37685:22;37693:4;37699:7;37685;:22::i;:::-;37680:414;;37873:41;37901:7;37873:41;;37911:2;37873:19;:41::i;:::-;37987:38;38015:4;38007:13;;38022:2;37987:19;:38::i;:::-;37778:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37724:358;;;;;;;;;;;:::i;:::-;;;;;;;;37680:414;37596:505;;:::o;41602:239::-;41686:22;41694:4;41700:7;41686;:22::i;:::-;41682:152;;;41757:5;41725:6;:12;41732:4;41725:12;;;;;;;;;;;:20;;:29;41746:7;41725:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;41809:12;:10;:12::i;:::-;41782:40;;41800:7;41782:40;;41794:4;41782:40;;;;;;;;;;41682:152;41602:239;;:::o;9204:158::-;9277:4;9301:53;9309:3;:10;;9345:5;9329:23;;9321:32;;9301:7;:53::i;:::-;9294:60;;9204:158;;;;:::o;5565:120::-;5632:7;5659:3;:11;;5671:5;5659:18;;;;;;;;:::i;:::-;;;;;;;;;;5652:25;;5565:120;;;;:::o;63524:799::-;63679:4;63700:15;:2;:13;;;:15::i;:::-;63696:620;;;63752:2;63736:36;;;63773:12;:10;:12::i;:::-;63787:4;63793:7;63802:5;63736:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63732:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63995:1;63978:6;:13;:18;63974:272;;;64021:60;;;;;;;;;;:::i;:::-;;;;;;;;63974:272;64196:6;64190:13;64181:6;64177:2;64173:15;64166:38;63732:529;63869:41;;;63859:51;;;:6;:51;;;;63852:58;;;;;63696:620;64300:4;64293:11;;63524:799;;;;;;;:::o;81006:114::-;81066:13;81099;81092:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81006:114;:::o;53712:334::-;53785:13;53819:16;53827:7;53819;:16::i;:::-;53811:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;53900:21;53924:10;:8;:10::i;:::-;53900:34;;53976:1;53958:7;53952:21;:25;:86;;;;;;;;;;;;;;;;;54004:7;54013:18;:7;:16;:18::i;:::-;53987:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53952:86;53945:93;;;53712:334;;;:::o;5102:109::-;5158:7;5185:3;:11;;:18;;;;5178:25;;5102:109;;;:::o;4887:129::-;4960:4;5007:1;4984:3;:12;;:19;4997:5;4984:19;;;;;;;;;;;;:24;;4977:31;;4887:129;;;;:::o;42427:214::-;42512:4;42551:42;42536:57;;;:11;:57;;;;:97;;;;42597:36;42621:11;42597:23;:36::i;:::-;42536:97;42529:104;;42427:214;;;:::o;70226:589::-;70370:45;70397:4;70403:2;70407:7;70370:26;:45::i;:::-;70448:1;70432:18;;:4;:18;;;70428:187;;;70467:40;70499:7;70467:31;:40::i;:::-;70428:187;;;70537:2;70529:10;;:4;:10;;;70525:90;;70556:47;70589:4;70595:7;70556:32;:47::i;:::-;70525:90;70428:187;70643:1;70629:16;;:2;:16;;;70625:183;;;70662:45;70699:7;70662:36;:45::i;:::-;70625:183;;;70735:4;70729:10;;:2;:10;;;70725:83;;70756:40;70784:2;70788:7;70756:27;:40::i;:::-;70725:83;70625:183;70226:589;;;:::o;76023:153::-;76070:7;76132:16;76150:15;76115:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;76105:62;;;;;;76097:71;;76090:78;;76023:153;:::o;59503:321::-;59633:18;59639:2;59643:7;59633:5;:18::i;:::-;59684:54;59715:1;59719:2;59723:7;59732:5;59684:22;:54::i;:::-;59662:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;59503:321;;;:::o;21023:451::-;21098:13;21124:19;21169:1;21160:6;21156:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;21146:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21124:47;;21182:15;:6;21189:1;21182:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;21208;:6;21215:1;21208:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;21239:9;21264:1;21255:6;21251:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;21239:26;;21234:135;21271:1;21267;:5;21234:135;;;21306:12;21327:3;21319:5;:11;21306:25;;;;;;;:::i;:::-;;;;;21294:6;21301:1;21294:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;21356:1;21346:11;;;;;21274:3;;;;:::i;:::-;;;21234:135;;;;21396:1;21387:5;:10;21379:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;21459:6;21445:21;;;21023:451;;;;:::o;3381:1420::-;3447:4;3565:18;3586:3;:12;;:19;3599:5;3586:19;;;;;;;;;;;;3565:40;;3636:1;3622:10;:15;3618:1176;;3997:21;4034:1;4021:10;:14;;;;:::i;:::-;3997:38;;4050:17;4091:1;4070:3;:11;;:18;;;;:22;;;;:::i;:::-;4050:42;;4126:13;4113:9;:26;4109:405;;4160:17;4180:3;:11;;4192:9;4180:22;;;;;;;;:::i;:::-;;;;;;;;;;4160:42;;4334:9;4305:3;:11;;4317:13;4305:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;4445:10;4419:3;:12;;:23;4432:9;4419:23;;;;;;;;;;;:36;;;;4141:373;4109:405;4595:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4690:3;:12;;:19;4703:5;4690:19;;;;;;;;;;;4683:26;;;4733:4;4726:11;;;;;;;3618:1176;4777:5;4770:12;;;3381:1420;;;;;:::o;23607:326::-;23667:4;23924:1;23902:7;:19;;;:23;23895:30;;23607:326;;;:::o;36454:204::-;36539:4;36578:32;36563:47;;;:11;:47;;;;:87;;;;36614:36;36638:11;36614:23;:36::i;:::-;36563:87;36556:94;;36454:204;;;:::o;64895:126::-;;;;:::o;71538:164::-;71642:10;:17;;;;71615:15;:24;71631:7;71615:24;;;;;;;;;;;:44;;;;71670:10;71686:7;71670:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71538:164;:::o;72329:988::-;72595:22;72645:1;72620:22;72637:4;72620:16;:22::i;:::-;:26;;;;:::i;:::-;72595:51;;72657:18;72678:17;:26;72696:7;72678:26;;;;;;;;;;;;72657:47;;72825:14;72811:10;:28;72807:328;;72856:19;72878:12;:18;72891:4;72878:18;;;;;;;;;;;;;;;:34;72897:14;72878:34;;;;;;;;;;;;72856:56;;72962:11;72929:12;:18;72942:4;72929:18;;;;;;;;;;;;;;;:30;72948:10;72929:30;;;;;;;;;;;:44;;;;73079:10;73046:17;:30;73064:11;73046:30;;;;;;;;;;;:43;;;;72841:294;72807:328;73231:17;:26;73249:7;73231:26;;;;;;;;;;;73224:33;;;73275:12;:18;73288:4;73275:18;;;;;;;;;;;;;;;:34;73294:14;73275:34;;;;;;;;;;;73268:41;;;72410:907;;72329:988;;:::o;73612:1079::-;73865:22;73910:1;73890:10;:17;;;;:21;;;;:::i;:::-;73865:46;;73922:18;73943:15;:24;73959:7;73943:24;;;;;;;;;;;;73922:45;;74294:19;74316:10;74327:14;74316:26;;;;;;;;:::i;:::-;;;;;;;;;;74294:48;;74380:11;74355:10;74366;74355:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;74491:10;74460:15;:28;74476:11;74460:28;;;;;;;;;;;:41;;;;74632:15;:24;74648:7;74632:24;;;;;;;;;;;74625:31;;;74667:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73683:1008;;;73612:1079;:::o;71116:221::-;71201:14;71218:20;71235:2;71218:16;:20::i;:::-;71201:37;;71276:7;71249:12;:16;71262:2;71249:16;;;;;;;;;;;;;;;:24;71266:6;71249:24;;;;;;;;;;;:34;;;;71323:6;71294:17;:26;71312:7;71294:26;;;;;;;;;;;:35;;;;71190:147;71116:221;;:::o;60160:439::-;60254:1;60240:16;;:2;:16;;;;60232:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;60313:16;60321:7;60313;:16::i;:::-;60312:17;60304:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60375:45;60404:1;60408:2;60412:7;60375:20;:45::i;:::-;60450:1;60433:9;:13;60443:2;60433:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;60481:2;60462:7;:16;60470:7;60462:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;60526:7;60522:2;60501:33;;60518:1;60501:33;;;;;;;;;;;;60547:44;60575:1;60579:2;60583:7;60547:19;:44::i;:::-;60160:439;;:::o;33713:157::-;33798:4;33837:25;33822:40;;;:11;:40;;;;33815:47;;33713:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:139::-;2353:5;2391:6;2378:20;2369:29;;2407:33;2434:5;2407:33;:::i;:::-;2307:139;;;;:::o;2452:137::-;2497:5;2535:6;2522:20;2513:29;;2551:32;2577:5;2551:32;:::i;:::-;2452:137;;;;:::o;2595:141::-;2651:5;2682:6;2676:13;2667:22;;2698:32;2724:5;2698:32;:::i;:::-;2595:141;;;;:::o;2755:338::-;2810:5;2859:3;2852:4;2844:6;2840:17;2836:27;2826:122;;2867:79;;:::i;:::-;2826:122;2984:6;2971:20;3009:78;3083:3;3075:6;3068:4;3060:6;3056:17;3009:78;:::i;:::-;3000:87;;2816:277;2755:338;;;;:::o;3099:171::-;3161:5;3199:6;3186:20;3177:29;;3215:49;3258:5;3215:49;:::i;:::-;3099:171;;;;:::o;3290:340::-;3346:5;3395:3;3388:4;3380:6;3376:17;3372:27;3362:122;;3403:79;;:::i;:::-;3362:122;3520:6;3507:20;3545:79;3620:3;3612:6;3605:4;3597:6;3593:17;3545:79;:::i;:::-;3536:88;;3352:278;3290:340;;;;:::o;3636:139::-;3682:5;3720:6;3707:20;3698:29;;3736:33;3763:5;3736:33;:::i;:::-;3636:139;;;;:::o;3781:329::-;3840:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;3781:329;;;;:::o;4116:474::-;4184:6;4192;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4494:2;4520:53;4565:7;4556:6;4545:9;4541:22;4520:53;:::i;:::-;4510:63;;4465:118;4116:474;;;;;:::o;4596:619::-;4673:6;4681;4689;4738:2;4726:9;4717:7;4713:23;4709:32;4706:119;;;4744:79;;:::i;:::-;4706:119;4864:1;4889:53;4934:7;4925:6;4914:9;4910:22;4889:53;:::i;:::-;4879:63;;4835:117;4991:2;5017:53;5062:7;5053:6;5042:9;5038:22;5017:53;:::i;:::-;5007:63;;4962:118;5119:2;5145:53;5190:7;5181:6;5170:9;5166:22;5145:53;:::i;:::-;5135:63;;5090:118;4596:619;;;;;:::o;5221:943::-;5316:6;5324;5332;5340;5389:3;5377:9;5368:7;5364:23;5360:33;5357:120;;;5396:79;;:::i;:::-;5357:120;5516:1;5541:53;5586:7;5577:6;5566:9;5562:22;5541:53;:::i;:::-;5531:63;;5487:117;5643:2;5669:53;5714:7;5705:6;5694:9;5690:22;5669:53;:::i;:::-;5659:63;;5614:118;5771:2;5797:53;5842:7;5833:6;5822:9;5818:22;5797:53;:::i;:::-;5787:63;;5742:118;5927:2;5916:9;5912:18;5899:32;5958:18;5950:6;5947:30;5944:117;;;5980:79;;:::i;:::-;5944:117;6085:62;6139:7;6130:6;6119:9;6115:22;6085:62;:::i;:::-;6075:72;;5870:287;5221:943;;;;;;;:::o;6170:468::-;6235:6;6243;6292:2;6280:9;6271:7;6267:23;6263:32;6260:119;;;6298:79;;:::i;:::-;6260:119;6418:1;6443:53;6488:7;6479:6;6468:9;6464:22;6443:53;:::i;:::-;6433:63;;6389:117;6545:2;6571:50;6613:7;6604:6;6593:9;6589:22;6571:50;:::i;:::-;6561:60;;6516:115;6170:468;;;;;:::o;6644:474::-;6712:6;6720;6769:2;6757:9;6748:7;6744:23;6740:32;6737:119;;;6775:79;;:::i;:::-;6737:119;6895:1;6920:53;6965:7;6956:6;6945:9;6941:22;6920:53;:::i;:::-;6910:63;;6866:117;7022:2;7048:53;7093:7;7084:6;7073:9;7069:22;7048:53;:::i;:::-;7038:63;;6993:118;6644:474;;;;;:::o;7124:329::-;7183:6;7232:2;7220:9;7211:7;7207:23;7203:32;7200:119;;;7238:79;;:::i;:::-;7200:119;7358:1;7383:53;7428:7;7419:6;7408:9;7404:22;7383:53;:::i;:::-;7373:63;;7329:117;7124:329;;;;:::o;7459:474::-;7527:6;7535;7584:2;7572:9;7563:7;7559:23;7555:32;7552:119;;;7590:79;;:::i;:::-;7552:119;7710:1;7735:53;7780:7;7771:6;7760:9;7756:22;7735:53;:::i;:::-;7725:63;;7681:117;7837:2;7863:53;7908:7;7899:6;7888:9;7884:22;7863:53;:::i;:::-;7853:63;;7808:118;7459:474;;;;;:::o;7939:::-;8007:6;8015;8064:2;8052:9;8043:7;8039:23;8035:32;8032:119;;;8070:79;;:::i;:::-;8032:119;8190:1;8215:53;8260:7;8251:6;8240:9;8236:22;8215:53;:::i;:::-;8205:63;;8161:117;8317:2;8343:53;8388:7;8379:6;8368:9;8364:22;8343:53;:::i;:::-;8333:63;;8288:118;7939:474;;;;;:::o;8419:327::-;8477:6;8526:2;8514:9;8505:7;8501:23;8497:32;8494:119;;;8532:79;;:::i;:::-;8494:119;8652:1;8677:52;8721:7;8712:6;8701:9;8697:22;8677:52;:::i;:::-;8667:62;;8623:116;8419:327;;;;:::o;8752:349::-;8821:6;8870:2;8858:9;8849:7;8845:23;8841:32;8838:119;;;8876:79;;:::i;:::-;8838:119;8996:1;9021:63;9076:7;9067:6;9056:9;9052:22;9021:63;:::i;:::-;9011:73;;8967:127;8752:349;;;;:::o;9107:1111::-;9254:6;9262;9270;9278;9286;9335:2;9323:9;9314:7;9310:23;9306:32;9303:119;;;9341:79;;:::i;:::-;9303:119;9461:1;9486:69;9547:7;9538:6;9527:9;9523:22;9486:69;:::i;:::-;9476:79;;9432:133;9632:2;9621:9;9617:18;9604:32;9663:18;9655:6;9652:30;9649:117;;;9685:79;;:::i;:::-;9649:117;9798:80;9870:7;9861:6;9850:9;9846:22;9798:80;:::i;:::-;9780:98;;;;9575:313;9955:2;9944:9;9940:18;9927:32;9986:18;9978:6;9975:30;9972:117;;;10008:79;;:::i;:::-;9972:117;10121:80;10193:7;10184:6;10173:9;10169:22;10121:80;:::i;:::-;10103:98;;;;9898:313;9107:1111;;;;;;;;:::o;10224:509::-;10293:6;10342:2;10330:9;10321:7;10317:23;10313:32;10310:119;;;10348:79;;:::i;:::-;10310:119;10496:1;10485:9;10481:17;10468:31;10526:18;10518:6;10515:30;10512:117;;;10548:79;;:::i;:::-;10512:117;10653:63;10708:7;10699:6;10688:9;10684:22;10653:63;:::i;:::-;10643:73;;10439:287;10224:509;;;;:::o;10739:329::-;10798:6;10847:2;10835:9;10826:7;10822:23;10818:32;10815:119;;;10853:79;;:::i;:::-;10815:119;10973:1;10998:53;11043:7;11034:6;11023:9;11019:22;10998:53;:::i;:::-;10988:63;;10944:117;10739:329;;;;:::o;11074:654::-;11152:6;11160;11209:2;11197:9;11188:7;11184:23;11180:32;11177:119;;;11215:79;;:::i;:::-;11177:119;11335:1;11360:53;11405:7;11396:6;11385:9;11381:22;11360:53;:::i;:::-;11350:63;;11306:117;11490:2;11479:9;11475:18;11462:32;11521:18;11513:6;11510:30;11507:117;;;11543:79;;:::i;:::-;11507:117;11648:63;11703:7;11694:6;11683:9;11679:22;11648:63;:::i;:::-;11638:73;;11433:288;11074:654;;;;;:::o;11734:118::-;11821:24;11839:5;11821:24;:::i;:::-;11816:3;11809:37;11734:118;;:::o;11858:109::-;11939:21;11954:5;11939:21;:::i;:::-;11934:3;11927:34;11858:109;;:::o;11973:118::-;12060:24;12078:5;12060:24;:::i;:::-;12055:3;12048:37;11973:118;;:::o;12097:360::-;12183:3;12211:38;12243:5;12211:38;:::i;:::-;12265:70;12328:6;12323:3;12265:70;:::i;:::-;12258:77;;12344:52;12389:6;12384:3;12377:4;12370:5;12366:16;12344:52;:::i;:::-;12421:29;12443:6;12421:29;:::i;:::-;12416:3;12412:39;12405:46;;12187:270;12097:360;;;;:::o;12463:364::-;12551:3;12579:39;12612:5;12579:39;:::i;:::-;12634:71;12698:6;12693:3;12634:71;:::i;:::-;12627:78;;12714:52;12759:6;12754:3;12747:4;12740:5;12736:16;12714:52;:::i;:::-;12791:29;12813:6;12791:29;:::i;:::-;12786:3;12782:39;12775:46;;12555:272;12463:364;;;;:::o;12833:377::-;12939:3;12967:39;13000:5;12967:39;:::i;:::-;13022:89;13104:6;13099:3;13022:89;:::i;:::-;13015:96;;13120:52;13165:6;13160:3;13153:4;13146:5;13142:16;13120:52;:::i;:::-;13197:6;13192:3;13188:16;13181:23;;12943:267;12833:377;;;;:::o;13240:845::-;13343:3;13380:5;13374:12;13409:36;13435:9;13409:36;:::i;:::-;13461:89;13543:6;13538:3;13461:89;:::i;:::-;13454:96;;13581:1;13570:9;13566:17;13597:1;13592:137;;;;13743:1;13738:341;;;;13559:520;;13592:137;13676:4;13672:9;13661;13657:25;13652:3;13645:38;13712:6;13707:3;13703:16;13696:23;;13592:137;;13738:341;13805:38;13837:5;13805:38;:::i;:::-;13865:1;13879:154;13893:6;13890:1;13887:13;13879:154;;;13967:7;13961:14;13957:1;13952:3;13948:11;13941:35;14017:1;14008:7;14004:15;13993:26;;13915:4;13912:1;13908:12;13903:17;;13879:154;;;14062:6;14057:3;14053:16;14046:23;;13745:334;;13559:520;;13347:738;;13240:845;;;;:::o;14091:366::-;14233:3;14254:67;14318:2;14313:3;14254:67;:::i;:::-;14247:74;;14330:93;14419:3;14330:93;:::i;:::-;14448:2;14443:3;14439:12;14432:19;;14091:366;;;:::o;14463:::-;14605:3;14626:67;14690:2;14685:3;14626:67;:::i;:::-;14619:74;;14702:93;14791:3;14702:93;:::i;:::-;14820:2;14815:3;14811:12;14804:19;;14463:366;;;:::o;14835:::-;14977:3;14998:67;15062:2;15057:3;14998:67;:::i;:::-;14991:74;;15074:93;15163:3;15074:93;:::i;:::-;15192:2;15187:3;15183:12;15176:19;;14835:366;;;:::o;15207:::-;15349:3;15370:67;15434:2;15429:3;15370:67;:::i;:::-;15363:74;;15446:93;15535:3;15446:93;:::i;:::-;15564:2;15559:3;15555:12;15548:19;;15207:366;;;:::o;15579:::-;15721:3;15742:67;15806:2;15801:3;15742:67;:::i;:::-;15735:74;;15818:93;15907:3;15818:93;:::i;:::-;15936:2;15931:3;15927:12;15920:19;;15579:366;;;:::o;15951:::-;16093:3;16114:67;16178:2;16173:3;16114:67;:::i;:::-;16107:74;;16190:93;16279:3;16190:93;:::i;:::-;16308:2;16303:3;16299:12;16292:19;;15951:366;;;:::o;16323:::-;16465:3;16486:67;16550:2;16545:3;16486:67;:::i;:::-;16479:74;;16562:93;16651:3;16562:93;:::i;:::-;16680:2;16675:3;16671:12;16664:19;;16323:366;;;:::o;16695:::-;16837:3;16858:67;16922:2;16917:3;16858:67;:::i;:::-;16851:74;;16934:93;17023:3;16934:93;:::i;:::-;17052:2;17047:3;17043:12;17036:19;;16695:366;;;:::o;17067:::-;17209:3;17230:67;17294:2;17289:3;17230:67;:::i;:::-;17223:74;;17306:93;17395:3;17306:93;:::i;:::-;17424:2;17419:3;17415:12;17408:19;;17067:366;;;:::o;17439:::-;17581:3;17602:67;17666:2;17661:3;17602:67;:::i;:::-;17595:74;;17678:93;17767:3;17678:93;:::i;:::-;17796:2;17791:3;17787:12;17780:19;;17439:366;;;:::o;17811:::-;17953:3;17974:67;18038:2;18033:3;17974:67;:::i;:::-;17967:74;;18050:93;18139:3;18050:93;:::i;:::-;18168:2;18163:3;18159:12;18152:19;;17811:366;;;:::o;18183:::-;18325:3;18346:67;18410:2;18405:3;18346:67;:::i;:::-;18339:74;;18422:93;18511:3;18422:93;:::i;:::-;18540:2;18535:3;18531:12;18524:19;;18183:366;;;:::o;18555:::-;18697:3;18718:67;18782:2;18777:3;18718:67;:::i;:::-;18711:74;;18794:93;18883:3;18794:93;:::i;:::-;18912:2;18907:3;18903:12;18896:19;;18555:366;;;:::o;18927:::-;19069:3;19090:67;19154:2;19149:3;19090:67;:::i;:::-;19083:74;;19166:93;19255:3;19166:93;:::i;:::-;19284:2;19279:3;19275:12;19268:19;;18927:366;;;:::o;19299:::-;19441:3;19462:67;19526:2;19521:3;19462:67;:::i;:::-;19455:74;;19538:93;19627:3;19538:93;:::i;:::-;19656:2;19651:3;19647:12;19640:19;;19299:366;;;:::o;19671:::-;19813:3;19834:67;19898:2;19893:3;19834:67;:::i;:::-;19827:74;;19910:93;19999:3;19910:93;:::i;:::-;20028:2;20023:3;20019:12;20012:19;;19671:366;;;:::o;20043:::-;20185:3;20206:67;20270:2;20265:3;20206:67;:::i;:::-;20199:74;;20282:93;20371:3;20282:93;:::i;:::-;20400:2;20395:3;20391:12;20384:19;;20043:366;;;:::o;20415:::-;20557:3;20578:67;20642:2;20637:3;20578:67;:::i;:::-;20571:74;;20654:93;20743:3;20654:93;:::i;:::-;20772:2;20767:3;20763:12;20756:19;;20415:366;;;:::o;20787:::-;20929:3;20950:67;21014:2;21009:3;20950:67;:::i;:::-;20943:74;;21026:93;21115:3;21026:93;:::i;:::-;21144:2;21139:3;21135:12;21128:19;;20787:366;;;:::o;21159:::-;21301:3;21322:67;21386:2;21381:3;21322:67;:::i;:::-;21315:74;;21398:93;21487:3;21398:93;:::i;:::-;21516:2;21511:3;21507:12;21500:19;;21159:366;;;:::o;21531:::-;21673:3;21694:67;21758:2;21753:3;21694:67;:::i;:::-;21687:74;;21770:93;21859:3;21770:93;:::i;:::-;21888:2;21883:3;21879:12;21872:19;;21531:366;;;:::o;21903:::-;22045:3;22066:67;22130:2;22125:3;22066:67;:::i;:::-;22059:74;;22142:93;22231:3;22142:93;:::i;:::-;22260:2;22255:3;22251:12;22244:19;;21903:366;;;:::o;22275:::-;22417:3;22438:67;22502:2;22497:3;22438:67;:::i;:::-;22431:74;;22514:93;22603:3;22514:93;:::i;:::-;22632:2;22627:3;22623:12;22616:19;;22275:366;;;:::o;22647:::-;22789:3;22810:67;22874:2;22869:3;22810:67;:::i;:::-;22803:74;;22886:93;22975:3;22886:93;:::i;:::-;23004:2;22999:3;22995:12;22988:19;;22647:366;;;:::o;23019:::-;23161:3;23182:67;23246:2;23241:3;23182:67;:::i;:::-;23175:74;;23258:93;23347:3;23258:93;:::i;:::-;23376:2;23371:3;23367:12;23360:19;;23019:366;;;:::o;23391:::-;23533:3;23554:67;23618:2;23613:3;23554:67;:::i;:::-;23547:74;;23630:93;23719:3;23630:93;:::i;:::-;23748:2;23743:3;23739:12;23732:19;;23391:366;;;:::o;23763:402::-;23923:3;23944:85;24026:2;24021:3;23944:85;:::i;:::-;23937:92;;24038:93;24127:3;24038:93;:::i;:::-;24156:2;24151:3;24147:12;24140:19;;23763:402;;;:::o;24171:366::-;24313:3;24334:67;24398:2;24393:3;24334:67;:::i;:::-;24327:74;;24410:93;24499:3;24410:93;:::i;:::-;24528:2;24523:3;24519:12;24512:19;;24171:366;;;:::o;24543:402::-;24703:3;24724:85;24806:2;24801:3;24724:85;:::i;:::-;24717:92;;24818:93;24907:3;24818:93;:::i;:::-;24936:2;24931:3;24927:12;24920:19;;24543:402;;;:::o;24951:366::-;25093:3;25114:67;25178:2;25173:3;25114:67;:::i;:::-;25107:74;;25190:93;25279:3;25190:93;:::i;:::-;25308:2;25303:3;25299:12;25292:19;;24951:366;;;:::o;25323:118::-;25410:24;25428:5;25410:24;:::i;:::-;25405:3;25398:37;25323:118;;:::o;25447:157::-;25552:45;25572:24;25590:5;25572:24;:::i;:::-;25552:45;:::i;:::-;25547:3;25540:58;25447:157;;:::o;25610:435::-;25790:3;25812:95;25903:3;25894:6;25812:95;:::i;:::-;25805:102;;25924:95;26015:3;26006:6;25924:95;:::i;:::-;25917:102;;26036:3;26029:10;;25610:435;;;;;:::o;26051:429::-;26228:3;26250:95;26341:3;26332:6;26250:95;:::i;:::-;26243:102;;26362:92;26450:3;26441:6;26362:92;:::i;:::-;26355:99;;26471:3;26464:10;;26051:429;;;;;:::o;26486:967::-;26868:3;26890:148;27034:3;26890:148;:::i;:::-;26883:155;;27055:95;27146:3;27137:6;27055:95;:::i;:::-;27048:102;;27167:148;27311:3;27167:148;:::i;:::-;27160:155;;27332:95;27423:3;27414:6;27332:95;:::i;:::-;27325:102;;27444:3;27437:10;;26486:967;;;;;:::o;27459:397::-;27599:3;27614:75;27685:3;27676:6;27614:75;:::i;:::-;27714:2;27709:3;27705:12;27698:19;;27727:75;27798:3;27789:6;27727:75;:::i;:::-;27827:2;27822:3;27818:12;27811:19;;27847:3;27840:10;;27459:397;;;;;:::o;27862:222::-;27955:4;27993:2;27982:9;27978:18;27970:26;;28006:71;28074:1;28063:9;28059:17;28050:6;28006:71;:::i;:::-;27862:222;;;;:::o;28090:442::-;28239:4;28277:2;28266:9;28262:18;28254:26;;28290:71;28358:1;28347:9;28343:17;28334:6;28290:71;:::i;:::-;28371:72;28439:2;28428:9;28424:18;28415:6;28371:72;:::i;:::-;28453;28521:2;28510:9;28506:18;28497:6;28453:72;:::i;:::-;28090:442;;;;;;:::o;28538:640::-;28733:4;28771:3;28760:9;28756:19;28748:27;;28785:71;28853:1;28842:9;28838:17;28829:6;28785:71;:::i;:::-;28866:72;28934:2;28923:9;28919:18;28910:6;28866:72;:::i;:::-;28948;29016:2;29005:9;29001:18;28992:6;28948:72;:::i;:::-;29067:9;29061:4;29057:20;29052:2;29041:9;29037:18;29030:48;29095:76;29166:4;29157:6;29095:76;:::i;:::-;29087:84;;28538:640;;;;;;;:::o;29184:210::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29322:65;29384:1;29373:9;29369:17;29360:6;29322:65;:::i;:::-;29184:210;;;;:::o;29400:222::-;29493:4;29531:2;29520:9;29516:18;29508:26;;29544:71;29612:1;29601:9;29597:17;29588:6;29544:71;:::i;:::-;29400:222;;;;:::o;29628:313::-;29741:4;29779:2;29768:9;29764:18;29756:26;;29828:9;29822:4;29818:20;29814:1;29803:9;29799:17;29792:47;29856:78;29929:4;29920:6;29856:78;:::i;:::-;29848:86;;29628:313;;;;:::o;29947:419::-;30113:4;30151:2;30140:9;30136:18;30128:26;;30200:9;30194:4;30190:20;30186:1;30175:9;30171:17;30164:47;30228:131;30354:4;30228:131;:::i;:::-;30220:139;;29947:419;;;:::o;30372:::-;30538:4;30576:2;30565:9;30561:18;30553:26;;30625:9;30619:4;30615:20;30611:1;30600:9;30596:17;30589:47;30653:131;30779:4;30653:131;:::i;:::-;30645:139;;30372:419;;;:::o;30797:::-;30963:4;31001:2;30990:9;30986:18;30978:26;;31050:9;31044:4;31040:20;31036:1;31025:9;31021:17;31014:47;31078:131;31204:4;31078:131;:::i;:::-;31070:139;;30797:419;;;:::o;31222:::-;31388:4;31426:2;31415:9;31411:18;31403:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31503:131;31629:4;31503:131;:::i;:::-;31495:139;;31222:419;;;:::o;31647:::-;31813:4;31851:2;31840:9;31836:18;31828:26;;31900:9;31894:4;31890:20;31886:1;31875:9;31871:17;31864:47;31928:131;32054:4;31928:131;:::i;:::-;31920:139;;31647:419;;;:::o;32072:::-;32238:4;32276:2;32265:9;32261:18;32253:26;;32325:9;32319:4;32315:20;32311:1;32300:9;32296:17;32289:47;32353:131;32479:4;32353:131;:::i;:::-;32345:139;;32072:419;;;:::o;32497:::-;32663:4;32701:2;32690:9;32686:18;32678:26;;32750:9;32744:4;32740:20;32736:1;32725:9;32721:17;32714:47;32778:131;32904:4;32778:131;:::i;:::-;32770:139;;32497:419;;;:::o;32922:::-;33088:4;33126:2;33115:9;33111:18;33103:26;;33175:9;33169:4;33165:20;33161:1;33150:9;33146:17;33139:47;33203:131;33329:4;33203:131;:::i;:::-;33195:139;;32922:419;;;:::o;33347:::-;33513:4;33551:2;33540:9;33536:18;33528:26;;33600:9;33594:4;33590:20;33586:1;33575:9;33571:17;33564:47;33628:131;33754:4;33628:131;:::i;:::-;33620:139;;33347:419;;;:::o;33772:::-;33938:4;33976:2;33965:9;33961:18;33953:26;;34025:9;34019:4;34015:20;34011:1;34000:9;33996:17;33989:47;34053:131;34179:4;34053:131;:::i;:::-;34045:139;;33772:419;;;:::o;34197:::-;34363:4;34401:2;34390:9;34386:18;34378:26;;34450:9;34444:4;34440:20;34436:1;34425:9;34421:17;34414:47;34478:131;34604:4;34478:131;:::i;:::-;34470:139;;34197:419;;;:::o;34622:::-;34788:4;34826:2;34815:9;34811:18;34803:26;;34875:9;34869:4;34865:20;34861:1;34850:9;34846:17;34839:47;34903:131;35029:4;34903:131;:::i;:::-;34895:139;;34622:419;;;:::o;35047:::-;35213:4;35251:2;35240:9;35236:18;35228:26;;35300:9;35294:4;35290:20;35286:1;35275:9;35271:17;35264:47;35328:131;35454:4;35328:131;:::i;:::-;35320:139;;35047:419;;;:::o;35472:::-;35638:4;35676:2;35665:9;35661:18;35653:26;;35725:9;35719:4;35715:20;35711:1;35700:9;35696:17;35689:47;35753:131;35879:4;35753:131;:::i;:::-;35745:139;;35472:419;;;:::o;35897:::-;36063:4;36101:2;36090:9;36086:18;36078:26;;36150:9;36144:4;36140:20;36136:1;36125:9;36121:17;36114:47;36178:131;36304:4;36178:131;:::i;:::-;36170:139;;35897:419;;;:::o;36322:::-;36488:4;36526:2;36515:9;36511:18;36503:26;;36575:9;36569:4;36565:20;36561:1;36550:9;36546:17;36539:47;36603:131;36729:4;36603:131;:::i;:::-;36595:139;;36322:419;;;:::o;36747:::-;36913:4;36951:2;36940:9;36936:18;36928:26;;37000:9;36994:4;36990:20;36986:1;36975:9;36971:17;36964:47;37028:131;37154:4;37028:131;:::i;:::-;37020:139;;36747:419;;;:::o;37172:::-;37338:4;37376:2;37365:9;37361:18;37353:26;;37425:9;37419:4;37415:20;37411:1;37400:9;37396:17;37389:47;37453:131;37579:4;37453:131;:::i;:::-;37445:139;;37172:419;;;:::o;37597:::-;37763:4;37801:2;37790:9;37786:18;37778:26;;37850:9;37844:4;37840:20;37836:1;37825:9;37821:17;37814:47;37878:131;38004:4;37878:131;:::i;:::-;37870:139;;37597:419;;;:::o;38022:::-;38188:4;38226:2;38215:9;38211:18;38203:26;;38275:9;38269:4;38265:20;38261:1;38250:9;38246:17;38239:47;38303:131;38429:4;38303:131;:::i;:::-;38295:139;;38022:419;;;:::o;38447:::-;38613:4;38651:2;38640:9;38636:18;38628:26;;38700:9;38694:4;38690:20;38686:1;38675:9;38671:17;38664:47;38728:131;38854:4;38728:131;:::i;:::-;38720:139;;38447:419;;;:::o;38872:::-;39038:4;39076:2;39065:9;39061:18;39053:26;;39125:9;39119:4;39115:20;39111:1;39100:9;39096:17;39089:47;39153:131;39279:4;39153:131;:::i;:::-;39145:139;;38872:419;;;:::o;39297:::-;39463:4;39501:2;39490:9;39486:18;39478:26;;39550:9;39544:4;39540:20;39536:1;39525:9;39521:17;39514:47;39578:131;39704:4;39578:131;:::i;:::-;39570:139;;39297:419;;;:::o;39722:::-;39888:4;39926:2;39915:9;39911:18;39903:26;;39975:9;39969:4;39965:20;39961:1;39950:9;39946:17;39939:47;40003:131;40129:4;40003:131;:::i;:::-;39995:139;;39722:419;;;:::o;40147:::-;40313:4;40351:2;40340:9;40336:18;40328:26;;40400:9;40394:4;40390:20;40386:1;40375:9;40371:17;40364:47;40428:131;40554:4;40428:131;:::i;:::-;40420:139;;40147:419;;;:::o;40572:::-;40738:4;40776:2;40765:9;40761:18;40753:26;;40825:9;40819:4;40815:20;40811:1;40800:9;40796:17;40789:47;40853:131;40979:4;40853:131;:::i;:::-;40845:139;;40572:419;;;:::o;40997:::-;41163:4;41201:2;41190:9;41186:18;41178:26;;41250:9;41244:4;41240:20;41236:1;41225:9;41221:17;41214:47;41278:131;41404:4;41278:131;:::i;:::-;41270:139;;40997:419;;;:::o;41422:::-;41588:4;41626:2;41615:9;41611:18;41603:26;;41675:9;41669:4;41665:20;41661:1;41650:9;41646:17;41639:47;41703:131;41829:4;41703:131;:::i;:::-;41695:139;;41422:419;;;:::o;41847:222::-;41940:4;41978:2;41967:9;41963:18;41955:26;;41991:71;42059:1;42048:9;42044:17;42035:6;41991:71;:::i;:::-;41847:222;;;;:::o;42075:129::-;42109:6;42136:20;;:::i;:::-;42126:30;;42165:33;42193:4;42185:6;42165:33;:::i;:::-;42075:129;;;:::o;42210:75::-;42243:6;42276:2;42270:9;42260:19;;42210:75;:::o;42291:307::-;42352:4;42442:18;42434:6;42431:30;42428:56;;;42464:18;;:::i;:::-;42428:56;42502:29;42524:6;42502:29;:::i;:::-;42494:37;;42586:4;42580;42576:15;42568:23;;42291:307;;;:::o;42604:308::-;42666:4;42756:18;42748:6;42745:30;42742:56;;;42778:18;;:::i;:::-;42742:56;42816:29;42838:6;42816:29;:::i;:::-;42808:37;;42900:4;42894;42890:15;42882:23;;42604:308;;;:::o;42918:141::-;42967:4;42990:3;42982:11;;43013:3;43010:1;43003:14;43047:4;43044:1;43034:18;43026:26;;42918:141;;;:::o;43065:98::-;43116:6;43150:5;43144:12;43134:22;;43065:98;;;:::o;43169:99::-;43221:6;43255:5;43249:12;43239:22;;43169:99;;;:::o;43274:168::-;43357:11;43391:6;43386:3;43379:19;43431:4;43426:3;43422:14;43407:29;;43274:168;;;;:::o;43448:169::-;43532:11;43566:6;43561:3;43554:19;43606:4;43601:3;43597:14;43582:29;;43448:169;;;;:::o;43623:148::-;43725:11;43762:3;43747:18;;43623:148;;;;:::o;43777:305::-;43817:3;43836:20;43854:1;43836:20;:::i;:::-;43831:25;;43870:20;43888:1;43870:20;:::i;:::-;43865:25;;44024:1;43956:66;43952:74;43949:1;43946:81;43943:107;;;44030:18;;:::i;:::-;43943:107;44074:1;44071;44067:9;44060:16;;43777:305;;;;:::o;44088:185::-;44128:1;44145:20;44163:1;44145:20;:::i;:::-;44140:25;;44179:20;44197:1;44179:20;:::i;:::-;44174:25;;44218:1;44208:35;;44223:18;;:::i;:::-;44208:35;44265:1;44262;44258:9;44253:14;;44088:185;;;;:::o;44279:348::-;44319:7;44342:20;44360:1;44342:20;:::i;:::-;44337:25;;44376:20;44394:1;44376:20;:::i;:::-;44371:25;;44564:1;44496:66;44492:74;44489:1;44486:81;44481:1;44474:9;44467:17;44463:105;44460:131;;;44571:18;;:::i;:::-;44460:131;44619:1;44616;44612:9;44601:20;;44279:348;;;;:::o;44633:191::-;44673:4;44693:20;44711:1;44693:20;:::i;:::-;44688:25;;44727:20;44745:1;44727:20;:::i;:::-;44722:25;;44766:1;44763;44760:8;44757:34;;;44771:18;;:::i;:::-;44757:34;44816:1;44813;44809:9;44801:17;;44633:191;;;;:::o;44830:96::-;44867:7;44896:24;44914:5;44896:24;:::i;:::-;44885:35;;44830:96;;;:::o;44932:90::-;44966:7;45009:5;45002:13;44995:21;44984:32;;44932:90;;;:::o;45028:77::-;45065:7;45094:5;45083:16;;45028:77;;;:::o;45111:149::-;45147:7;45187:66;45180:5;45176:78;45165:89;;45111:149;;;:::o;45266:112::-;45319:7;45348:24;45366:5;45348:24;:::i;:::-;45337:35;;45266:112;;;:::o;45384:126::-;45421:7;45461:42;45454:5;45450:54;45439:65;;45384:126;;;:::o;45516:77::-;45553:7;45582:5;45571:16;;45516:77;;;:::o;45599:154::-;45683:6;45678:3;45673;45660:30;45745:1;45736:6;45731:3;45727:16;45720:27;45599:154;;;:::o;45759:307::-;45827:1;45837:113;45851:6;45848:1;45845:13;45837:113;;;45936:1;45931:3;45927:11;45921:18;45917:1;45912:3;45908:11;45901:39;45873:2;45870:1;45866:10;45861:15;;45837:113;;;45968:6;45965:1;45962:13;45959:101;;;46048:1;46039:6;46034:3;46030:16;46023:27;45959:101;45808:258;45759:307;;;:::o;46072:171::-;46111:3;46134:24;46152:5;46134:24;:::i;:::-;46125:33;;46180:4;46173:5;46170:15;46167:41;;;46188:18;;:::i;:::-;46167:41;46235:1;46228:5;46224:13;46217:20;;46072:171;;;:::o;46249:320::-;46293:6;46330:1;46324:4;46320:12;46310:22;;46377:1;46371:4;46367:12;46398:18;46388:81;;46454:4;46446:6;46442:17;46432:27;;46388:81;46516:2;46508:6;46505:14;46485:18;46482:38;46479:84;;;46535:18;;:::i;:::-;46479:84;46300:269;46249:320;;;:::o;46575:281::-;46658:27;46680:4;46658:27;:::i;:::-;46650:6;46646:40;46788:6;46776:10;46773:22;46752:18;46740:10;46737:34;46734:62;46731:88;;;46799:18;;:::i;:::-;46731:88;46839:10;46835:2;46828:22;46618:238;46575:281;;:::o;46862:233::-;46901:3;46924:24;46942:5;46924:24;:::i;:::-;46915:33;;46970:66;46963:5;46960:77;46957:103;;;47040:18;;:::i;:::-;46957:103;47087:1;47080:5;47076:13;47069:20;;46862:233;;;:::o;47101:79::-;47140:7;47169:5;47158:16;;47101:79;;;:::o;47186:176::-;47218:1;47235:20;47253:1;47235:20;:::i;:::-;47230:25;;47269:20;47287:1;47269:20;:::i;:::-;47264:25;;47308:1;47298:35;;47313:18;;:::i;:::-;47298:35;47354:1;47351;47347:9;47342:14;;47186:176;;;;:::o;47368:180::-;47416:77;47413:1;47406:88;47513:4;47510:1;47503:15;47537:4;47534:1;47527:15;47554:180;47602:77;47599:1;47592:88;47699:4;47696:1;47689:15;47723:4;47720:1;47713:15;47740:180;47788:77;47785:1;47778:88;47885:4;47882:1;47875:15;47909:4;47906:1;47899:15;47926:180;47974:77;47971:1;47964:88;48071:4;48068:1;48061:15;48095:4;48092:1;48085:15;48112:180;48160:77;48157:1;48150:88;48257:4;48254:1;48247:15;48281:4;48278:1;48271:15;48298:180;48346:77;48343:1;48336:88;48443:4;48440:1;48433:15;48467:4;48464:1;48457:15;48484:117;48593:1;48590;48583:12;48607:117;48716:1;48713;48706:12;48730:117;48839:1;48836;48829:12;48853:117;48962:1;48959;48952:12;48976:117;49085:1;49082;49075:12;49099:117;49208:1;49205;49198:12;49222:102;49263:6;49314:2;49310:7;49305:2;49298:5;49294:14;49290:28;49280:38;;49222:102;;;:::o;49330:182::-;49470:34;49466:1;49458:6;49454:14;49447:58;49330:182;:::o;49518:179::-;49658:31;49654:1;49646:6;49642:14;49635:55;49518:179;:::o;49703:181::-;49843:33;49839:1;49831:6;49827:14;49820:57;49703:181;:::o;49890:230::-;50030:34;50026:1;50018:6;50014:14;50007:58;50099:13;50094:2;50086:6;50082:15;50075:38;49890:230;:::o;50126:237::-;50266:34;50262:1;50254:6;50250:14;50243:58;50335:20;50330:2;50322:6;50318:15;50311:45;50126:237;:::o;50369:224::-;50509:34;50505:1;50497:6;50493:14;50486:58;50578:7;50573:2;50565:6;50561:15;50554:32;50369:224;:::o;50599:178::-;50739:30;50735:1;50727:6;50723:14;50716:54;50599:178;:::o;50783:::-;50923:30;50919:1;50911:6;50907:14;50900:54;50783:178;:::o;50967:223::-;51107:34;51103:1;51095:6;51091:14;51084:58;51176:6;51171:2;51163:6;51159:15;51152:31;50967:223;:::o;51196:175::-;51336:27;51332:1;51324:6;51320:14;51313:51;51196:175;:::o;51377:231::-;51517:34;51513:1;51505:6;51501:14;51494:58;51586:14;51581:2;51573:6;51569:15;51562:39;51377:231;:::o;51614:243::-;51754:34;51750:1;51742:6;51738:14;51731:58;51823:26;51818:2;51810:6;51806:15;51799:51;51614:243;:::o;51863:229::-;52003:34;51999:1;51991:6;51987:14;51980:58;52072:12;52067:2;52059:6;52055:15;52048:37;51863:229;:::o;52098:228::-;52238:34;52234:1;52226:6;52222:14;52215:58;52307:11;52302:2;52294:6;52290:15;52283:36;52098:228;:::o;52332:233::-;52472:34;52468:1;52460:6;52456:14;52449:58;52541:16;52536:2;52528:6;52524:15;52517:41;52332:233;:::o;52571:172::-;52711:24;52707:1;52699:6;52695:14;52688:48;52571:172;:::o;52749:223::-;52889:34;52885:1;52877:6;52873:14;52866:58;52958:6;52953:2;52945:6;52941:15;52934:31;52749:223;:::o;52978:182::-;53118:34;53114:1;53106:6;53102:14;53095:58;52978:182;:::o;53166:236::-;53306:34;53302:1;53294:6;53290:14;53283:58;53375:19;53370:2;53362:6;53358:15;53351:44;53166:236;:::o;53408:231::-;53548:34;53544:1;53536:6;53532:14;53525:58;53617:14;53612:2;53604:6;53600:15;53593:39;53408:231;:::o;53645:234::-;53785:34;53781:1;53773:6;53769:14;53762:58;53854:17;53849:2;53841:6;53837:15;53830:42;53645:234;:::o;53885:174::-;54025:26;54021:1;54013:6;54009:14;54002:50;53885:174;:::o;54065:220::-;54205:34;54201:1;54193:6;54189:14;54182:58;54274:3;54269:2;54261:6;54257:15;54250:28;54065:220;:::o;54291:169::-;54431:21;54427:1;54419:6;54415:14;54408:45;54291:169;:::o;54466:236::-;54606:34;54602:1;54594:6;54590:14;54583:58;54675:19;54670:2;54662:6;54658:15;54651:44;54466:236;:::o;54708:231::-;54848:34;54844:1;54836:6;54832:14;54825:58;54917:14;54912:2;54904:6;54900:15;54893:39;54708:231;:::o;54945:173::-;55085:25;55081:1;55073:6;55069:14;55062:49;54945:173;:::o;55124:225::-;55264:34;55260:1;55252:6;55248:14;55241:58;55333:8;55328:2;55320:6;55316:15;55309:33;55124:225;:::o;55355:167::-;55495:19;55491:1;55483:6;55479:14;55472:43;55355:167;:::o;55528:234::-;55668:34;55664:1;55656:6;55652:14;55645:58;55737:17;55732:2;55724:6;55720:15;55713:42;55528:234;:::o;55768:122::-;55841:24;55859:5;55841:24;:::i;:::-;55834:5;55831:35;55821:63;;55880:1;55877;55870:12;55821:63;55768:122;:::o;55896:116::-;55966:21;55981:5;55966:21;:::i;:::-;55959:5;55956:32;55946:60;;56002:1;55999;55992:12;55946:60;55896:116;:::o;56018:122::-;56091:24;56109:5;56091:24;:::i;:::-;56084:5;56081:35;56071:63;;56130:1;56127;56120:12;56071:63;56018:122;:::o;56146:120::-;56218:23;56235:5;56218:23;:::i;:::-;56211:5;56208:34;56198:62;;56256:1;56253;56246:12;56198:62;56146:120;:::o;56272:154::-;56361:40;56395:5;56361:40;:::i;:::-;56354:5;56351:51;56341:79;;56416:1;56413;56406:12;56341:79;56272:154;:::o;56432:122::-;56505:24;56523:5;56505:24;:::i;:::-;56498:5;56495:35;56485:63;;56544:1;56541;56534:12;56485:63;56432:122;:::o
Swarm Source
ipfs://6bfd34eedae0ba9160d7f347346c50127adeec87564fad1b39d5a2a1b2975a45