Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3229089 | 41 hrs ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
OpenEditionERC721FlatFee
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.5.4
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; /// @author thirdweb // $$\ $$\ $$\ $$\ $$\ // $$ | $$ | \__| $$ | $$ | // $$$$$$\ $$$$$$$\ $$\ $$$$$$\ $$$$$$$ |$$\ $$\ $$\ $$$$$$\ $$$$$$$\ // \_$$ _| $$ __$$\ $$ |$$ __$$\ $$ __$$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ // $$ | $$ | $$ |$$ |$$ | \__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ | // $$ |$$\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ | // \$$$$ |$$ | $$ |$$ |$$ | \$$$$$$$ |\$$$$$\$$$$ |\$$$$$$$\ $$$$$$$ | // \____/ \__| \__|\__|\__| \_______| \_____\____/ \_______|\_______/ // ========== External imports ========== import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "../../eip/queryable/ERC721AQueryableUpgradeable.sol"; // ========== Internal imports ========== import "../../external-deps/openzeppelin/metatx/ERC2771ContextUpgradeable.sol"; import "../../lib/CurrencyTransferLib.sol"; // ========== Features ========== import "../../extension/Multicall.sol"; import "../../extension/ContractMetadata.sol"; import "../../extension/Royalty.sol"; import "../../extension/PrimarySale.sol"; import "../../extension/Ownable.sol"; import "../../extension/SharedMetadata.sol"; import "../../extension/PermissionsEnumerable.sol"; import "../../extension/Drop.sol"; import "../../extension/PlatformFee.sol"; contract OpenEditionERC721FlatFee is Initializable, ContractMetadata, PlatformFee, Royalty, PrimarySale, Ownable, SharedMetadata, PermissionsEnumerable, Drop, ERC2771ContextUpgradeable, Multicall, ERC721AQueryableUpgradeable { using StringsUpgradeable for uint256; /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Only transfers to or from TRANSFER_ROLE holders are valid, when transfers are restricted. bytes32 private transferRole; /// @dev Only MINTER_ROLE holders can update the shared metadata of tokens. bytes32 private minterRole; /// @dev Max bps in the thirdweb system. uint256 private constant MAX_BPS = 10_000; address public constant DEFAULT_FEE_RECIPIENT = 0x1Af20C6B23373350aD464700B5965CE4B0D2aD94; uint16 private constant DEFAULT_FEE_BPS = 100; /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor() initializer {} /// @dev Initializes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _name, string memory _symbol, string memory _contractURI, address[] memory _trustedForwarders, address _saleRecipient, address _royaltyRecipient, uint128 _royaltyBps, uint128 _platformFeeBps, address _platformFeeRecipient ) external initializerERC721A initializer { bytes32 _transferRole = keccak256("TRANSFER_ROLE"); bytes32 _minterRole = keccak256("MINTER_ROLE"); // Initialize inherited contracts, most base-like -> most derived. __ERC2771Context_init(_trustedForwarders); __ERC721A_init(_name, _symbol); _setupContractURI(_contractURI); _setupOwner(_defaultAdmin); _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(_minterRole, _defaultAdmin); _setupRole(_transferRole, _defaultAdmin); _setupRole(_transferRole, address(0)); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; minterRole = _minterRole; } /*/////////////////////////////////////////////////////////////// ERC 165 / 721 / 2981 logic //////////////////////////////////////////////////////////////*/ /// @dev Returns the URI for a given tokenId. function tokenURI( uint256 _tokenId ) public view virtual override(ERC721AUpgradeable, IERC721AUpgradeable) returns (string memory) { if (!_exists(_tokenId)) { revert("!ID"); } return _getURIFromSharedMetadata(_tokenId); } /// @dev See ERC 165 function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721AUpgradeable, IERC165, IERC721AUpgradeable) returns (bool) { return super.supportsInterface(interfaceId) || type(IERC2981Upgradeable).interfaceId == interfaceId; } /// @dev The start token ID for the contract. function _startTokenId() internal pure override returns (uint256) { return 1; } function startTokenId() public pure returns (uint256) { return _startTokenId(); } /*/////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal override { if (_pricePerToken == 0) { require(msg.value == 0, "!Value"); return; } uint256 totalPrice = _quantityToClaim * _pricePerToken; uint256 platformFees; address platformFeeRecipient; uint256 platformFeesTw = (totalPrice * DEFAULT_FEE_BPS) / MAX_BPS; if (getPlatformFeeType() == IPlatformFee.PlatformFeeType.Flat) { (platformFeeRecipient, platformFees) = getFlatPlatformFeeInfo(); } else { (address recipient, uint16 platformFeeBps) = getPlatformFeeInfo(); platformFeeRecipient = recipient; platformFees = ((totalPrice * platformFeeBps) / MAX_BPS); } require(totalPrice >= platformFees + platformFeesTw, "price less than platform fee"); bool validMsgValue; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { validMsgValue = msg.value == totalPrice; } else { validMsgValue = msg.value == 0; } require(validMsgValue, "!V"); address saleRecipient = _primarySaleRecipient == address(0) ? primarySaleRecipient() : _primarySaleRecipient; CurrencyTransferLib.transferCurrency(_currency, _msgSender(), DEFAULT_FEE_RECIPIENT, platformFeesTw); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), platformFeeRecipient, platformFees); CurrencyTransferLib.transferCurrency( _currency, _msgSender(), saleRecipient, totalPrice - platformFees - platformFeesTw ); } /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim( address _to, uint256 _quantityBeingClaimed ) internal override returns (uint256 startTokenId_) { startTokenId_ = _nextTokenId(); _safeMint(_to, _quantityBeingClaimed); } /// @dev Checks whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether owner can be set in the given execution context. function _canSetOwner() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Returns whether the shared metadata of tokens can be set in the given execution context. function _canSetSharedMetadata() internal view virtual override returns (bool) { return hasRole(minterRole, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ /** * Returns the total amount of tokens minted in the contract. */ function totalMinted() external view returns (uint256) { unchecked { return _nextTokenId() - _startTokenId(); } } /// @dev The tokenId of the next NFT that will be minted / lazy minted. function nextTokenIdToMint() external view returns (uint256) { return _nextTokenId(); } /// @dev The next token ID of the NFT that can be claimed. function nextTokenIdToClaim() external view returns (uint256) { return _nextTokenId(); } /// @dev Burns `tokenId`. See {ERC721-_burn}. function burn(uint256 tokenId) external virtual { // note: ERC721AUpgradeable's `_burn(uint256,bool)` internally checks for token approvals. _burn(tokenId, true); } /// @dev See {ERC721-_beforeTokenTransfer}. function _beforeTokenTransfers( address from, address to, uint256 startTokenId_, uint256 quantity ) internal virtual override { super._beforeTokenTransfers(from, to, startTokenId_, quantity); // if transfer is restricted on the contract, we still want to allow burning and minting if (!hasRole(transferRole, address(0)) && from != address(0) && to != address(0)) { if (!hasRole(transferRole, from) && !hasRole(transferRole, to)) { revert("!T"); } } } function _dropMsgSender() internal view virtual override returns (address) { return _msgSender(); } function _msgSenderERC721A() internal view virtual override returns (address) { return _msgSender(); } function _msgSender() internal view virtual override(ERC2771ContextUpgradeable, Multicall) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; import "./math/SignedMathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // 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 IERC165Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMathUpgradeable { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * 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 * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; import "./IERC165.sol"; import "./IERC721.sol"; interface IERC4906 is IERC165 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 { /** * @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); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721AQueryableUpgradeable.sol"; import "./ERC721AUpgradeable.sol"; import "./ERC721A__Initializable.sol"; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryableUpgradeable is ERC721A__Initializable, ERC721AUpgradeable, IERC721AQueryableUpgradeable { function __ERC721AQueryable_init() internal onlyInitializingERC721A { __ERC721AQueryable_init_unchained(); } function __ERC721AQueryable_init_unchained() internal onlyInitializingERC721A {} /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf( uint256 tokenId ) public view virtual override returns (TokenOwnership memory ownership) { unchecked { if (tokenId >= _startTokenId()) { if (tokenId < _nextTokenId()) { // If the `tokenId` is within bounds, // scan backwards for the initialized ownership slot. while (!_ownershipIsInitialized(tokenId)) --tokenId; return _ownershipAt(tokenId); } } } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { return _tokensOfOwnerIn(owner, start, stop); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { uint256 start = _startTokenId(); uint256 stop = _nextTokenId(); uint256[] memory tokenIds; if (start != stop) tokenIds = _tokensOfOwnerIn(owner, start, stop); return tokenIds; } /** * @dev Helper function for returning an array of token IDs owned by `owner`. * * Note that this function is optimized for smaller bytecode size over runtime gas, * since it is meant to be called off-chain. */ function _tokensOfOwnerIn(address owner, uint256 start, uint256 stop) private view returns (uint256[] memory) { unchecked { if (start >= stop) _revert(InvalidQueryRange.selector); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } uint256 stopLimit = _nextTokenId(); // Set `stop = min(stop, stopLimit)`. if (stop >= stopLimit) { stop = stopLimit; } uint256[] memory tokenIds; uint256 tokenIdsMaxLength = balanceOf(owner); bool startLtStop = start < stop; assembly { // Set `tokenIdsMaxLength` to zero if `start` is less than `stop`. tokenIdsMaxLength := mul(tokenIdsMaxLength, startLtStop) } if (tokenIdsMaxLength != 0) { // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (stop - start <= tokenIdsMaxLength) { tokenIdsMaxLength = stop - start; } assembly { // Grab the free memory pointer. tokenIds := mload(0x40) // Allocate one word for the length, and `tokenIdsMaxLength` words // for the data. `shl(5, x)` is equivalent to `mul(32, x)`. mstore(0x40, add(tokenIds, shl(5, add(tokenIdsMaxLength, 1)))) } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), // initialize `currOwnershipAddr`. // `ownership.address` will not be zero, // as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } uint256 tokenIdsIdx; // Use a do-while, which is slightly more efficient for this case, // as the array will at least contain one element. do { ownership = _ownershipAt(start); assembly { switch mload(add(ownership, 0x40)) // if `ownership.burned == false`. case 0 { // if `ownership.addr != address(0)`. // The `addr` already has it's upper 96 bits clearned, // since it is written to memory with regular Solidity. if mload(ownership) { currOwnershipAddr := mload(ownership) } // if `currOwnershipAddr == owner`. // The `shl(96, x)` is to make the comparison agnostic to any // dirty upper 96 bits in `owner`. if iszero(shl(96, xor(currOwnershipAddr, owner))) { tokenIdsIdx := add(tokenIdsIdx, 1) mstore(add(tokenIds, shl(5, tokenIdsIdx)), start) } } // Otherwise, reset `currOwnershipAddr`. // This handles the case of batch burned tokens // (burned bit of first slot set, remaining slots left uninitialized). default { currOwnershipAddr := 0 } start := add(start, 1) } } while (!(start == stop || tokenIdsIdx == tokenIdsMaxLength)); // Store the length of the array. assembly { mstore(tokenIds, tokenIdsIdx) } } return tokenIds; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library ERC721AStorage { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } struct Layout { // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 _currentIndex; // The number of tokens burned. uint256 _burnCounter; // Token name string _name; // Token symbol string _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => ERC721AStorage.TokenApprovalRef) _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) _operatorApprovals; } bytes32 internal constant STORAGE_SLOT = keccak256("ERC721A.contracts.storage.ERC721A"); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721AUpgradeable.sol"; import { ERC721AStorage } from "./ERC721AStorage.sol"; import "./ERC721A__Initializable.sol"; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721ReceiverUpgradeable { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721AUpgradeable is ERC721A__Initializable, IERC721AUpgradeable { using ERC721AStorage for ERC721AStorage.Layout; // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // CONSTRUCTOR // ============================================================= function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializingERC721A { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializingERC721A { ERC721AStorage.layout()._name = name_; ERC721AStorage.layout()._symbol = symbol_; ERC721AStorage.layout()._currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return ERC721AStorage.layout()._currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return ERC721AStorage.layout()._currentIndex - ERC721AStorage.layout()._burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return ERC721AStorage.layout()._currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return ERC721AStorage.layout()._burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return ERC721AStorage.layout()._packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(ERC721AStorage.layout()._packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = ERC721AStorage.layout()._packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); ERC721AStorage.layout()._packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return ERC721AStorage.layout()._name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return ERC721AStorage.layout()._symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ""; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(ERC721AStorage.layout()._packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return ERC721AStorage.layout()._packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (ERC721AStorage.layout()._packedOwnerships[index] == 0) { ERC721AStorage.layout()._packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = ERC721AStorage.layout()._packedOwnerships[tokenId]; // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= ERC721AStorage.layout()._currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = ERC721AStorage.layout()._packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return ERC721AStorage.layout()._tokenApprovals[tokenId].value; } /** * @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) public virtual override { ERC721AStorage.layout()._operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return ERC721AStorage.layout()._operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId < ERC721AStorage.layout()._currentIndex) { uint256 packed; while ((packed = ERC721AStorage.layout()._packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress( uint256 tokenId ) private view returns (uint256 approvedAddressSlot, address approvedAddress) { ERC721AStorage.TokenApprovalRef storage tokenApproval = ERC721AStorage.layout()._tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --ERC721AStorage.layout()._packedAddressData[from]; // Updates: `balance -= 1`. ++ERC721AStorage.layout()._packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom(address from, address to, uint256 tokenId) public payable virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721ReceiverUpgradeable(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (bytes4 retval) { return retval == ERC721A__IERC721ReceiverUpgradeable(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = ERC721AStorage.layout()._currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. ERC721AStorage.layout()._packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); ERC721AStorage.layout()._currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = ERC721AStorage.layout()._currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. ERC721AStorage.layout()._packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); ERC721AStorage.layout()._currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint(address to, uint256 quantity, bytes memory _data) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = ERC721AStorage.layout()._currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // Reentrancy protection. if (ERC721AStorage.layout()._currentIndex != end) _revert(bytes4(0)); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ""); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } ERC721AStorage.layout()._tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. ERC721AStorage.layout()._packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { ERC721AStorage.layout()._burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = ERC721AStorage.layout()._packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); ERC721AStorage.layout()._packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData(address from, address to, uint24 previousExtraData) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData(address from, address to, uint256 prevOwnershipPacked) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable diamond facet contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ import { ERC721A__InitializableStorage } from "./ERC721A__InitializableStorage.sol"; abstract contract ERC721A__Initializable { using ERC721A__InitializableStorage for ERC721A__InitializableStorage.Layout; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializerERC721A() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require( ERC721A__InitializableStorage.layout()._initializing ? _isConstructor() : !ERC721A__InitializableStorage.layout()._initialized, "ERC721A__Initializable: contract is already initialized" ); bool isTopLevelCall = !ERC721A__InitializableStorage.layout()._initializing; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = true; ERC721A__InitializableStorage.layout()._initialized = true; } _; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializingERC721A() { require( ERC721A__InitializableStorage.layout()._initializing, "ERC721A__Initializable: contract is not initializing" ); _; } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base storage for the initialization function for upgradeable diamond facet contracts **/ library ERC721A__InitializableStorage { struct Layout { /* * Indicates that the contract has been initialized. */ bool _initialized; /* * Indicates that the contract is in the process of being initialized. */ bool _initializing; } bytes32 internal constant STORAGE_SLOT = keccak256("ERC721A.contracts.storage.initializable.facet"); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import "./IERC721AUpgradeable.sol"; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryableUpgradeable is IERC721AUpgradeable { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn(address owner, uint256 start, uint256 stop) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721AUpgradeable { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom(address from, address to, uint256 tokenId) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @dev The sender is not authorized to perform the action error ContractMetadataUnauthorized(); /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert ContractMetadataUnauthorized(); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IDrop.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop is IDrop { /// @dev The sender is not authorized to perform the action error DropUnauthorized(); /// @dev Exceeded the max token total supply error DropExceedMaxSupply(); /// @dev No active claim condition error DropNoActiveCondition(); /// @dev Claim condition invalid currency or price error DropClaimInvalidTokenPrice( address expectedCurrency, uint256 expectedPricePerToken, address actualCurrency, uint256 actualExpectedPricePerToken ); /// @dev Claim condition exceeded limit error DropClaimExceedLimit(uint256 expected, uint256 actual); /// @dev Claim condition exceeded max supply error DropClaimExceedMaxSupply(uint256 expected, uint256 actual); /// @dev Claim condition not started yet error DropClaimNotStarted(uint256 expected, uint256 actual); /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev The active conditions for claiming tokens. ClaimConditionList public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(); verifyClaim(activeConditionId, _dropMsgSender(), _quantity, _currency, _pricePerToken, _allowlistProof); // Update contract state. claimCondition.conditions[activeConditionId].supplyClaimed += _quantity; claimCondition.supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. _collectPriceOnClaim(address(0), _quantity, _currency, _pricePerToken); // Mint the relevant tokens to claimer. uint256 startTokenId = _transferTokensOnClaim(_receiver, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, startTokenId, _quantity); _afterClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert DropUnauthorized(); } uint256 existingStartIndex = claimCondition.currentStartId; uint256 existingPhaseCount = claimCondition.count; /** * The mapping `supplyClaimedByWallet` uses a claim condition's UID as a key. * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`, effectively resetting the restrictions on claims expressed * by `supplyClaimedByWallet`. */ uint256 newStartIndex = existingStartIndex; if (_resetClaimEligibility) { newStartIndex = existingStartIndex + existingPhaseCount; } claimCondition.count = _conditions.length; claimCondition.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = claimCondition.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert DropExceedMaxSupply(); } claimCondition.conditions[newStartIndex + i] = _conditions[i]; claimCondition.conditions[newStartIndex + i].supplyClaimed = supplyClaimedAlready; lastConditionStartTimestamp = _conditions[i].startTimestamp; } /** * Gas refunds (as much as possible) * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`. So, we delete claim conditions with UID < `newStartIndex`. * * If `_resetClaimEligibility == false`, and there are more existing claim conditions * than in `_conditions`, we delete the existing claim conditions that don't get replaced * by the conditions in `_conditions`. */ if (_resetClaimEligibility) { for (uint256 i = existingStartIndex; i < newStartIndex; i++) { delete claimCondition.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete claimCondition.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view virtual returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition.conditions[_conditionId]; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; /* * Here `isOverride` implies that if the merkle proof verification fails, * the claimer would claim through open claim limit instead of allowlisted limit. */ if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 supplyClaimedByWallet = claimCondition.supplyClaimedByWallet[_conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert DropClaimInvalidTokenPrice(_currency, _pricePerToken, claimCurrency, claimPrice); } if (_quantity == 0 || (_quantity + supplyClaimedByWallet > claimLimit)) { revert DropClaimExceedLimit(claimLimit, _quantity + supplyClaimedByWallet); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert DropClaimExceedMaxSupply( currentClaimPhase.maxClaimableSupply, currentClaimPhase.supplyClaimed + _quantity ); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert DropClaimNotStarted(currentClaimPhase.startTimestamp, block.timestamp); } } /// @dev At any given moment, returns the uid for the active claim condition. function getActiveClaimConditionId() public view returns (uint256) { for (uint256 i = claimCondition.currentStartId + claimCondition.count; i > claimCondition.currentStartId; i--) { if (block.timestamp >= claimCondition.conditions[i - 1].startTimestamp) { return i - 1; } } revert DropNoActiveCondition(); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById(uint256 _conditionId) external view returns (ClaimCondition memory condition) { condition = claimCondition.conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition.supplyClaimedByWallet[_conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /*/////////////////////////////////////////////////////////////// Virtual functions: to be implemented in derived contract //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim( address _to, uint256 _quantityBeingClaimed ) internal virtual returns (uint256 startTokenId); /// @dev Determine what wallet can update claim conditions function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../lib/Address.sol"; import "./interface/IMulticall.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ contract Multicall is IMulticall { /** * @notice Receives and executes a batch of function calls on this contract. * @dev Receives and executes a batch of function calls on this contract. * * @param data The bytes data that makes up the batch of function calls to execute. * @return results The bytes data that makes up the result of the batch of function calls executed. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); address sender = _msgSender(); bool isForwarder = msg.sender != sender; for (uint256 i = 0; i < data.length; i++) { if (isForwarder) { results[i] = Address.functionDelegateCall(address(this), abi.encodePacked(data[i], sender)); } else { results[i] = Address.functionDelegateCall(address(this), data[i]); } } return results; } /// @notice Returns the sender in the given execution context. function _msgSender() internal view virtual returns (address) { return msg.sender; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IOwnable.sol"; /** * @title Ownable * @notice Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ abstract contract Ownable is IOwnable { /// @dev The sender is not authorized to perform the action error OwnableUnauthorized(); /// @dev Owner of the contract (purpose: OpenSea compatibility) address private _owner; /// @dev Reverts if caller is not the owner. modifier onlyOwner() { if (msg.sender != _owner) { revert OwnableUnauthorized(); } _; } /** * @notice Returns the owner of the contract. */ function owner() public view override returns (address) { return _owner; } /** * @notice Lets an authorized wallet set a new owner for the contract. * @param _newOwner The address to set as the new owner of the contract. */ function setOwner(address _newOwner) external override { if (!_canSetOwner()) { revert OwnableUnauthorized(); } _setupOwner(_newOwner); } /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin. function _setupOwner(address _newOwner) internal { address _prevOwner = _owner; _owner = _newOwner; emit OwnerUpdated(_prevOwner, _newOwner); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPermissions.sol"; import "../lib/Strings.sol"; /** * @title Permissions * @dev This contracts provides extending-contracts with role-based access control mechanisms */ contract Permissions is IPermissions { /// @dev The `account` is missing a role. error PermissionsUnauthorizedAccount(address account, bytes32 neededRole); /// @dev The `account` already is a holder of `role` error PermissionsAlreadyGranted(address account, bytes32 role); /// @dev Invalid priviledge to revoke error PermissionsInvalidPermission(address expected, address actual); /// @dev Map from keccak256 hash of a role => a map from address => whether address has role. mapping(bytes32 => mapping(address => bool)) private _hasRole; /// @dev Map from keccak256 hash of a role to role admin. See {getRoleAdmin}. mapping(bytes32 => bytes32) private _getRoleAdmin; /// @dev Default admin role for all roles. Only accounts with this role can grant/revoke other roles. bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @dev Modifier that checks if an account has the specified role; reverts otherwise. modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @notice Checks whether an account has a particular role. * @dev Returns `true` if `account` has been granted `role`. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _hasRole[role][account]; } /** * @notice Checks whether an account has a particular role; * role restrictions can be swtiched on and off. * * @dev Returns `true` if `account` has been granted `role`. * Role restrictions can be swtiched on and off: * - If address(0) has ROLE, then the ROLE restrictions * don't apply. * - If address(0) does not have ROLE, then the ROLE * restrictions will apply. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRoleWithSwitch(bytes32 role, address account) public view returns (bool) { if (!_hasRole[role][address(0)]) { return _hasRole[role][account]; } return true; } /** * @notice Returns the admin role that controls the specified role. * @dev See {grantRole} and {revokeRole}. * To change a role's admin, use {_setRoleAdmin}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function getRoleAdmin(bytes32 role) external view override returns (bytes32) { return _getRoleAdmin[role]; } /** * @notice Grants a role to an account, if not previously granted. * @dev Caller must have admin role for the `role`. * Emits {RoleGranted Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account to which the role is being granted. */ function grantRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); if (_hasRole[role][account]) { revert PermissionsAlreadyGranted(account, role); } _setupRole(role, account); } /** * @notice Revokes role from an account. * @dev Caller must have admin role for the `role`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function revokeRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); _revokeRole(role, account); } /** * @notice Revokes role from the account. * @dev Caller must have the `role`, with caller being the same as `account`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function renounceRole(bytes32 role, address account) public virtual override { if (msg.sender != account) { revert PermissionsInvalidPermission(msg.sender, account); } _revokeRole(role, account); } /// @dev Sets `adminRole` as `role`'s admin role. function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = _getRoleAdmin[role]; _getRoleAdmin[role] = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /// @dev Sets up `role` for `account` function _setupRole(bytes32 role, address account) internal virtual { _hasRole[role][account] = true; emit RoleGranted(role, account, msg.sender); } /// @dev Revokes `role` from `account` function _revokeRole(bytes32 role, address account) internal virtual { _checkRole(role, account); delete _hasRole[role][account]; emit RoleRevoked(role, account, msg.sender); } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRole(bytes32 role, address account) internal view virtual { if (!_hasRole[role][account]) { revert PermissionsUnauthorizedAccount(account, role); } } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRoleWithSwitch(bytes32 role, address account) internal view virtual { if (!hasRoleWithSwitch(role, account)) { revert PermissionsUnauthorizedAccount(account, role); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPermissionsEnumerable.sol"; import "./Permissions.sol"; /** * @title PermissionsEnumerable * @dev This contracts provides extending-contracts with role-based access control mechanisms. * Also provides interfaces to view all members with a given role, and total count of members. */ contract PermissionsEnumerable is IPermissionsEnumerable, Permissions { /** * @notice A data structure to store data of members for a given role. * * @param index Current index in the list of accounts that have a role. * @param members map from index => address of account that has a role * @param indexOf map from address => index which the account has. */ struct RoleMembers { uint256 index; mapping(uint256 => address) members; mapping(address => uint256) indexOf; } /// @dev map from keccak256 hash of a role to its members' data. See {RoleMembers}. mapping(bytes32 => RoleMembers) private roleMembers; /** * @notice Returns the role-member from a list of members for a role, * at a given index. * @dev Returns `member` who has `role`, at `index` of role-members list. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param index Index in list of current members for the role. * * @return member Address of account that has `role` */ function getRoleMember(bytes32 role, uint256 index) external view override returns (address member) { uint256 currentIndex = roleMembers[role].index; uint256 check; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { if (check == index) { member = roleMembers[role].members[i]; return member; } check += 1; } else if (hasRole(role, address(0)) && i == roleMembers[role].indexOf[address(0)]) { check += 1; } } } /** * @notice Returns total number of accounts that have a role. * @dev Returns `count` of accounts that have `role`. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * * @return count Total number of accounts that have `role` */ function getRoleMemberCount(bytes32 role) external view override returns (uint256 count) { uint256 currentIndex = roleMembers[role].index; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { count += 1; } } if (hasRole(role, address(0))) { count += 1; } } /// @dev Revokes `role` from `account`, and removes `account` from {roleMembers} /// See {_removeMember} function _revokeRole(bytes32 role, address account) internal override { super._revokeRole(role, account); _removeMember(role, account); } /// @dev Grants `role` to `account`, and adds `account` to {roleMembers} /// See {_addMember} function _setupRole(bytes32 role, address account) internal override { super._setupRole(role, account); _addMember(role, account); } /// @dev adds `account` to {roleMembers}, for `role` function _addMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].index; roleMembers[role].index += 1; roleMembers[role].members[idx] = account; roleMembers[role].indexOf[account] = idx; } /// @dev removes `account` from {roleMembers}, for `role` function _removeMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].indexOf[account]; delete roleMembers[role].members[idx]; delete roleMembers[role].indexOf[account]; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPlatformFee.sol"; /** * @title Platform Fee * @notice Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ abstract contract PlatformFee is IPlatformFee { /// @dev The sender is not authorized to perform the action error PlatformFeeUnauthorized(); /// @dev The recipient is invalid error PlatformFeeInvalidRecipient(address recipient); /// @dev The fee bps exceeded the max value error PlatformFeeExceededMaxFeeBps(uint256 max, uint256 actual); /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The % of primary sales collected as platform fees. uint16 private platformFeeBps; /// @dev Fee type variants: percentage fee and flat fee PlatformFeeType private platformFeeType; /// @dev The flat amount collected by the contract as fees on primary sales. uint256 private flatPlatformFee; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /// @dev Returns the platform fee bps and recipient. function getFlatPlatformFeeInfo() public view returns (address, uint256) { return (platformFeeRecipient, flatPlatformFee); } /// @dev Returns the platform fee type. function getPlatformFeeType() public view returns (PlatformFeeType) { return platformFeeType; } /** * @notice Updates the platform fee recipient and bps. * @dev Caller should be authorized to set platform fee info. * See {_canSetPlatformFeeInfo}. * Emits {PlatformFeeInfoUpdated Event}; See {_setupPlatformFeeInfo}. * * @param _platformFeeRecipient Address to be set as new platformFeeRecipient. * @param _platformFeeBps Updated platformFeeBps. */ function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external override { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); } /// @dev Sets the platform fee recipient and bps function _setupPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) internal { if (_platformFeeBps > 10_000) { revert PlatformFeeExceededMaxFeeBps(10_000, _platformFeeBps); } if (_platformFeeRecipient == address(0)) { revert PlatformFeeInvalidRecipient(_platformFeeRecipient); } platformFeeBps = uint16(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @notice Lets a module admin set a flat fee on primary sales. function setFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupFlatPlatformFeeInfo(_platformFeeRecipient, _flatFee); } /// @dev Sets a flat fee on primary sales. function _setupFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) internal { flatPlatformFee = _flatFee; platformFeeRecipient = _platformFeeRecipient; emit FlatPlatformFeeUpdated(_platformFeeRecipient, _flatFee); } /// @notice Lets a module admin set platform fee type. function setPlatformFeeType(PlatformFeeType _feeType) external { if (!_canSetPlatformFeeInfo()) { revert PlatformFeeUnauthorized(); } _setupPlatformFeeType(_feeType); } /// @dev Sets platform fee type. function _setupPlatformFeeType(PlatformFeeType _feeType) internal { platformFeeType = _feeType; emit PlatformFeeTypeUpdated(_feeType); } /// @dev Returns whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The sender is not authorized to perform the action error PrimarySaleUnauthorized(); /// @dev The recipient is invalid error PrimarySaleInvalidRecipient(address recipient); /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert PrimarySaleUnauthorized(); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { if (_saleRecipient == address(0)) { revert PrimarySaleInvalidRecipient(_saleRecipient); } recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IRoyalty.sol"; /** * @title Royalty * @notice Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * @dev The `Royalty` contract is ERC2981 compliant. */ abstract contract Royalty is IRoyalty { /// @dev The sender is not authorized to perform the action error RoyaltyUnauthorized(); /// @dev The recipient is invalid error RoyaltyInvalidRecipient(address recipient); /// @dev The fee bps exceeded the max value error RoyaltyExceededMaxFeeBps(uint256 max, uint256 actual); /// @dev The (default) address that receives all royalty value. address private royaltyRecipient; /// @dev The (default) % of a sale to take as royalty (in basis points). uint16 private royaltyBps; /// @dev Token ID => royalty recipient and bps for token mapping(uint256 => RoyaltyInfo) private royaltyInfoForToken; /** * @notice View royalty info for a given token and sale price. * @dev Returns royalty amount and recipient for `tokenId` and `salePrice`. * @param tokenId The tokenID of the NFT for which to query royalty info. * @param salePrice Sale price of the token. * * @return receiver Address of royalty recipient account. * @return royaltyAmount Royalty amount calculated at current royaltyBps value. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view virtual override returns (address receiver, uint256 royaltyAmount) { (address recipient, uint256 bps) = getRoyaltyInfoForToken(tokenId); receiver = recipient; royaltyAmount = (salePrice * bps) / 10_000; } /** * @notice View royalty info for a given token. * @dev Returns royalty recipient and bps for `_tokenId`. * @param _tokenId The tokenID of the NFT for which to query royalty info. */ function getRoyaltyInfoForToken(uint256 _tokenId) public view override returns (address, uint16) { RoyaltyInfo memory royaltyForToken = royaltyInfoForToken[_tokenId]; return royaltyForToken.recipient == address(0) ? (royaltyRecipient, uint16(royaltyBps)) : (royaltyForToken.recipient, uint16(royaltyForToken.bps)); } /** * @notice Returns the defualt royalty recipient and BPS for this contract's NFTs. */ function getDefaultRoyaltyInfo() external view override returns (address, uint16) { return (royaltyRecipient, uint16(royaltyBps)); } /** * @notice Updates default royalty recipient and bps. * @dev Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {DefaultRoyalty Event}; See {_setupDefaultRoyaltyInfo}. * * @param _royaltyRecipient Address to be set as default royalty recipient. * @param _royaltyBps Updated royalty bps. */ function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external override { if (!_canSetRoyaltyInfo()) { revert RoyaltyUnauthorized(); } _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); } /// @dev Lets a contract admin update the default royalty recipient and bps. function _setupDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) internal { if (_royaltyBps > 10_000) { revert RoyaltyExceededMaxFeeBps(10_000, _royaltyBps); } royaltyRecipient = _royaltyRecipient; royaltyBps = uint16(_royaltyBps); emit DefaultRoyalty(_royaltyRecipient, _royaltyBps); } /** * @notice Updates default royalty recipient and bps for a particular token. * @dev Sets royalty info for `_tokenId`. Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {RoyaltyForToken Event}; See {_setupRoyaltyInfoForToken}. * * @param _recipient Address to be set as royalty recipient for given token Id. * @param _bps Updated royalty bps for the token Id. */ function setRoyaltyInfoForToken(uint256 _tokenId, address _recipient, uint256 _bps) external override { if (!_canSetRoyaltyInfo()) { revert RoyaltyUnauthorized(); } _setupRoyaltyInfoForToken(_tokenId, _recipient, _bps); } /// @dev Lets a contract admin set the royalty recipient and bps for a particular token Id. function _setupRoyaltyInfoForToken(uint256 _tokenId, address _recipient, uint256 _bps) internal { if (_bps > 10_000) { revert RoyaltyExceededMaxFeeBps(10_000, _bps); } royaltyInfoForToken[_tokenId] = RoyaltyInfo({ recipient: _recipient, bps: _bps }); emit RoyaltyForToken(_tokenId, _recipient, _bps); } /// @dev Returns whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.10; /// @author thirdweb import "../lib/NFTMetadataRenderer.sol"; import "./interface/ISharedMetadata.sol"; import "../eip/interface/IERC4906.sol"; abstract contract SharedMetadata is ISharedMetadata, IERC4906 { /// @notice Token metadata information SharedMetadataInfo public sharedMetadata; /// @notice Set shared metadata for NFTs function setSharedMetadata(SharedMetadataInfo calldata _metadata) external virtual { if (!_canSetSharedMetadata()) { revert("Not authorized"); } _setSharedMetadata(_metadata); } /** * @dev Sets shared metadata for NFTs. * @param _metadata common metadata for all tokens */ function _setSharedMetadata(SharedMetadataInfo calldata _metadata) internal { sharedMetadata = SharedMetadataInfo({ name: _metadata.name, description: _metadata.description, imageURI: _metadata.imageURI, animationURI: _metadata.animationURI }); emit BatchMetadataUpdate(0, type(uint256).max); emit SharedMetadataUpdated({ name: _metadata.name, description: _metadata.description, imageURI: _metadata.imageURI, animationURI: _metadata.animationURI }); } /** * @dev Token URI information getter * @param tokenId Token ID to get URI for */ function _getURIFromSharedMetadata(uint256 tokenId) internal view returns (string memory) { SharedMetadataInfo memory info = sharedMetadata; return NFTMetadataRenderer.createMetadataEdition({ name: info.name, description: info.description, imageURI: info.imageURI, animationURI: info.animationURI, tokenOfEdition: tokenId }); } /// @dev Returns whether shared metadata can be set in the given execution context. function _canSetSharedMetadata() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimCondition.sol"; /** * The interface `IClaimConditionMultiPhase` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimConditionMultiPhase is IClaimCondition { /** * @notice The set of all claim conditions, at any given moment. * Claim Phase ID = [currentStartId, currentStartId + length - 1]; * * @param currentStartId The uid for the first claim condition amongst the current set of * claim conditions. The uid for each next claim condition is one * more than the previous claim condition's uid. * * @param count The total number of phases / claim conditions in the list * of claim conditions. * * @param conditions The claim conditions at a given uid. Claim conditions * are ordered in an ascending order by their `startTimestamp`. * * @param supplyClaimedByWallet Map from a claim condition uid and account to supply claimed by account. */ struct ClaimConditionList { uint256 currentStartId; uint256 count; mapping(uint256 => ClaimCondition) conditions; mapping(uint256 => mapping(address => uint256)) supplyClaimedByWallet; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDrop is IClaimConditionMultiPhase { /** * @param proof Proof of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed via `claim`. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 startTokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param phases Claim conditions in ascending order by `startTimestamp`. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. * */ function setClaimConditions(ClaimCondition[] calldata phases, bool resetClaimEligibility) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author thirdweb /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ interface IMulticall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ interface IOwnable { /// @dev Returns the owner of the contract. function owner() external view returns (address); /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external; /// @dev Emitted when a new Owner is set. event OwnerUpdated(address indexed prevOwner, address indexed newOwner); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IPermissions { /** * @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; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IPermissions.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IPermissionsEnumerable is IPermissions { /** * @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 * [forum post](https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296) * 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); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ interface IPlatformFee { /// @dev Fee type variants: percentage fee and flat fee enum PlatformFeeType { Bps, Flat } /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address indexed platformFeeRecipient, uint256 platformFeeBps); /// @dev Emitted when the flat platform fee is updated. event FlatPlatformFeeUpdated(address platformFeeRecipient, uint256 flatFee); /// @dev Emitted when the platform fee type is updated. event PlatformFeeTypeUpdated(PlatformFeeType feeType); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../../eip/interface/IERC2981.sol"; /** * Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * The `Royalty` contract is ERC2981 compliant. */ interface IRoyalty is IERC2981 { struct RoyaltyInfo { address recipient; uint256 bps; } /// @dev Returns the royalty recipient and fee bps. function getDefaultRoyaltyInfo() external view returns (address, uint16); /// @dev Lets a module admin update the royalty bps and recipient. function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external; /// @dev Lets a module admin set the royalty recipient for a particular token Id. function setRoyaltyInfoForToken(uint256 tokenId, address recipient, uint256 bps) external; /// @dev Returns the royalty recipient for a particular token Id. function getRoyaltyInfoForToken(uint256 tokenId) external view returns (address, uint16); /// @dev Emitted when royalty info is updated. event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps); /// @dev Emitted when royalty recipient for tokenId is set event RoyaltyForToken(uint256 indexed tokenId, address indexed royaltyRecipient, uint256 royaltyBps); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.10; /// @author thirdweb interface ISharedMetadata { /// @notice Emitted when shared metadata is lazy minted. event SharedMetadataUpdated(string name, string description, string imageURI, string animationURI); /** * @notice Structure for metadata shared across all tokens * * @param name Shared name of NFT in metadata * @param description Shared description of NFT in metadata * @param imageURI Shared URI of image to render for NFTs * @param animationURI Shared URI of animation to render for NFTs */ struct SharedMetadataInfo { string name; string description; string imageURI; string animationURI; } /** * @notice Set shared metadata for NFTs * @param _metadata common metadata for all tokens */ function setSharedMetadata(SharedMetadataInfo calldata _metadata) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../../eip/interface/IERC20.sol"; import { Address } from "../../../../../lib/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.1; /// @author thirdweb, OpenZeppelin Contracts (v4.9.0) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb // Helper interfaces import { IWETH } from "../infra/interface/IWETH.sol"; import { SafeERC20, IERC20 } from "../external-deps/openzeppelin/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; error CurrencyTransferLibMismatchedValue(uint256 expected, uint256 actual); error CurrencyTransferLibFailedNativeTransfer(address recipient, uint256 value); /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency(address _currency, address _from, address _to, uint256 _amount) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth if (_amount != msg.value) { revert CurrencyTransferLibMismatchedValue(msg.value, _amount); } IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20(address _currency, address _from, address _to, uint256 _amount) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { revert CurrencyTransferLibFailedNativeTransfer(to, value); } } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper(address to, uint256 value, address _nativeTokenWrapper) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author OpenZeppelin, thirdweb library MerkleProof { function verify(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /* solhint-disable quotes */ /// @author thirdweb /// credits: Zora import "./Strings.sol"; import "../external-deps/openzeppelin/utils/Base64.sol"; /// NFT metadata library for rendering metadata associated with editions library NFTMetadataRenderer { /** * @notice Generate edition metadata from storage information as base64-json blob * @dev Combines the media data and metadata * @param name Name of NFT in metadata * @param description Description of NFT in metadata * @param imageURI URI of image to render for edition * @param animationURI URI of animation to render for edition * @param tokenOfEdition Token ID for specific token */ function createMetadataEdition( string memory name, string memory description, string memory imageURI, string memory animationURI, uint256 tokenOfEdition ) internal pure returns (string memory) { string memory _tokenMediaData = tokenMediaData(imageURI, animationURI); bytes memory json = createMetadataJSON(name, description, _tokenMediaData, tokenOfEdition); return encodeMetadataJSON(json); } /** * @param name Name of NFT in metadata * @param description Description of NFT in metadata * @param mediaData Data for media to include in json object * @param tokenOfEdition Token ID for specific token */ function createMetadataJSON( string memory name, string memory description, string memory mediaData, uint256 tokenOfEdition ) internal pure returns (bytes memory) { return abi.encodePacked( '{"name": "', name, " ", Strings.toString(tokenOfEdition), '", "', 'description": "', description, '", "', mediaData, 'properties": {"number": ', Strings.toString(tokenOfEdition), ', "name": "', name, '"}}' ); } /// Encodes the argument json bytes into base64-data uri format /// @param json Raw json to base64 and turn into a data-uri function encodeMetadataJSON(bytes memory json) internal pure returns (string memory) { return string(abi.encodePacked("data:application/json;base64,", Base64.encode(json))); } /// Generates edition metadata from storage information as base64-json blob /// Combines the media data and metadata /// @param imageUrl URL of image to render for edition /// @param animationUrl URL of animation to render for edition function tokenMediaData(string memory imageUrl, string memory animationUrl) internal pure returns (string memory) { bool hasImage = bytes(imageUrl).length > 0; bool hasAnimation = bytes(animationUrl).length > 0; if (hasImage && hasAnimation) { return string(abi.encodePacked('image": "', imageUrl, '", "animation_url": "', animationUrl, '", "')); } if (hasImage) { return string(abi.encodePacked('image": "', imageUrl, '", "')); } if (hasAnimation) { return string(abi.encodePacked('animation_url": "', animationUrl, '", "')); } return ""; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @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); } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x", encoded using 2 hexadecimal digits per byte, /// and the alphabets are capitalized conditionally according to /// https://eips.ethereum.org/EIPS/eip-55 function toHexStringChecksummed(address value) internal pure returns (string memory str) { str = toHexString(value); /// @solidity memory-safe-assembly assembly { let mask := shl(6, div(not(0), 255)) // `0b010000000100000000 ...` let o := add(str, 0x22) let hashed := and(keccak256(o, 40), mul(34, mask)) // `0b10001000 ... ` let t := shl(240, 136) // `0b10001000 << 240` for { let i := 0 } 1 { } { mstore(add(i, i), mul(t, byte(i, hashed))) i := add(i, 1) if eq(i, 20) { break } } mstore(o, xor(mload(o), shr(1, and(mload(0x00), and(mload(o), mask))))) o := add(o, 0x20) mstore(o, xor(mload(o), shr(1, and(mload(0x20), and(mload(o), mask))))) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x" and encoded using 2 hexadecimal digits per byte. function toHexString(address value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(address value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { str := mload(0x40) // Allocate the memory. // We need 0x20 bytes for the trailing zeros padding, 0x20 bytes for the length, // 0x02 bytes for the prefix, and 0x28 bytes for the digits. // The next multiple of 0x20 above (0x20 + 0x20 + 0x02 + 0x28) is 0x80. mstore(0x40, add(str, 0x80)) // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) str := add(str, 2) mstore(str, 40) let o := add(str, 0x20) mstore(add(o, 40), 0) value := shl(96, value) // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let i := 0 } 1 { } { let p := add(o, add(i, i)) let temp := byte(i, value) mstore8(add(p, 1), mload(and(temp, 15))) mstore8(p, mload(shr(4, temp))) i := add(i, 1) if eq(i, 20) { break } } } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexString(bytes memory raw) internal pure returns (string memory str) { str = toHexStringNoPrefix(raw); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(bytes memory raw) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { let length := mload(raw) str := add(mload(0x40), 2) // Skip 2 bytes for the optional prefix. mstore(str, add(length, length)) // Store the length of the output. // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let o := add(str, 0x20) let end := add(raw, length) for { } iszero(eq(raw, end)) { } { raw := add(raw, 1) mstore8(add(o, 1), mload(and(mload(raw), 15))) mstore8(o, mload(and(shr(4, mload(raw)), 15))) o := add(o, 2) } mstore(o, 0) // Zeroize the slot after the string. mstore(0x40, add(o, 0x20)) // Allocate the memory. } } }
{ "compilationTarget": { "contracts/prebuilts/open-edition/OpenEditionERC721FlatFee.sol": "OpenEditionERC721FlatFee" }, "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs" }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMetadataUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"CurrencyTransferLibFailedNativeTransfer","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimExceedMaxSupply","type":"error"},{"inputs":[{"internalType":"address","name":"expectedCurrency","type":"address"},{"internalType":"uint256","name":"expectedPricePerToken","type":"uint256"},{"internalType":"address","name":"actualCurrency","type":"address"},{"internalType":"uint256","name":"actualExpectedPricePerToken","type":"uint256"}],"name":"DropClaimInvalidTokenPrice","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"DropClaimNotStarted","type":"error"},{"inputs":[],"name":"DropExceedMaxSupply","type":"error"},{"inputs":[],"name":"DropNoActiveCondition","type":"error"},{"inputs":[],"name":"DropUnauthorized","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnableUnauthorized","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"PermissionsAlreadyGranted","type":"error"},{"inputs":[{"internalType":"address","name":"expected","type":"address"},{"internalType":"address","name":"actual","type":"address"}],"name":"PermissionsInvalidPermission","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"PermissionsUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"PlatformFeeExceededMaxFeeBps","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PlatformFeeInvalidRecipient","type":"error"},{"inputs":[],"name":"PlatformFeeUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleInvalidRecipient","type":"error"},{"inputs":[],"name":"PrimarySaleUnauthorized","type":"error"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"RoyaltyExceededMaxFeeBps","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"RoyaltyInvalidRecipient","type":"error"},{"inputs":[],"name":"RoyaltyUnauthorized","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition[]","name":"claimConditions","type":"tuple[]"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRoyaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRoyaltyBps","type":"uint256"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"flatFee","type":"uint256"}],"name":"FlatPlatformFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IPlatformFee.PlatformFeeType","name":"feeType","type":"uint8"}],"name":"PlatformFeeTypeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyForToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"description","type":"string"},{"indexed":false,"internalType":"string","name":"imageURI","type":"string"},{"indexed":false,"internalType":"string","name":"animationURI","type":"string"}],"name":"SharedMetadataUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimConditionIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","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":"DEFAULT_FEE_RECIPIENT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721AUpgradeable.TokenOwnership","name":"ownership","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"}],"name":"getClaimConditionById","outputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFlatPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeType","outputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"","type":"uint8"}],"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":"member","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyInfoForToken","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRoleWithSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_saleRecipient","type":"address"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint128","name":"_royaltyBps","type":"uint128"},{"internalType":"uint128","name":"_platformFeeBps","type":"uint128"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","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":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition[]","name":"_conditions","type":"tuple[]"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_flatFee","type":"uint256"}],"name":"setFlatPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"_feeType","type":"uint8"}],"name":"setPlatformFeeType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"setRoyaltyInfoForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"imageURI","type":"string"},{"internalType":"string","name":"animationURI","type":"string"}],"internalType":"struct ISharedMetadata.SharedMetadataInfo","name":"_metadata","type":"tuple"}],"name":"setSharedMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedMetadata","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"imageURI","type":"string"},{"internalType":"string","name":"animationURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000de3830377d5f34db9e9d11647f8a9acd884b4a5a337ffe6bf3fbbced23d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002001b0000000000020000000003010019000000600430027000000cbc034001970003000000310355000200000001035500000cbc0040019d0000008004000039000000400040043f0000000100200190000000670000c13d000000040030008c000000880000413d000000000201043b000000e00220027000000cc70020009c000000ad0000a13d00000cc80020009c000000dc0000a13d00000cc90020009c0000017f0000213d00000cd50020009c000002ba0000213d00000cdb0020009c000004660000213d00000cde0020009c000007790000613d00000cdf0020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001500000001001d000000010010008c000000880000213d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000000010004110000003f0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000a570000613d0000001504000029000000b00140021000000d7a011001970000000202000039000000000302041a00000d7b03300197000000000113019f000000000012041b000000400100043d000000000041043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d02000039000000010300003900000d7c0400004100000dcf0000013d0000000001000416000000000001004b000000880000c13d00000000030004150000001b0330008a0000000503300210000000000100041a0000ff00021001900000008a0000c13d00000000030004150000001a0330008a0000000503300210000000ff001001900000008a0000c13d00000cc30110019700000001011001bf000000000010041b0000000103000039000000000034043500000cbc0040009c00000cbc040080410000004001400210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d0200003900000cc50400004132eb32dc0000040f00000001002001900000016b0000c13d0000000001000019000032ed00010430001500000003001d001300000002001d001400000001001d00000cbd01000041000000000010044300000000010004100000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000000001004b000001700000c13d0000001402000029000000ff0120018f000000010010008c00000015010000290000000501100270000000000100003f000000010100603f000001730000c13d00000dd00120019700000001011001bf000000000010041b000000130000006b0000016b0000c13d000000400400043d0000001401000029000000750000013d00000cf50020009c000000ef0000213d00000d0b0020009c000001f60000a13d00000d0c0020009c000002f50000213d00000d120020009c000004bb0000213d00000d150020009c000009990000613d00000d160020009c000000880000c13d000000c40030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b00000d210020009c000000880000213d0000006404100370000000000404043b00000d210040009c000000880000213d000000a405100370000000000505043b00000d240050009c000000880000213d0000000406500039000000000363004900000d850030009c000000880000213d000000800030008c000000880000413d0000000403100370000000000703043b0000004403100370000000000303043b0000008401100370000000000501043b000000000107001932eb29f50000040f000000000001004b0000000001000039000000010100c03900000bee0000013d00000ce00020009c0000018f0000a13d00000ce10020009c000002b30000213d00000ce70020009c000003ef0000213d00000cea0020009c000005f10000613d00000ceb0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d00000d3501000041000000000101041a000000010110008a000000800010043f00000d2001000041000032ec0001042e00000cf60020009c000002720000a13d00000cf70020009c000003450000213d00000cfd0020009c000004cd0000213d00000d000020009c000009d20000613d00000d010020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000018002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f000001400000043f0000006002000039000001600020043f0000000401100370000000000101043b000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d001500000002001d00000d9b0020009c000019f60000213d000000000101043b00000015030000290000010002300039000000400020043f000000000201041a00000000052304360000000102100039000000000202041a00000000002504350000000202100039000000000202041a000000400630003900000000002604350000000302100039000000000202041a000000600730003900000000002704350000000402100039000000000202041a000000800830003900000000002804350000000502100039000000000202041a000000a00a30003900000000002a0435000000c0093000390000000602100039000000000202041a00000d210220019700000000002904350000000701100039000000000201041a0000000103200190000000010b2002700000007f0bb0618f0000001f00b0008c00000000040000390000000104002039000000000442013f0000000100400190000009860000c13d000f0000000a001d001000000009001d001100000008001d001200000007001d001300000006001d001400000005001d000000400500043d0000000004b50436000000000003004b00000d540000613d000c00000004001d000d0000000b001d000e00000005001d000000000010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d0000000d06000029000000000006004b00000000020000190000000e050000290000000c0700002900000d590000613d000000000101043b00000000020000190000000003270019000000000401041a000000000043043500000001011000390000002002200039000000000062004b000001630000413d00000d590000013d00000020010000390000010000100443000001200000044300000cc601000041000032ec0001042e00000015010000290000000501100270000000000100003f00000cbf01000041000000800010043f0000002001000039000000840010043f0000002e01000039000000a40010043f00000cc001000041000000c40010043f00000cc101000041000000e40010043f00000cc201000041000032ed0001043000000cca0020009c000002e50000213d00000cd00020009c0000048a0000213d00000cd30020009c000007aa0000613d00000cd40020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000001001000039000000000101041a0000000f02000039000000000202041a000004960000013d00000cec0020009c000003600000a13d00000ced0020009c0000045c0000213d00000cf00020009c0000071e0000613d00000cf10020009c000000880000c13d000000640030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001200000002001d00000d210020009c000000880000213d0000004402100370000000000202043b0000002401100370000000000301043b0000000001020019000000000013004b00000cb30000813d000000000201001900000d3501000041000000000101041a000000000012004b0000000002018019001100000002001d000000010030008c000000010300a0390000001201000029000000000001004b00000cf90000613d001400000003001d000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000f00600000003d000000000101043b0000001403000029000000110230006b000017360000a13d000000000101041a00000d2401100198000017360000613d000000000012004b0000000002018019001000000002001d0000000501200210000000400200043d000f00000002001d00000000012100190000002001100039000000400010043f00000d250010009c000019f60000213d0000008002100039000000400020043f000000600210003900000000000204350000004002100039000000000002043500000020021000390000000000020435000000000001043500000d3501000041000000000101041a000000000031004b00000000010000190000131e0000a13d0000001401000029001500000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b000015a50000c13d0000001501000029000000010110008a000001e20000013d00000d170020009c000003cb0000a13d00000d180020009c0000053c0000213d00000d1b0020009c00000b710000613d00000d1c0020009c000000880000c13d000000440030008c000000880000413d0000000402100370000000000202043b001400000002001d00000d210020009c000000880000213d0000002401100370000000000101043b000000000001004b000009950000613d001300000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b000002330000c13d00000d3501000041000000000101041a0000001302000029000000000021004b000009950000a13d001500000002001d0000001501000029000000010110008a001500000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b000002200000613d001500000001001d00000d5c00100198000009950000c13d0000000001000411001200000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000150200002900150d210020019b000000000101043b000000000101041a000000ff001001900000000001000411000002500000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000150010006c000012c80000c13d0000001301000029000000000010043f00000dbc01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000140200002900000d2106200197000000000101043b000000000201041a00000d3b02200197000000000262019f000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000dc8040000410000001505000029000000130700002900000dcf0000013d00000d020020009c000003d60000a13d00000d030020009c0000054c0000213d00000d060020009c00000b950000613d00000d070020009c000000880000c13d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001500000001001d00000d210010009c000000880000213d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000000010004110000029b0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000007760000613d00000024010000390000000201100367000000000201043b000000150100002932eb30b30000040f0000000001000019000032ec0001042e00000ce20020009c0000044c0000213d00000ce50020009c000006630000613d00000ce60020009c000005270000613d000000880000013d00000cd60020009c0000049a0000213d00000cd90020009c000007c50000613d00000cda0020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d00000080020000390000000401100370000000000301043b000000000003004b00000d210000613d00000d3501000041000000000101041a000000000031004b00000d210000a13d001400000003001d001500000003001d000000000030043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b00000cfd0000c13d0000001503000029000000000003004b000000010330008a000002cf0000c13d00000ce10000013d00000ccb0020009c000004a80000213d00000cce0020009c000007ca0000613d00000ccf0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d32eb299a0000040f0000002002000039000000400300043d001500000003001d000000000223043632eb28030000040f00000c130000013d00000d0d0020009c000005230000213d00000d100020009c00000a070000613d00000d110020009c000000880000c13d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001500000002001d0000002401100370000000000101043b001400000001001d00000d210010009c000000880000213d0000001501000029000000000010043f0000000d01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a001300000001001d000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d0000000002000411000000000101043b00000d2102200197001200000002001d000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000dda0000c13d000000400100043d00000024021000390000001303000029000000000032043500000dc402000041000000000021043500000004021000390000001203000029000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d53011001c7000032ed0001043000000cf80020009c0000052f0000213d00000cfb0020009c00000a220000613d00000cfc0020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001200000001001d00000d210010009c000000880000213d00000d3501000041000000000101041a000000000001004b00000cb30000613d001100010010009400000cf50000c13d00000080010000390000006002000039001500000001001d32eb283c0000040f00000c130000013d00000cf20020009c000005570000613d00000cf30020009c000005de0000613d00000cf40020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000402043b00000d240040009c000000880000213d0000002302400039000000000032004b000000880000813d0000000405400039000000000251034f000000000202043b00000d240020009c000019f60000213d0000001f0720003900000dd1077001970000003f0770003900000dd10770019700000d250070009c000019f60000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b000000880000213d0000002003500039000000000331034f00000dd1042001980000001f0520018f000000a001400039000003900000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b0000038c0000c13d000000000005004b0000039d0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411001500000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000003b60000613d000000140100008a00000000011000310000000201100367000000000101043b0015006000100278000000150100002900000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000136b0000c13d000000400100043d00000d960200004100000bdf0000013d00000d1d0020009c000009550000613d00000d1e0020009c000009790000613d00000d1f0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000000601000039000005370000013d00000d080020009c000009690000613d00000d090020009c0000098c0000613d00000d0a0020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b32eb2d6a0000040f0000ffff0220018f000000400300043d0000002004300039000000000024043500000d2101100197000000000013043500000cbc0030009c00000cbc03008041000000400130021000000dbb011001c7000032ec0001042e00000ce80020009c000006be0000613d00000ce90020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b00000d240010009c000000880000213d001500040010003d000000150130006a00000d850010009c000000880000213d000000800010008c000000880000413d0000007801000039000000000101041a001400000001001d0000000001000411001300000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000041c0000613d000000140100008a00000000011000310000000201100367000000000101043b00130060001002780000001401000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000130200002900000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000ed90000c13d000000400100043d000000440210003900000d9003000041000000000032043500000024021000390000000e03000039000000000032043500000cbf02000041000000000021043500000004021000390000002003000039000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d77011001c7000032ed0001043000000ce30020009c000007080000613d00000ce40020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000000401000039000000000101041a00000d2102100197000000800020043f000000a0011002700000ffff0110018f000000a00010043f00000d2301000041000032ec0001042e00000cee0020009c0000073e0000613d00000cef0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d000000800000043f00000d2001000041000032ec0001042e00000cdc0020009c000007d10000613d00000cdd0020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b32eb2e9c0000040f000000003201043400000d2102200197000000400400043d0000000002240436000000000303043300000d2403300197000000000032043500000040021000390000000002020433000000000002004b0000000002000039000000010200c039000000400340003900000000002304350000006001100039000000000101043300000d78011001970000006002400039000000000012043500000cbc0040009c00000cbc04008041000000400140021000000d79011001c7000032ec0001042e00000cd10020009c000007ed0000613d00000cd20020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000000301000039000000000101041a0000000202000039000000000202041a00000d2102200197000000800020043f000000a00010043f00000d2301000041000032ec0001042e00000cd70020009c000008fc0000613d00000cd80020009c000000880000c13d0000000001000416000000000001004b000000880000c13d32eb2f390000040f00000d2101100197000000800010043f0000ffff0120018f000000a00010043f00000d2301000041000032ec0001042e00000ccc0020009c0000093e0000613d00000ccd0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000000201000039000000000101041a000000b001100270000000ff0110018f000000010010008c00000ba80000a13d00000d8301000041000000000010043f0000002101000039000000040010043f00000d5801000041000032ed0001043000000d130020009c00000a5a0000613d00000d140020009c000000880000c13d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b000000000010043f0000000d01000039000000200010043f0000004002000039000000000100001932eb32c70000040f0000052b0000013d00000cfe0020009c00000a5f0000613d00000cff0020009c000000880000c13d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001100000002001d00000d240020009c000000880000213d00000011020000290000002302200039000000000032004b000000880000813d00000011020000290000000402200039000000000221034f000000000202043b000a00000002001d00000d240020009c000000880000213d000000110200002900000024042000390000000a020000290000000502200210001500000004001d000700000002001d0000000002420019000000000032004b000000880000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000600000002001d000000000012004b000000880000c13d0000000001000411001400000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000050e0000613d000000140100008a00000000011000310000000201100367000000000101043b0014006000100278000000140100002900000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000136f0000c13d000000400100043d00000db80200004100000bdf0000013d00000d0e0020009c00000a6a0000613d00000d0f0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d00000d3501000041000000000101041a000000800010043f00000d2001000041000032ec0001042e00000cf90020009c00000a7b0000613d00000cfa0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d0000000701000039000000000101041a00000d2101100197000000800010043f00000d2001000041000032ec0001042e00000d190020009c00000bab0000613d00000d1a0020009c000000880000c13d0000000001000416000000000001004b000000880000c13d00000dc001000041000000000101041a00000dd20110016700000d3502000041000000000202041a0000000001120019000000800010043f00000d2001000041000032ec0001042e00000d040020009c00000be50000613d00000d050020009c000000880000c13d0000000001000416000000000001004b000000880000c13d00000d9f01000041000000800010043f00000d2001000041000032ec0001042e000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b001100000002001d0000000401100370000000000101043b001400000001001d000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a001200000001001d000000000001004b000000000100001900000bee0000613d001500000000001d001300000000001d000005820000013d0000001302000029000000110020006c000000000102001900000e8e0000613d001300010010003e00000ce10000613d00000015010000290000000101100039001500000001001d000000120010006c00000dd80000813d0000001401000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a00000d2100100198000005770000c13d0000001401000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000057d0000613d0000001401000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f0000000201100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000150010006b00000013010000290000057b0000613d0000057d0000013d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000000401100370000000000101043b000000000010043f0000000c01000039000000200010043f0000004002000039000000000100001932eb32c70000040f0000094e0000013d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039001400000002001d000000000012004b000000880000c13d0000000001000411001300000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000000010004110000061b0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d9101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000014022001af000000000021041b0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000006500000613d000000140100008a00000000011000310000000201100367000000000101043b0013006000100278000000400100043d0000001402000029000000000021043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c7000000130200002900000d21052001970000800d02000039000000030300003900000d9204000041000000150600002900000dcf0000013d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001300000002001d00000d240020009c000000880000213d00000013020000290000002302200039000000000032004b000000880000813d00000013020000290000000402200039000000000121034f000000000101043b001200000001001d00000d240010009c000000880000213d00000013010000290000002404100039000000120100002900000005011002100000000002410019000000000032004b000000880000213d0000003f0210003900000d260220019700000d250020009c000019f60000213d001000000004001d0000008002200039000000400020043f0000001202000029000000800020043f000000000002004b000006910000613d00000060020000390000000003000019000000a00430003900000000002404350000002003300039000000000013004b0000068c0000413d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000100a000029000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000006a90000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000120000006b000010510000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000007340019000000000002004b000013010000c13d000000000217004900000cbc0020009c00000cbc02008041000000600220021000000cbc0010009c00000cbc010080410000004001100210000000000112019f000032ec0001042e000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000d9e0000c13d0000001401000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000039000000010100c039000000010110018f00000bee0000013d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000000401100370000000000101043b000000000010043f0000001201000039000000200010043f0000004002000039000000000100001932eb32c70000040f000000150200002932eb29e50000040f000000000101041a00000bee0000013d0000000001000416000000000001004b000000880000c13d00000d3101000041000000000201041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000009860000c13d000000800010043f000000000003004b00000c070000613d00000d3102000041000000000020043f000000000001004b000000000200001900000c0c0000613d00000d33030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000007360000413d00000c0c0000013d000000640030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001500000002001d0000002402100370000000000202043b001400000002001d00000d210020009c000000880000213d0000004401100370000000000101043b001300000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000007650000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000da10000c13d000000400100043d00000dba0200004100000bdf0000013d0000000001000416000000000001004b000000880000c13d32eb28b20000040f001100000001001d32eb28ec0000040f001200000001001d32eb29260000040f001300000001001d32eb29600000040f0000008002000039000000400300043d001500000003001d0000000002230436001000000002001d001400000001001d0000008002300039000000110100002932eb28030000040f0000000002010019000000150120006a00000010030000290000000000130435000000120100002932eb28030000040f00000000020100190000001503000029000000400130003900000000033200490000000000310435000000130100002932eb28030000040f00000000020100190000001503000029000000600130003900000000033200490000000000310435000000140100002932eb28030000040f0000001502000029000000000121004900000cbc0020009c00000cbc02008041000000400220021000000cbc0010009c00000cbc010080410000006001100210000000000121019f000032ec0001042e000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000000401100370000000000101043b001400000001001d000000000010043f0000000d01000039000000200010043f0000004002000039000000000100001932eb32c70000040f000000000101041a000000000200041132eb2fc70000040f0000001401000029000000150200002932eb2ffa0000040f0000000001000019000032ec0001042e0000000001000416000000000001004b000000880000c13d32eb2efb0000040f00000bee0000013d0000000001000416000000000001004b000000880000c13d0000000101000039000000800010043f00000d2001000041000032ec0001042e000000840030008c000000880000413d0000000402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000002402100370000000000202043b001400000002001d00000d210020009c000000880000213d0000006401100370000000000101043b00000d240010009c000000880000213d0000000401100039000000000203001932eb28680000040f00000044020000390000000202200367000000000302043b00000000040100190000001501000029000000140200002932eb2dab0000040f0000000001000019000032ec0001042e000001440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000002402100370000000000402043b00000d240040009c000000880000213d0000002302400039000000000032004b000000880000813d0000000405400039000000000251034f000000000202043b00000d240020009c000019f60000213d0000001f0620003900000dd1066001970000003f0660003900000dd10660019700000d250060009c000019f60000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000000880000213d0000002004500039000000000541034f00000dd1062001980000001f0720018f000000a0046000390000081c0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000008180000c13d000000000007004b000008290000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000004402100370000000000402043b00000d240040009c000000880000213d0000002302400039000000000032004b000000880000813d0000000405400039000000000251034f000000000202043b00000d240020009c000019f60000213d0000001f0620003900000dd1066001970000003f0660003900000dd106600197000000400700043d0000000006670019001300000007001d000000000076004b0000000007000039000000010700403900000d240060009c000019f60000213d0000000100700190000019f60000c13d0000002404400039000000400060043f00000013060000290000000006260436001200000006001d0000000004420019000000000034004b000000880000213d0000002004500039000000000541034f00000dd1062001980000001f0720018f0000001204600029000008590000613d000000000805034f0000001209000029000000008a08043c0000000009a90436000000000049004b000008550000c13d000000000007004b000008660000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000120220002900000000000204350000006402100370000000000402043b00000d240040009c000000880000213d0000002302400039000000000032004b000000880000813d0000000405400039000000000251034f000000000202043b00000d240020009c000019f60000213d0000001f0620003900000dd1066001970000003f0660003900000dd106600197000000400700043d0000000006670019000f00000007001d000000000076004b0000000007000039000000010700403900000d240060009c000019f60000213d0000000100700190000019f60000c13d0000002404400039000000400060043f0000000f060000290000000006260436000e00000006001d0000000004420019000000000034004b000000880000213d0000002004500039000000000541034f00000dd1062001980000001f0720018f0000000e04600029000008960000613d000000000805034f0000000e09000029000000008a08043c0000000009a90436000000000049004b000008920000c13d000000000007004b000008a30000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e0220002900000000000204350000008402100370000000000202043b00000d240020009c000000880000213d0000002304200039000000000034004b000000880000813d0000000404200039000000000441034f000000000404043b00000d240040009c000019f60000213d00000005054002100000003f0650003900000d2606600197000000400700043d0000000006670019001100000007001d000000000076004b0000000007000039000000010700403900000d240060009c000019f60000213d0000000100700190000019f60000c13d000000400060043f00000011060000290000000006460436001000000006001d00000024022000390000000005250019000000000035004b000000880000213d000000000004004b000008d20000613d0000001103000029000000000421034f000000000404043b00000d210040009c000000880000213d000000200330003900000000004304350000002002200039000000000052004b000008c90000413d000000a402100370000000000202043b000d00000002001d00000d210020009c000000880000213d000000c402100370000000000202043b000c00000002001d00000d210020009c000000880000213d000000e402100370000000000202043b000b00000002001d00000d270020009c000000880000213d0000010402100370000000000202043b000a00000002001d00000d270020009c000000880000213d0000012401100370000000000101043b000900000001001d00000d210010009c000000880000213d0000000001000415000800000001001d00000d2801000041000000000101041a0000ff000010019000001a3d0000c13d000000ff0010019000001add0000c13d001600010000003d00000cc30110019700000101011001bf00000d2802000041000000000012041b0000000001000415000000160110008a000700050010021800001a510000013d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001300000001001d000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a001200000001001d000000000001004b001400000000001d00000cb70000c13d0000001301000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000009360000613d0000001401000029001400010010003e00000ce10000613d000000400100043d0000001402000029000000000021043500000cbc0010009c00000cbc01008041000000400110021000000d22011001c7000032ec0001042e000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b00000d210020009c000000880000213d0000002401100370000000000101043b001500000001001d00000d210010009c000000880000213d000000000102001932eb29d40000040f000000150200002932eb29e50000040f000000000101041a000000ff001001900000000001000039000000010100c03900000bee0000013d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000201043b00000da900200198000000880000c13d000000010100003900000daa0220019700000dcb0020009c00000ce70000213d00000dce0020009c00000ba80000613d00000dcf0020009c000000000100c019000000800010043f00000d2001000041000032ec0001042e000000000103001932eb282a0000040f001500000001001d001400000002001d001300000003001d000000400100043d001200000001001d32eb284b0000040f0000001204000029000000000004043500000015010000290000001402000029000000130300002932eb2dab0000040f0000000001000019000032ec0001042e0000000001000416000000000001004b000000880000c13d00000d2d01000041000000000201041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000043004b00000bf50000613d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed00010430000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b000000000001004b00000c1d0000c13d00000dc901000041000000000010043f00000d9701000041000032ed00010430000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001500000001001d00000d210010009c000000880000213d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000009ba0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000a570000613d00000024010000390000000201100367000000000201043b000000150100002932eb2f540000040f0000000001000019000032ec0001042e000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001500000001001d00000d210010009c000000880000213d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000009f30000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000db20000c13d000000400100043d00000db90200004100000bdf0000013d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b32eb2d6a0000040f00000024030000390000000203300367000000000303043b001500000001001d0000ffff0220018f000000000103001932eb2d5c0000040f000027100110011a000000400200043d00000020032000390000000000130435000000150100002900000d2101100197000000000012043500000cbc0020009c00000cbc02008041000000400120021000000dbb011001c7000032ec0001042e000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000402100370000000000202043b001500000002001d00000d210020009c000000880000213d0000002401100370000000000101043b001400000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000000000100041100000a460000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000db60000c13d000000400100043d00000dc50200004100000bdf0000013d000000000103001932eb282a0000040f32eb2bbb0000040f0000000001000019000032ec0001042e000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b00000d210010009c000000880000213d32eb2d930000040f00000bee0000013d000000440030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000002402100370000000000202043b00000d210020009c000000880000213d0000000003000411000000000023004b00000cef0000c13d0000000401100370000000000101043b32eb2ffa0000040f0000000001000019000032ec0001042e000000c40030008c000000880000413d0000000402100370000000000202043b001200000002001d00000d210020009c000000880000213d0000002402100370000000000202043b001000000002001d0000004402100370000000000202043b001100000002001d00000d210020009c000000880000213d0000006402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d00000d240020009c000000880000213d0000000f02000029000d00040020003d0000000d0230006a00000d850020009c000000880000213d000000800020008c000000880000413d000000a402100370000000000402043b00000d240040009c000000880000213d0000002302400039000000000032004b000000880000813d0000000405400039000000000251034f000000000202043b00000d240020009c000019f60000213d0000001f0620003900000dd1066001970000003f0660003900000dd10660019700000d250060009c000019f60000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000000880000213d0000002003500039000000000331034f00000dd1042001980000001f0520018f000000a00140003900000abe0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b00000aba0000c13d000000000005004b00000acb0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000f01000039000000000201041a0000001001000039000000000101041a001300000002001d000000000021001a00000ce10000413d0000001301100029000000130010006c0000173a0000a13d000000010110008a001500000001001d000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a001400000001001d00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000140010006c000000150100002900000ad50000413d0000000001000411000b00000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000a00000001001d00000b100000613d000000140100008a00000000011000310000000201100367000000000101043b000a0060001002780000001501000029000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d000900000002001d00000d9b0020009c000019f60000213d000000000101043b00000009030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000500000004001d00000000002404350000000202100039000000000202041a0000004004300039000400000004001d00000000002404350000000302100039000000000202041a0000006004300039001300000004001d00000000002404350000000402100039000000000202041a0000008004300039000c00000004001d00000000002404350000000502100039000000000202041a000000a004300039000800000004001d0000000000240435000000c0033000390000000602100039000000000202041a00000d2102200197000700000003001d00000000002304350000000701100039000000000201041a000000010320019000000001042002700000007f0440618f001400000004001d0000001f0040008c00000000040000390000000104002039000000000442013f0000000100400190000009860000c13d000000400400043d000600000004001d00000014050000290000000004540436000300000004001d000000000003004b000017f70000613d000000000010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d0000001405000029000000000005004b00000000020000190000000306000029000017fd0000613d000000000101043b00000000020000190000000003260019000000000401041a000000000043043500000001011000390000002002200039000000000052004b00000b690000413d000017fd0000013d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000201043b000000000002004b00000d3c0000613d00000d3501000041000000000101041a000000000021004b00000d3c0000a13d001400000002001d001500000002001d000000000020043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b00000d310000c13d0000001502000029000000000002004b000000010220008a00000b7f0000c13d00000ce10000013d000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b00000d210010009c000000880000213d000000000010043f0000004501000039000000200010043f0000004002000039000000000100001932eb32c70000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000d2001000041000032ec0001042e000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b001500000001001d00000d210010009c000000880000213d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000000000100041100000bcc0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000dd40000c13d000000400100043d00000dc602000041000000000021043500000cbc0010009c00000cbc01008041000000400110021000000d97011001c7000032ed00010430000000240030008c000000880000413d0000000002000416000000000002004b000000880000c13d0000000401100370000000000101043b32eb2f880000040f00000d2101100197000000400200043d000000000012043500000cbc0020009c00000cbc02008041000000400120021000000d22011001c7000032ec0001042e000000800010043f000000000003004b00000c070000613d00000d2d02000041000000000020043f000000000001004b000000000200001900000c0c0000613d00000d2f030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000bff0000413d00000c0c0000013d00000dd002200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003932eb28560000040f000000400100043d001500000001001d000000800200003932eb28150000040f0000001502000029000000000121004900000cbc0010009c00000cbc01008041000000600110021000000cbc0020009c00000cbc020080410000004002200210000000000121019f000032ec0001042e001400000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a000000000002004b00000c470000c13d00000d3501000041000000000101041a0000001402000029000000000021004b000009950000a13d0000000001020019000000010110008a001500000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a000000000002004b000000150100002900000c340000613d00000d5c002001980000001401000029000009950000c13d001500000002001d000000000010043f00000dbc01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b001000000001001d000000000101041a001300000001001d0000000001000411001100000001001d000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000150200002900120d210020019b000000000101043b000000000101041a000000ff00100190000000000100041100000c750000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000120010006c0000123b0000613d000000130010006c0000123b0000613d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000c900000613d000000140100008a00000000011000310000000201100367000000000101043b00110060001002780000001201000029000000000010043f00000d9101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000110200002900000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000123b0000c13d00000dbd01000041000000000010043f00000d9701000041000032ed0001043000000db201000041000000000010043f00000d9701000041000032ed00010430001400000000001d001500000000001d00000cbf0000013d00000015020000290000000102200039001500000002001d000000120020006c000009160000813d0000001301000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a00000d210010019800000cba0000613d0000001401000029001400010010003e00000cba0000c13d00000d8301000041000000000010043f0000001101000039000000040010043f00000d5801000041000032ed0001043000000dcc0020009c00000ba80000613d00000dcd0020009c00000ba80000613d0000000001000019000000800010043f00000d2001000041000032ec0001042e00000dc101000041000000800010043f000000840030043f000000a40020043f00000dc201000041000032ed00010430001000000001001d0000001201000029000000000001004b00000d400000c13d00000db301000041000000000010043f00000d9701000041000032ed00010430000000400200043d00000d5c0010019800000d210000c13d00000d250020009c000019f60000213d0000008003200039000000400030043f0000000805000039000000000405041a000000010640019000000001014002700000007f0110618f0000001f0010008c00000000070000390000000107002039000000000774013f0000000100700190000009860000c13d0000000000130435000000000006004b000013dc0000613d000000000050043f000000000001004b0000000004000019000013e20000613d00000d5d05000041000000a00620003900000000040000190000000007460019000000000805041a000000000087043500000001055000390000002004400039000000000014004b00000d190000413d000013e20000013d000000440120003900000d7603000041000000000031043500000024012000390000000303000039000000000031043500000cbf01000041000000000012043500000004012000390000002003000039000000000031043500000cbc0020009c00000cbc02008041000000400120021000000d77011001c7000032ed0001043000000d5c00100198000000140100002900000d3c0000c13d000000000010043f00000dbc01000041000000200010043f0000004002000039000000000100001932eb32c70000040f000000000101041a00000bed0000013d00000dca01000041000000000010043f00000d9701000041000032ed00010430000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400300043d000000000101043b000000000101041a00000d240110019800000eab0000c13d000000000103001900000060020000390000035d0000013d00000dd001200197000000000014043500000000000b004b000000200200003900000000020060390000003f0220003900000dd10320019700000000040500190000000002530019000000000032004b0000000003000039000000010300403900000d240020009c000019f60000213d0000000100300190000019f60000c13d000000400020043f0000001505000029000000e00350003900000000004304350000002004000039000000400200043d00000000044204360000000005050433000000000054043500000014040000290000000004040433000000400520003900000000004504350000001304000029000000000404043300000060052000390000000000450435000000120400002900000000040404330000008005200039000000000045043500000011040000290000000004040433000000a00520003900000000004504350000000f040000290000000004040433000000c00520003900000000004504350000001004000029000000000404043300000d2104400197000000e005200039000000000045043500000000030304330000010004200039000001000500003900000000005404350000012004200039000000005303043400000000003404350000014004200039000000000003004b00000d980000613d000000000600001900000000074600190000000008650019000000000808043300000000008704350000002006600039000000000036004b00000d910000413d0000001f0530003900000dd10150019700000000034300190000000000030435000001400110003900000c150000013d0000000101000039000000010110018f00000bee0000013d000000400300043d0000001301000029000027110010008c00000e580000413d00000024013000390000001302000029000000000021043500000d5201000041000000000013043500000004013000390000271002000039000000000021043500000cbc0030009c00000cbc03008041000000400130021000000d53011001c7000032ed00010430000000150100002932eb30de0000040f0000000001000019000032ec0001042e00000003010000390000001404000029000000000041041b0000000201000039000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000400100043d00000020021000390000000000420435000000000031043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000010300003900000db40400004132eb32dc0000040f0000000100200190000000880000613d0000000001000019000032ec0001042e000000150100002932eb2f3f0000040f0000000001000019000032ec0001042e000000000100001900000bee0000013d0000001501000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000014590000c13d0000001501000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000015050000290000001406000029000000000700041132eb32dc0000040f0000000100200190000000880000613d0000001501000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a001300000002001d000000010220003a00000ce10000613d000000000021041b0000001501000029000000000010043f0000000e01000039000000200010043f0000004002000039000000000100001932eb32c70000040f0000001302000029000000000020043f0000000101100039000000200010043f0000000001000019000000400200003932eb32c70000040f000000000201041a00000d3b0220019700000014022001af000000000021041b0000001501000029000000000010043f0000000e01000039000000200010043f0000000001000019000000400200003932eb32c70000040f0000000201100039000000140200002932eb29e50000040f0000001302000029000000000021041b0000000001000019000032ec0001042e001200000003001d00000d930030009c000019f60000213d00000012020000290000004001200039000000400010043f000000140100002900000000021204360000001301000029001100000002001d00000000001204350000001501000029000000000010043f0000000501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d0000001202000029000000000202043300000d2102200197000000000101043b000000000301041a00000d3b03300197000000000223019f000000000021041b000000010110003900000011020000290000000002020433000000000021041b000000400100043d0000001302000029000000000021043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d02000039000000030300003900000d94040000410000001505000029000000140600002900000dcf0000013d0000001401000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000020043f0000000101100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b00000d3a0000013d000000110010006b00000000020100190000001102004029001100000002001d0000000501200210000f00000003001d00000000011300190000002001100039000000400010043f00000d250010009c000019f60000213d0000008002100039000000400020043f000000600210003900000000000204350000004002100039000000000002043500000020021000390000000000020435000000000001043500000d3501000041000000000101041a000000020010008c00000000010000190000140b0000413d0000000101000039001500000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b000015d60000c13d0000001501000029000000010110008a00000ec50000013d00000002010003670000001502100360000000000302043b0000000002000031000000150420006a0000001f0540008a00000d7d0650019700000d7d04300197000000000764013f000000000064004b000000000400001900000d7d04004041000000000053004b000000000800001900000d7d0800804100000d7d0070009c000000000408c019000000000004004b000000880000c13d0000001504300029000000000341034f000000000303043b00000d240030009c000000880000213d0000000007320049000000200b40003900000d7d0470019700000d7d08b00197000000000948013f000000000048004b000000000400001900000d7d0400404100000000007b004b000000000700001900000d7d0700204100000d7d0090009c000000000407c019000000000004004b000000880000c13d0000001504000029001400200040003d0000001404100360000000000404043b00000d7d07400197000000000867013f000000000067004b000000000700001900000d7d07004041000000000054004b000000000900001900000d7d0900804100000d7d0080009c000000000709c019000000000007004b000000880000c13d0000001504400029000000000741034f000000000807043b00000d240080009c000000880000213d0000000007820049000000200a40003900000d7d0470019700000d7d09a00197000000000c49013f000000000049004b000000000400001900000d7d0400404100000000007a004b000000000700001900000d7d0700204100000d7d00c0009c000000000407c019000000000004004b000000880000c13d0000001404000029001300200040003d0000001304100360000000000404043b00000d7d07400197000000000967013f000000000067004b000000000700001900000d7d07004041000000000054004b000000000c00001900000d7d0c00804100000d7d0090009c00000000070cc019000000000007004b000000880000c13d0000001507400029000000000471034f000000000404043b00000d240040009c000000880000213d000000000c420049000000200970003900000d7d07c0019700000d7d0d900197000000000e7d013f00000000007d004b000000000700001900000d7d070040410000000000c9004b000000000c00001900000d7d0c00204100000d7d00e0009c00000000070cc019000000000007004b000000880000c13d0000001307000029001200200070003d0000001207100360000000000707043b00000d7d0c700197000000000d6c013f00000000006c004b000000000600001900000d7d06004041000000000057004b000000000500001900000d7d0500804100000d7d00d0009c000000000605c019000000000006004b000000880000c13d0000001506700029000000000561034f000000000505043b00000d240050009c000000880000213d000000000c520049000000200760003900000d7d06c0019700000d7d0d700197000000000e6d013f00000000006d004b000000000600001900000d7d060040410000000000c7004b000000000c00001900000d7d0c00204100000d7d00e0009c00000000060cc019000000000006004b000000880000c13d000000400600043d00000d250060009c000019f60000213d0000001f0c30003900000dd10cc001970000003f0cc0003900000dd10dc00197000000800c6000390000004000c0043f000000000ddc001900000d2400d0009c000019f60000213d0000004000d0043f00000000003c0435000000000db3001900000000002d004b000000880000213d000f000000b1035300000dd10d3001980010001f00300193000000a00b60003900110000000b001d000e0000000d001d000000000ddb001900000f8b0000613d0000000f0e00035f000000110b00002900000000ef0e043c000000000bfb04360000000000db004b00000f870000c13d000000100000006b00000f9a0000613d0000000e0e0000290000000f0be0035f000000100e000029000000030ee00210000000000f0d0433000000000fef01cf000000000fef022f000000000b0b043b000001000ee00089000000000beb022f000000000beb01cf000000000bfb019f0000000000bd0435000000110330002900000000000304350000000003c60436001100000003001d0000001f0380003900000dd1033001970000003f0330003900000dd103300197000000400b00043d00000000033b00190000000000b3004b000000000c000039000000010c00403900000d240030009c000019f60000213d0000000100c00190000019f60000c13d000000400030043f00000000038b0436000000000ca8001900000000002c004b000000880000213d0010000000a10353000f0dd10080019c0000001f0f80018f0000000f0a30002900000fbb0000613d000000100d00035f000000000c03001900000000de0d043c000000000cec04360000000000ac004b00000fb70000c13d00000000000f004b00000fc90000613d0000000f0d000029000000100cd0035f000000030df00210000000000e0a0433000000000ede01cf000000000ede022f000000000c0c043b000001000dd00089000000000cdc022f000000000cdc01cf000000000cec019f0000000000ca04350000000003830019000000000003043500000011030000290000000000b304350000001f0340003900000dd1033001970000003f0330003900000dd103300197000000400800043d0000000003380019000000000083004b000000000a000039000000010a00403900000d240030009c000019f60000213d0000000100a00190000019f60000c13d000000400030043f000000000a4804360000000003940019000000000023004b000000880000213d000000000b91034f00000dd10c4001980000001f0d40018f0000000009ca001900000fea0000613d00000000030b034f000000000e0a0019000000003f03043c000000000efe043600000000009e004b00000fe60000c13d00000000000d004b00000ff70000613d0000000003cb034f000000030bd00210000000000c090433000000000cbc01cf000000000cbc022f000000000303043b000001000bb000890000000003b3022f0000000003b301cf0000000003c3019f000000000039043500000000034a00190000000000030435000000400460003900000000008404350000001f0350003900000dd1033001970000003f0330003900000dd103300197000000400800043d0000000003380019000000000083004b0000000009000039000000010900403900000d240030009c000019f60000213d0000000100900190000019f60000c13d000000400030043f00000000095804360000000003750019000000000023004b000000880000213d000000000271034f00000dd1075001980000001f0a50018f0000000001790019000010180000613d000000000302034f000000000b090019000000003c03043c000000000bcb043600000000001b004b000010140000c13d00000000000a004b000010250000613d000000000272034f0000000303a00210000000000701043300000000073701cf000000000737022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000272019f000000000021043500000000015900190000000000010435000000600160003900000000008104350000000006060433000000007506043400000d240050009c000019f60000213d0000000802000039000000000302041a000000010030019000000001083002700000007f0880618f0000001f0080008c00000000090000390000000109002039000000000393013f0000000100300190000009860000c13d000000200080008c000010490000413d000000000020043f0000001f03500039000000050330027000000d860930009a000000200050008c00000d5d090040410000001f03800039000000050330027000000d860830009a000000000089004b000010490000813d000000000009041b0000000109900039000000000089004b000010450000413d0000001f0050008c00001ca80000a13d000000000020043f00000dd10950019800001d1c0000c13d000000200800003900000d5d0700004100001d280000013d00110d210010019b000f006000100218000000200b00008a000000000c000410000000000d0000190000000002000031000000130320006a000000050ed002100000000004ae00190000000201000367000000000541034f000000430430008a000000000305043b0000000005000411000000110050006c000010f40000c13d000000000043004b000000000500001900000d7d0500804100000d7d0440019700000d7d06300197000000000746013f000000000046004b000000000400001900000d7d0400404100000d7d0070009c000000000405c019000000000004004b000000880000c13d0000000004a30019000000000341034f000000000303043b00000d240030009c000000880000213d0000000005320049000000200640003900000d7d0450019700000d7d07600197000000000847013f000000000047004b000000000400001900000d7d04004041000000000056004b000000000500001900000d7d0500204100000d7d0080009c000000000405c019000000000004004b000000880000c13d0000001f043000390000000004b4016f0000003f044000390000000005b4016f000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000d240050009c000019f60000213d0000000100700190000019f60000c13d000000400050043f00000000053404360000000007630019000000000027004b000000880000213d000000000261034f0000000006b3017000000000016500190000109e0000613d000000000702034f0000000008050019000000007907043c0000000008980436000000000018004b0000109a0000c13d0000001f07300190000010ab0000613d000000000262034f0000000306700210000000000701043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000021043500000000013500190000000000010435000000400300043d00000d6f0030009c000019f60000213d0000006001300039000000400010043f000000400130003900000d7e020000410000000000210435000000200130003900000d7f02000041000000000021043500000027010000390000000000130435000000000204043300000000010004140000000400c0008c000011d20000c13d0000000101000032000000600f000039000010e80000613d00000d240010009c000019f60000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000d240020009c000019f60000213d0000000100300190000019f60000c13d000000400020043f00000000051f04360000000003b1017000000000023500190000000304000367000010db0000613d000000000604034f000000006706043c0000000005750436000000000025004b000010d70000c13d0000001f01100190000010e80000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b0000122f0000c13d000e0000000f001d00140000000e001d00150000000d001d00000cbd0100004100000000001004430000000401000039000000040010044300000000010004140000121e0000013d000000000043004b000000000500001900000d7d0500804100000d7d0440019700000d7d06300197000000000746013f000000000046004b000000000400001900000d7d0400404100000d7d0070009c000000000405c019000000000004004b000000880000c13d0000000004a30019000000000341034f000000000303043b00000d240030009c000000880000213d0000000005320049000000200240003900000d7d0450019700000d7d06200197000000000746013f000000000046004b000000000400001900000d7d04004041000000000052004b000000000500001900000d7d0500204100000d7d0070009c000000000405c019000000000004004b000000880000c13d000000000521034f0000000006b30170000000400200043d00000020012000390000000004610019000011210000613d000000000705034f0000000008010019000000007907043c0000000008980436000000000048004b0000111d0000c13d0000001f073001900000112e0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000000033100190000000f04000029000000000043043500000000032300490000000c0430008a000000000042043500000033033000390000000003b3016f0000000005230019000000000035004b0000000003000039000000010300403900000d240050009c000019f60000213d0000000100300190000019f60000c13d000000400050043f00000d6f0050009c000019f60000213d0000006003500039000000400030043f000000400350003900000d7e040000410000000000430435000000200350003900000d7f04000041000000000043043500000027030000390000000000350435000000000302043300000000020004140000000400c0008c000011850000c13d0000000101000032000000600f000039000011790000613d00000d240010009c000019f60000213d0000001f021000390000000002b2016f0000003f022000390000000002b2016f000000400f00043d00000000022f00190000000000f2004b0000000003000039000000010300403900000d240020009c000019f60000213d0000000100300190000019f60000c13d000000400020043f00000000051f04360000000003b10170000000000235001900000003040003670000116c0000613d000000000604034f000000006706043c0000000005750436000000000025004b000011680000c13d0000001f01100190000011790000613d000000000334034f0000000301100210000000000402043300000000041401cf000000000414022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000141019f000000000012043500000000010f0433000000000001004b0000122f0000c13d000e0000000f001d00140000000e001d00150000000d001d00000cbd0100004100000000001004430000000401000039000000040010044300000000010004140000121e0000013d000e00000005001d00000cbc0010009c00000cbc01008041000000400110021000000cbc0030009c00000cbc030080410000006003300210000000000113019f00000cbc0020009c00000cbc02008041000000c002200210000000000121019f00000000020c001900150000000d001d00140000000e001d32eb32e60000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010cbc0030019d00000cbc043001980000008003000039000000600f000039000011c70000613d0000001f0340003900000d80033001970000003f0330003900000d8103300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000d240030009c000019f60000213d0000000100500190000019f60000c13d000000400030043f00000000034f043600000d82064001980000000005630019000011ba0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b000011b60000c13d0000001f04400190000011c70000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f04330000000100200190000017420000613d000000000001004b0000122f0000c13d000e0000000f001d00000cbd0100004100000000001004430000000400c0044300000000010004140000121e0000013d000e00000003001d00000cbc0050009c00000cbc05008041000000400350021000000cbc0020009c00000cbc020080410000006002200210000000000232019f00000cbc0010009c00000cbc01008041000000c001100210000000000112019f00000000020c001900150000000d001d00140000000e001d32eb32e60000040f000000140e000029000000150d000029000000000c000410000000200b00008a000000100a00002900030000000103550000000003010019000000600330027000010cbc0030019d00000cbc043001980000008003000039000000600f000039000012140000613d0000001f0340003900000d80033001970000003f0330003900000d8103300197000000400f00043d00000000033f00190000000000f3004b0000000005000039000000010500403900000d240030009c000019f60000213d0000000100500190000019f60000c13d000000400030043f00000000034f043600000d82064001980000000005630019000012070000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000058004b000012030000c13d0000001f04400190000012140000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000000010f04330000000100200190000017420000613d000000000001004b0000122f0000c13d000e0000000f001d00000cbd0100004100000000001004430000000400c00443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000000001004b000000100a000029000000200b00008a000000000c000410000000150d000029000000140e0000290000000e0f000029000017550000613d000000800100043d0000000000d1004b000019780000a13d000000a001e000390000000000f10435000000800100043d0000000000d1004b000019780000a13d000000010dd000390000001200d0006c000010560000413d000006ab0000013d0000007701000039000000000101041a000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000130000006b000012590000613d0000001001000029000000000001041b0000001201000029000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dbe0220009a000000000021041b00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f0000000100200190000025020000613d000000000101043b001300000001001d0000001401000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d0000001302000029000000a00220021000000012022001af00000dbf022001c7000000000101043b000000000021041b000000150100002900000da500100198000012b40000c13d00000014010000290000000101100039001300000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000000001004b000012b40000c13d00000d3501000041000000000101041a000000130010006b000012b40000613d0000001301000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000da70400004100000012050000290000000006000019000000140700002932eb32dc0000040f0000000100200190000000880000613d00000dc001000041000000000201041a0000000102200039000000000021041b0000000001000019000032ec0001042e0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000012de0000613d000000140100008a00000000011000310000000201100367000000000101043b00120060001002780000001501000029000000000010043f00000d9101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000120200002900000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000002530000c13d00000dc701000041000000000010043f00000d9701000041000032ed00010430000000800400003900000000060000190000130c0000013d0000001f0980003900000dd1099001970000000008780019000000000008043500000000077900190000000106600039000000000026004b000006b50000813d0000000008170049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b000013040000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b000013160000413d000013040000013d001500000001001d0000000001000019001300000000001d0000001405000029000013260000013d001500000000001d0000000105500039000000010100003900000001001001900000132d0000613d000000110050006c000017330000613d0000001302000029000000100020006c000017330000613d000000400100043d00000d250010009c000019f60000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435001400000005001d000000000050043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d00000d250020009c0000001405000029000019f60000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000d5c001001980000000004000039000000010400c0390000000000430435000000a00310027000000d24033001970000002004200039000000000034043500000d21011001970000000000120435000013230000c13d000000000001004b00000000020100190000001502006029001500000002001d000000120120014f00000d2100100198000013240000c13d00000013010000290000000101100039001300000001001d00000005011002100000000f011000290000000000510435000013240000013d000000800100003932eb30fd0000040f0000000001000019000032ec0001042e0000001001000039000000000201041a000900000002001d0000000f02000039000000000402041a000000060000006b001200000004001d001400000004001d0000137d0000613d0000001204000029000000090040002a00000ce10000413d0000001204000029001400090040002d0000000a03000029000000000031041b0000001401000029000000000012041b000000000003004b000014620000c13d000000060000006b000016070000c13d00000009020000290000000a0020006c0000001401000029000016580000a13d0000000a03000029000013940000013d0000001202000029000000000002041b000000000401001900000014010000290000001303000029000000000004041b0000000103300039000000090030006c000016580000813d000000000013001a00000ce10000413d001300000003001d0000000001130019000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000704100039000000000104041a000000010010019000000001051002700000007f0550618f0000001f0050008c00000000020000390000000102002039000000000121013f0000000100100190000009860000c13d000000000005004b00000014010000290000001303000029000013910000613d0000001f0050008c000013900000a13d001000000005001d001200000004001d000000000040043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b0000138b0000813d000000000003041b0000000103300039000000000023004b000013d70000413d0000138b0000013d00000dd004400197000000a0052000390000000000450435000000000001004b000000200400003900000000040060390000003f0440003900000dd1054001970000000004350019000000000054004b0000000005000039000000010500403900000d240040009c000019f60000213d0000000100500190000019f60000c13d000000400040043f00000000043204360000000908000039000000000708041a000000010970019000000001057002700000007f0550618f0000001f0050008c00000000030000390000000103002039000000000337013f0000000100300190000009860000c13d000000400300043d0000000006530436000000000009004b000017050000613d000000000080043f000000000005004b00000000070000190000170a0000613d00000d5e0800004100000000070000190000000009760019000000000a08041a0000000000a9043500000001088000390000002007700039000000000057004b000014030000413d0000170a0000013d001400000001001d00000000010000190000000105000039001300000000001d000014130000013d001400000000001d0000000105500039000000010100003900000001001001900000141a0000613d000000100050006c0000173d0000613d0000001302000029000000110020006c0000173d0000613d000000400100043d00000d250010009c000019f60000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435001500000005001d000000000050043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d00000d250020009c0000001505000029000019f60000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000d5c001001980000000004000039000000010400c0390000000000430435000000a00310027000000d24033001970000002004200039000000000034043500000d21011001970000000000120435000014100000c13d000000000001004b00000000020100190000001402006029001400000002001d000000120120014f00000d21001001980000000f02000029000014110000c13d00000013010000290000000101100039001300000001001d000000050110021000000000012100190000000000510435000014110000013d000000400100043d00000024021000390000001503000029000000000032043500000dc3020000410000000000210435000000040210003900000014030000290000033f0000013d00000000080000190000000001000019000000000008004b0000000509800210000014800000613d00000015039000290000000202000367000000000332034f000000000303043b00000011040000290000000004400079000001230440008a00000d7d0530019700000d7d06400197000000000765013f000000000065004b000000000500001900000d7d05004041000000000043004b000000000400001900000d7d0400804100000d7d0070009c000000000504c019000000000005004b000000880000c13d0000001503300029000000000232034f000000000202043b000000000021004b000017960000813d001000000009001d0000001401000029000000000018001a00000ce10000413d000e00000008001d0000000001180019001300000001001d000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f00000001002001900000001003000029000000880000613d000d00150030002d00000002020003670000000d03200360000000000303043b00000011040000290000000004400079000001230440008a00000d7d0530019700000d7d06400197000000000765013f000000000065004b000000000500001900000d7d05004041000000000043004b000000000400001900000d7d0400804100000d7d0070009c000000000504c019000000000101043b000000000005004b000000880000c13d0000000201100039000000000401041a0000001501300029001000000001001d000f00200010003d0000000f01200360000000000101043b000c00000004001d000000000014004b000017930000213d0000001301000029000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f00000001002001900000001009000029000000880000613d0000000202000367000000000392034f000000000303043b000000000101043b000000000031041b0000000f05000029000000000352034f000000000303043b0000000104100039000000000034041b0000002003500039000000000332034f000000000303043b0000000204100039000000000034041b0000004003500039000000000332034f000000000303043b0000000304100039000000000034041b0000006003500039000000000332034f000000000303043b0000000404100039000000000034041b0000008003500039000000000332034f000000000303043b0000000504100039000000000034041b000000a003500039000000000432034f000000000404043b00000d210040009c000000880000213d0000000605100039000000000605041a00000d3b06600197000000000446019f000000000045041b0000002003300039000000000432034f000000000300003100000000059300490000001f0550008a000000000404043b00000d7d0640019700000d7d07500197000000000876013f000000000076004b000000000600001900000d7d06004041000000000054004b000000000500001900000d7d0500804100000d7d0080009c000000000605c019000000000006004b000000880000c13d0000000004940019000000000242034f000000000602043b00000d240060009c000000880000213d0000000002630049000000200740003900000d7d0320019700000d7d04700197000000000534013f000000000034004b000000000300001900000d7d03004041000000000027004b000000000200001900000d7d0200204100000d7d0050009c000000000302c019000000000003004b000000880000c13d0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000009860000c13d000000200040008c001000000006001d000b00000003001d000f00000007001d0000153e0000413d000800000004001d000000000030043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000f0700002900000010060000290000000100200190000000880000613d0000001f026000390000000502200270000000200060008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000b030000290000153e0000813d000000000002041b0000000102200039000000000012004b0000153a0000413d000000200060008c000015680000413d000000000030043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000f0700002900000010060000290000000100200190000000880000613d00000dd102600198000000000101043b000015a10000613d000000020400036700000000030000190000000005730019000000000554034f000000000505043b000000000051041b00000001011000390000002003300039000000000023004b000015510000413d000000000062004b000015640000813d0000000302600210000000f80220018f00000dd20220027f00000dd20220016700000000037300190000000203300367000000000303043b000000000223016f000000000021041b000000010160021000000001011001bf0000000b03000029000015740000013d000000000006004b000015730000613d000000030160021000000dd20110027f00000dd2011001670000000202700367000000000202043b000000000112016f0000000102600210000000000121019f000015740000013d0000000001000019000000000013041b0000001301000029000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b00000002011000390000000c02000029000000000021041b00000002010003670000000d02100360000000000202043b00000011030000290000000003300079000001230330008a00000d7d0420019700000d7d05300197000000000654013f000000000054004b000000000400001900000d7d04004041000000000032004b000000000300001900000d7d0300804100000d7d0060009c000000000403c019000000000004004b000000880000c13d0000001502200029000000000121034f000000000101043b0000000e0800002900000001088000390000000a0080006c000014640000413d000013830000013d0000000003000019000000000062004b0000155b0000413d000015640000013d000000400100043d00000d250010009c000019f60000213d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000001501000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d00000d250020009c000019f60000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000d5c001001980000000004000039000000010400c0390000000000430435000000a00310027000000d24033001970000002004200039000000000034043500000d21011001970000000000120435001500000000001d001500000001601d0000131f0000013d000000400100043d00000d250010009c000019f60000213d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000001501000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000400200043d00000d250020009c000019f60000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000d5c001001980000000004000039000000010400c0390000000000430435000000a00310027000000d24033001970000002004200039000000000034043500000d21011001970000000000120435001400000000001d001400000001601d0000140c0000013d00000014010000290000001202000029000016110000013d0000001302000029000000000002041b000000000301001900000014010000290000001202000029000000000003041b0000000102200039000000000012004b000016580000813d001200000002001d000000000020043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000001041b0000000102100039000000000002041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000502100039000000000002041b0000000602100039000000000002041b0000000703100039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000009860000c13d000000000004004b00000014010000290000001202000029000016100000613d0000001f0040008c0000160f0000a13d001000000004001d001300000003001d000000000030043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b00000010020000290000001f02200039000000050220027000000000022100190000000103100039000000000023004b0000160a0000813d000000000003041b0000000103300039000000000023004b000016530000413d0000160a0000013d000000400300043d00000040010000390000000001130436001000000001001d00000040013000390000000a020000290000000000210435001400000003001d0000006003300039000000070d300029000000000002004b0000167a0000c13d000000060100002900000010020000290000000000120435000000140200002900000000012d004900000cbc0010009c00000cbc01008041000000600110021000000cbc0020009c00000cbc020080410000004002200210000000000121019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000121019f00000d39011001c70000800d02000039000000010300003900000db70400004100000dcf0000013d00000002040003670000000002000031000000110120006a001200000002001d0013001f00200092000001230110008a000000000701001900000d7d08100197000000000b000019000000150c0000290000168e0000013d0000001f01e0003900000dd10110019700000000025e00190000000000020435000000000d510019000000200cc00039000000010bb000390000000a00b0006c000016640000813d0000001401d0006a000000600110008a00000000031304360000000001c4034f000000000201043b00000d7d01200197000000000581013f000000000081004b000000000100001900000d7d01004041000000000072004b000000000900001900000d7d0900804100000d7d0050009c000000000109c019000000000001004b000000880000c13d000000150e2000290000000001e4034f000000000101043b00000000011d04360000002002e00039000000000224034f000000000202043b00000000002104350000004001e00039000000000114034f000000000101043b0000004002d0003900000000001204350000006001e00039000000000114034f000000000101043b0000006002d0003900000000001204350000008001e00039000000000114034f000000000101043b0000008002d000390000000000120435000000a001e00039000000000114034f000000a002d00039000000000101043b0000000000120435000000c001e00039000000000214034f000000000202043b00000d210020009c000000880000213d000000c005d0003900000000002504350000001305e000690000002001100039000000000114034f000000000201043b00000d7d0150019700000d7d09200197000000000f19013f000000000019004b000000000100001900000d7d01004041000000000052004b000000000500001900000d7d0500804100000d7d00f0009c000000000105c019000000000001004b000000880000c13d0000000001e20019000000000214034f000000000e02043b00000d2400e0009c000000880000213d00000020021000390000001201e00069000000000012004b000000000500001900000d7d0500204100000d7d0110019700000d7d09200197000000000f19013f000000000019004b000000000100001900000d7d0100404100000d7d00f0009c000000000105c019000000000001004b000000880000c13d000000e001d00039000001000500003900000000005104350000010001d000390000000000e10435000000000124034f00000dd109e001980000012005d00039000000000f950019000016f70000613d000000000201034f000000000d050019000000002602043c000000000d6d04360000000000fd004b000016f30000c13d0000001f02e00190000016850000613d000000000191034f000000030220021000000000060f043300000000062601cf000000000626022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000161019f00000000001f0435000016850000013d00000dd0077001970000000000760435000000000005004b000000200700003900000000070060390000003f0570003900000dd1065001970000000005360019000000000065004b0000000006000039000000010600403900000d240050009c000019f60000213d0000000100600190000019f60000c13d000000400050043f00000000003404350000000a08000039000000000708041a000000010970019000000001057002700000007f0550618f0000001f0050008c00000000030000390000000103002039000000000337013f0000000100300190000009860000c13d000000400300043d0000000006530436000000000009004b000017640000613d000000000080043f000000000005004b0000000007000019000017690000613d00000d5f0800004100000000070000190000000009760019000000000a08041a0000000000a9043500000001088000390000002007700039000000000057004b0000172b0000413d000017690000013d0000000f0100002900000013020000290000000000210435000000400100043d001500000001001d0000000f020000290000035e0000013d000000400100043d00000d980200004100000bdf0000013d0000000f0200002900000013010000290000000000120435000000400100043d0000035d0000013d000000000001004b0000175c0000c13d000000400200043d001500000002001d00000cbf01000041000000000012043500000004012000390000000e0200002932eb28150000040f0000001502000029000000000121004900000cbc0010009c00000cbc01008041000000600110021000000cbc0020009c00000cbc020080410000004002200210000000000121019f000032ed00010430000000400100043d000000440210003900000d8403000041000000000032043500000024021000390000001d03000039000004410000013d00000cbc0030009c00000cbc03008041000000400230021000000cbc0010009c00000cbc010080410000006001100210000000000121019f000032ed0001043000000dd0077001970000000000760435000000000005004b000000200700003900000000070060390000003f0570003900000dd1065001970000000005360019000000000065004b0000000006000039000000010600403900000d240050009c000019f60000213d0000000100600190000019f60000c13d000000400050043f000000400720003900000000003704350000000b09000039000000000809041a000000010a80019000000001038002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000558013f0000000100500190000009860000c13d000000400600043d000000000536043600000000000a004b0000179d0000613d000000000090043f000000000003004b0000000008000019000017a20000613d00000d60090000410000000008000019000000000a850019000000000b09041a0000000000ba043500000001099000390000002008800039000000000038004b0000178b0000413d000017a20000013d000000400100043d00000db60200004100000bdf0000013d000000400100043d000000440210003900000db503000041000000000032043500000024021000390000000203000039000004410000013d00000dd0088001970000000000850435000000000003004b000000200800003900000000080060390000003f0380003900000dd1083001970000000003680019000000000083004b0000000008000039000000010800403900000d240030009c000019f60000213d0000000100800190000019f60000c13d000000400030043f000000600320003900000000006304350000000002020433000000400300043d000000000906043300000000040404330000000008070433000000007a08043400000000000a004b000017df0000613d000000000009004b000017df0000613d000000200930003900000d640a0000410000000000a9043500000029093000390000000008080433000000000008004b000017c80000613d000000000a000019000000000b9a0019000000000ca70019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b000017c10000413d000000000798001900000d6508000041000000000087043500000015077000390000000006060433000000000006004b000017d70000613d00000000080000190000000009780019000000000a850019000000000a0a04330000000000a904350000002008800039000000000068004b000017d00000413d000000000576001900000d6306000041000000000065043500000000053500490000001c0650008a000000000063043500000023055000390000186b0000013d00000000000a004b000018540000613d000000200530003900000d6406000041000000000065043500000029063000390000000005080433000000000005004b000017f00000613d00000000080000190000000009680019000000000a870019000000000a0a04330000000000a904350000002008800039000000000058004b000017e90000413d000000000665001900000d630700004100000000007604350000000d0650003900000000006304350000004c055000390000186b0000013d00000dd00120019700000003020000290000000000120435000000140000006b000000200200003900000000020060390000003f0120003900000dd1021001970000000601200029000000000021004b0000000002000039000000010200403900000d240010009c000019f60000213d0000000100200190000019f60000c13d000000400010043f0000000901000029000000e0011000390000000602000029000000000021043500000008010000290000000001010433000600000001001d00000013010000290000000001010433000300000001001d0000000701000029000000000101043300080d210010019b0000000c010000290000000001010433000700000001001d000000000001004b0000197e0000c13d001300060000002d001400080000002d0000001501000029000000000010043f0000001201000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000000a0200002900000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000110200002900000d2102200197000000140020006b00001a000000c13d00000013040000290000000e0040006c00001a000000c13d000000000101043b000000000101041a0000001001100029000000100000006b000018470000613d000000100010006c00000ce10000413d000000030010006c00001a130000a13d000000400200043d0000002403200039000000000013043500000db001000041000000000012043500000004012000390000000303000029000000000031043500000cbc0020009c00000cbc02008041000000400120021000000d53011001c7000032ed00010430000000000009004b000019f40000613d000000200730003900000d6208000041000000000087043500000031073000390000000006060433000000000006004b000018650000613d00000000080000190000000009780019000000000a850019000000000a0a04330000000000a904350000002008800039000000000068004b0000185e0000413d000000000576001900000d6307000041000000000075043500000015056000390000000000530435000000540560003900000dd1065001970000000005360019000000000065004b0000000006000039000000010600403900000d240050009c000019f60000213d0000000100600190000019f60000c13d000000400050043f000000140700002900000000060000190000000005060019000000010650003a00000ce10000613d000000090070008c0000000a0770011a000018770000213d00000d660050009c000019f60000213d00000dd1055001970000005f0750003900000dd107700197000000400800043d0000000007780019000000000087004b0000000009000039000000010900403900000d240070009c000019f60000213d0000000100900190000019f60000c13d000000400070043f0000000007680436000000200550003900000dd10a5001980000001f0950018f000000000500003100000002055003670000189a0000613d000000000aa70019000000000b05034f000000000c07001900000000bd0b043c000000000cdc04360000000000ac004b000018960000c13d000000000009004b0000001409000029000000000006004b00000ce10000613d000000010660008a000000000a08043300000000006a004b000019780000a13d000000000a760019000000090090008c0000000ab990011a000000f80bb00210000000000c0a043300000d670cc00197000000000bcb019f00000d680bb001c70000000000ba04350000189c0000213d000000140a00002900000000060000190000000009060019000000010690003a00000ce10000613d0000000900a0008c0000000a0aa0011a000018ae0000213d00000d660090009c000019f60000213d00000dd10b9001970000005f09b0003900000dd109900197000000400a00043d00000000099a00190000000000a9004b000000000c000039000000010c00403900000d240090009c000019f60000213d0000000100c00190000019f60000c13d000000400090043f00000000096a0436000000200bb0003900000dd10cb001980000001f0bb0018f000018cf0000613d000000000cc90019000000000d05034f000000000e09001900000000df0d043c000000000efe04360000000000ce004b000018cb0000c13d00000000000b004b000000000006004b00000ce10000613d000000010660008a000000000b0a043300000000006b004b000019780000a13d000000000b960019000000140d0000290000000900d0008c0014000ac0d00122000000f80cc00210000000000d0b043300000d670dd00197000000000cdc019f00000d680cc001c70000000000cb0435000018d00000213d000000400600043d000000200b60003900000d690c0000410000000000cb0435000000200b200039001500000006001d0000002a0d600039000000000c02043300000000000c004b000018f30000613d000000000e000019000000000fde00190000000006be0019000000000606043300000000006f0435000000200ee000390000000000ce004b000018ec0000413d0000000006dc00190000000000060435000000150cc000290000002a06c0003900000d6a0d0000410000000000d604350000002b0dc000390000000008080433000000000008004b000019050000613d000000000e0000190000000006de0019000000000f7e0019000000000f0f04330000000000f60435000000200ee0003900000000008e004b000018fe0000413d0000000006d8001900000000000604350000000006c800190000002b0860003900000d630700004100000000007804350000002f0860003900000d6b0c0000410000000000c804350000003e0860003900000000c4040434000000000004004b0000191a0000613d000000000d00001900000000068d0019000000000edc0019000000000e0e04330000000000e60435000000200dd0003900000000004d004b000019130000413d0000000004840019000000000074043500000004044000390000000073030434000000000003004b000019280000613d00000000080000190000000006480019000000000c870019000000000c0c04330000000000c604350000002008800039000000000038004b000019210000413d000000000343001900000d6c040000410000000000430435000000180330003900000000040a0433000000000004004b000019370000613d000000000700001900000000063700190000000008970019000000000808043300000000008604350000002007700039000000000047004b000019300000413d000000000334001900000d6d0400004100000000004304350000000b033000390000000002020433000000000002004b000019460000613d000000000400001900000000063400190000000007b40019000000000707043300000000007604350000002004400039000000000024004b0000193f0000413d000000000232001900000d6e030000410000000000320435000000150400002900000000024200490000001d0320008a0000000000340435000000220220003900000dd1022001970000000003420019000000000023004b0000000002000039000000010200403900000d240030009c000019f60000213d0000000100200190000019f60000c13d000000400030043f00000015020000290000000002020433000000000002004b00001bcd0000c13d00000d610030009c000019f60000213d0000002001300039000000400010043f000000000400001900000000020300190000000000430435000000400500043d001500000005001d000000200350003900000d750400004100000000004304350000000003020433001400000003001d0000003d0250003932eb27f60000040f00000014030000290000001d02300039000000150100002900000000002104350000003d0230003932eb28560000040f000000400100043d001400000001001d000000150200002932eb28150000040f000000140200002900000c140000013d00000d8301000041000000000010043f0000003201000039000000040010043f00000d5801000041000032ed0001043000000002010003670000000d02100360000000000302043b00000000020000310000000f0420006a000000230440008a00000d7d0540019700000d7d06300197000000000756013f000000000056004b000000000500001900000d7d05004041000000000043004b000000000400001900000d7d0400804100000d7d0070009c000000000504c019000000000005004b000000880000c13d0000000d03300029000000000431034f000000000404043b000f00000004001d00000d240040009c000000880000213d0000000f0400002900000005044002100000000002420049000000200630003900000d7d0320019700000d7d04600197000000000534013f000000000034004b000000000300001900000d7d03004041000c00000006001d000000000026004b000000000200001900000d7d0200204100000d7d0050009c000000000302c019000000000003004b000000880000c13d0000000d02000029000d00600020003d0000000d02100360000000000202043b00000d210020009c000000880000213d0000000d0400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000a02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000d9c0010009c000019f60000213d000000a003100039000000400030043f00000cbc0020009c00000cbc020080410000004002200210000000000101043300000cbc0010009c00000cbc010080410000006001100210000000000121019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000000f0000006b00001aac0000c13d000000070010006c0000181a0000c13d00000002010003670000000102100360000000000202043b000000000002004b00000000030200190000000303006029000300000003001d0000000202100360000000000302043b001300000003001d00000dd20030009c0000181a0000613d0000000d01100360000000000101043b001400000001001d00000d210010009c000000880000213d000000140000006b0000000801006029001400000001601d0000181c0000013d00000d610030009c000019fc0000a13d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000002005300039000000400050043f0000000000030435000018750000013d000000400100043d00000064031000390000001304000029000000000043043500000044031000390000001404000029000000000043043500000024031000390000000e04000029000000000043043500000db10300004100000000003104350000000403100039000000000023043500000cbc0010009c00000cbc01008041000000400110021000000d2b011001c7000032ed0001043000000004010000290000000001010433000000100010002a00000ce10000413d000000100210002900000005010000290000000001010433000000000012004b00001a240000a13d000000400300043d0000002404300039000000000024043500000daf0200004100000000002304350000000402300039000000000012043500000dad0000013d00000009010000290000000001010433001300000001001d00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000130010006b00001b030000a13d000000400200043d0000002403200039000000000013043500000dae010000410000000000120435000000040120003900000013030000290000184e0000013d00000cbd01000041000000000010044300000000010004100000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000000001004b00001add0000c13d0000000001000415000000170110008a0007000500100218001700000000003d000000000100041a0000ffff00100190001400000001001d00001aed0000c13d00000014020000290000ff000020019000000dd00210019700000001022001bf000000000020041b00001bc10000c13d00000dd30120019700000100011001bf000000000010041b00000011010000290000000001010433000000000001004b00001a7f0000613d001400000000001d000000140100002900000005011002100000001001100029000000000101043300000d2101100197000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b0000001402000029001400010020003d00000011010000290000000001010433000000140010006b00001a630000413d00000d2801000041000000000101041a0000ff000010019000001c600000613d000000800100043d00000d240010009c000019f60000213d00000d2d02000041000000000302041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000009860000c13d000000200020008c00001aa30000413d00000d2d03000041000000000030043f0000001f03100039000000050330027000000d2e0330009a000000200010008c00000d2f030040410000001f02200039000000050220027000000d2e0220009a000000000023004b00001aa30000813d000000000003041b0000000103300039000000000023004b00001a9f0000413d0000001f0010008c00001c9d0000a13d00000d2d02000041000000000020043f00000dd10410019800001ccd0000c13d000000200300003900000d2f0200004100001cd90000013d001400000000001d000000000200001900001ac20000013d000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000130200002900000001022001bf000000000101043b00000014040000290000000104400039001400000004001d0000000f0040006c000019dd0000813d0000000103200210000000000002004b00001ac80000613d00000000022300d9000000020020008c00000ce10000c13d001300000003001d000000140200002900000005022002100000000c022000290000000202200367000000000202043b000000000021004b00001aaf0000213d000000000010043f000000200020043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000130200002900001abc0000013d000000400100043d000000640210003900000d29030000410000000000320435000000440210003900000d2a03000041000000000032043500000024021000390000003703000039000000000032043500000cbf02000041000000000021043500000004021000390000002003000039000000000032043500001a0e0000013d00000cbd01000041000000000010044300000000010004100000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000025020000613d0000001402000029000000ff0220018f000000000101043b000000010020008c00001c6a0000c13d000000000001004b00001c6a0000c13d000000000100041a00001a550000013d0000001501000029000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000000201100039000000000201041a000000100020002a00000ce10000413d0000001002200029000000000021041b0000001501000029000000000010043f0000001201000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b001300000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000000000100041100001b3d0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000000010043f0000001301000029000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a000000100020002a00000ce10000413d0000001002200029000000000021041b0000000001000415001300000001001d0000000e0000006b00001cb30000c13d0000000001000416000000000001004b00001d630000c13d0000000001000415000000130110006900000000010000020000000001000415000a00000001001d000000400100043d000d00000001001d00000d610010009c000019f60000213d00000d3501000041000000000101041a000900000001001d0000000d010000290000002002100039000f00000002001d000000400020043f00000000000104350000007701000039000000000101041a000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f0000000100200190000025020000613d000000000101043b001400000001001d0000000901000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000120200002900000d21042001970000001402000029000000a0022002100000001003000029000000010030008c000000000300001900000da503006041000000000223019f000000000242019f000000000101043b000000000021041b001300000004001d000000000040043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000100200002900000da6022000d1000000000101043b000000000301041a0000000002230019000000000021041b000000130000006b000024a60000c13d00000dad01000041000000000010043f00000d9701000041000032ed000104300000ff000010019000001c3b0000c13d000000400100043d000000640210003900000d55030000410000000000320435000000440210003900000d5603000041000000000032043500000024021000390000002b0300003900001ae60000013d00000d6f0030009c000019f60000213d0000006002300039000000400020043f000000400230003900000d70040000410000000000420435000000200230003900000d71040000410000000000420435000000400200003900000000002304350000001502000029000000000202043300000d720020009c00000ce10000213d00000d730020009c000019f60000213d0000000202200039000000030220011a00000002072002100000001f0270003900000dd1042001970000003f0240003900000dd101200197000000400200043d0000000001120019000000000021004b0000000008000039000000010800403900000d240010009c000019f60000213d0000000100800190000019f60000c13d000000400010043f0000000001720436000000000004004b00001bf90000613d00000000044100190000000007010019000000005605043c0000000007670436000000000047004b00001bf50000c13d000000150400002900000000070404330000000005470019000000000045004b000000000401001900001c2f0000a13d0000000103300039000000150700002900000000040100190000000307700039000000000607043300000012086002700000003f0880018f00000000083800190000000008080433000000f808800210000000000904043300000d6709900197000000000889019f00000000008404350000000c086002700000003f0880018f00000000083800190000000008080433000000f8088002100000000109400039000000000a09043300000d670aa0019700000000088a019f000000000089043500000006086002700000003f0880018f00000000083800190000000008080433000000f8088002100000000209400039000000000a09043300000d670aa0019700000000088a019f00000000008904350000003f0660018f00000000063600190000000006060433000000f8066002100000000308400039000000000908043300000d6709900197000000000669019f00000000006804350000000404400039000000000057004b00001c020000413d00000015030000290000000007030433000000033070011a000000020030008c00001d5e0000613d000000010030008c000019630000c13d000000010340008a000000000503043300000d670550019700000d74055001c70000000000530435000000020340008a00001d5f0000013d00000011010000290000000001010433000000000001004b00001c5c0000613d001400000000001d000000140100002900000005011002100000001001100029000000000101043300000d2101100197000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b0000001402000029001400010020003d00000011010000290000000001010433000000140010006b00001c400000413d00000d2801000041000000000101041a0000ff000010019000001c740000c13d000000400100043d000000640210003900000d5a030000410000000000320435000000440210003900000d2a0300004100000000003204350000002402100039000000340300003900001ae60000013d000000400100043d000000640210003900000cc1030000410000000000320435000000440210003900000cc003000041000000000032043500000024021000390000002e0300003900001ae60000013d000000800100043d00000d240010009c000019f60000213d00000d2d02000041000000000302041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000009860000c13d000000200020008c00001c940000413d00000d2d03000041000000000030043f0000001f03100039000000050330027000000d2e0330009a000000200010008c00000d2f030040410000001f02200039000000050220027000000d2e0220009a000000000023004b00001c940000813d000000000003041b0000000103300039000000000023004b00001c900000413d0000001f0010008c00001d110000a13d00000d2d02000041000000000020043f00000dd10410019800001d6a0000c13d000000200300003900000d2f0200004100001d760000013d000000000001004b000000000200001900001ce50000613d000000030210021000000dd20220027f00000dd202200167000000a00300043d000000000223016f0000000101100210000000000212019f00001ce50000013d000000000005004b000000000300001900001cac0000613d0000000003070433000000030650021000000dd20660027f00000dd206600167000000000363016f0000000105500210000000000353019f00001d340000013d0000000e0200002900000010032000b9001100000003001d00000010013000fa000000000021004b00000ce10000c13d000000110000006b000f00000000001d00001cc10000613d0000001101000029000f0064001000cd0000000f011000f9000000640010008c00000ce10000c13d0000000201000039000000000201041a000d00000002001d000000b002200270000000ff0220018f000000020020008c000004b50000813d000000010020008c00001e780000c13d0000000302000039000000000202041a00001e820000013d00000d2f020000410000002003000039000000010540008a000000050550027000000d300550009a00000080063000390000000006060433000000000062041b00000020033000390000000102200039000000000052004b00001cd20000c13d000000000014004b00001ce30000813d0000000304100210000000f80440018f00000dd20440027f00000dd20440016700000080033000390000000003030433000000000343016f000000000032041b000000010110021000000001021001bf00000d2d01000041000000000021041b0000001301000029000000000101043300000d240010009c000019f60000213d00000d3102000041000000000302041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000009860000c13d000000200020008c00001d080000413d00000d3103000041000000000030043f0000001f03100039000000050330027000000d320330009a000000200010008c00000d33030040410000001f02200039000000050220027000000d320220009a000000000023004b00001d080000813d000000000003041b0000000103300039000000000023004b00001d040000413d000000200010008c00001dae0000413d00000d3102000041000000000020043f00000dd10410019800001dc50000c13d000000200300003900000d330200004100001dd10000013d000000000001004b000000000200001900001d820000613d000000030210021000000dd20220027f00000dd202200167000000a00300043d000000000223016f0000000101100210000000000212019f00001d820000013d00000d5d070000410000002008000039000000010390008a000000050330027000000d870a30009a00000000036800190000000003030433000000000037041b000000200880003900000001077000390000000000a7004b00001d210000c13d000000000059004b00001d320000813d0000000303500210000000f80330018f00000dd20330027f00000dd20330016700000000066800190000000006060433000000000336016f000000000037041b000000010350021000000001033001bf000000000032041b00000011020000290000000005020433000000006305043400000d240030009c000019f60000213d0000000902000039000000000802041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f0000000100800190000009860000c13d000000200070008c00001d560000413d000000000020043f0000001f08300039000000050880027000000d880880009a000000200030008c00000d5e080040410000001f07700039000000050770027000000d880770009a000000000078004b00001d560000813d000000000008041b0000000108800039000000000078004b00001d520000413d000000200030008c00001dba0000413d000000000020043f00000dd10830019800001e370000c13d000000200700003900000d5e0600004100001e430000013d000000010340008a000000000403043300000d670440019700000d74044001c7000019620000013d000000400100043d000000440210003900000da403000041000000000032043500000024021000390000000603000039000004410000013d00000d2f020000410000002003000039000000010540008a000000050550027000000d300550009a00000080063000390000000006060433000000000062041b00000020033000390000000102200039000000000052004b00001d6f0000c13d000000000014004b00001d800000813d0000000304100210000000f80440018f00000dd20440027f00000dd20440016700000080033000390000000003030433000000000343016f000000000032041b000000010110021000000001021001bf00000d2d01000041000000000021041b0000001301000029000000000101043300000d240010009c000019f60000213d00000d3102000041000000000302041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000009860000c13d000000200020008c00001da50000413d00000d3103000041000000000030043f0000001f03100039000000050330027000000d320330009a000000200010008c00000d33030040410000001f02200039000000050220027000000d320220009a000000000023004b00001da50000813d000000000003041b0000000103300039000000000023004b00001da10000413d000000200010008c00001dfe0000413d00000d3102000041000000000020043f00000dd10410019800001e930000c13d000000200300003900000d330200004100001e9f0000013d000000000001004b000000000200001900001ddd0000613d000000030210021000000dd20220027f00000dd20220016700000012030000290000000003030433000000000223016f0000000101100210000000000212019f00001ddd0000013d000000000003004b000000000500001900001e4f0000613d000000030530021000000dd20550027f00000dd2055001670000000006060433000000000556016f0000000103300210000000000535019f00001e4f0000013d00000d33020000410000002003000039000000010540008a000000050550027000000d340550009a00000013063000290000000006060433000000000062041b00000020033000390000000102200039000000000052004b00001dca0000c13d000000000014004b00001ddb0000813d0000000304100210000000f80440018f00000dd20440027f00000dd20440016700000013033000290000000003030433000000000343016f000000000032041b000000010110021000000001021001bf00000d3101000041000000000021041b000000010300003900000d3501000041000000000031041b000000000103041a000000010510019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000221013f0000000100200190000009860000c13d000000400400043d0000000002640436000000000005004b00001e0a0000613d000000000030043f000000000006004b000000000100001900001e0f0000613d00000d360500004100000000010000190000000007120019000000000805041a000000000087043500000001055000390000002001100039000000000061004b00001df60000413d00001e0f0000013d000000000001004b000000000200001900001eab0000613d000000030210021000000dd20220027f00000dd20220016700000012030000290000000003030433000000000223016f0000000101100210000000000212019f00001eab0000013d00000dd0011001970000000000120435000000000006004b000000200100003900000000010060390000003f0110003900000dd1051001970000000001450019000000000051004b0000000005000039000000010500403900000d240010009c000019f60000213d0000000100500190000019f60000c13d000000400010043f0000000f05000029000000000505043300000d240050009c000019f60000213d000000200060008c00001e2f0000413d000000000030043f0000001f07500039000000050770027000000d370770009a000000200050008c00000d36070040410000001f06600039000000050660027000000d370660009a000000000067004b00001e2f0000813d000000000007041b0000000107700039000000000067004b00001e2b0000413d0000001f0050008c00001f110000a13d000000000030043f00000dd10850019800001f9b0000c13d000000200700003900000d360600004100001fa70000013d00000d5e060000410000002007000039000000010980008a000000050990027000000d890990009a000000000a570019000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001e3c0000c13d000000000038004b00001e4d0000813d0000000308300210000000f80880018f00000dd20880027f00000dd20880016700000000055700190000000005050433000000000585016f000000000056041b000000010330021000000001053001bf000000000052041b0000000004040433000000005304043400000d240030009c000019f60000213d0000000a02000039000000000702041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000009860000c13d000000200060008c00001e700000413d000000000020043f0000001f07300039000000050770027000000d8a0770009a000000200030008c00000d5f070040410000001f06600039000000050660027000000d8a0660009a000000000067004b00001e700000813d000000000007041b0000000107700039000000000067004b00001e6c0000413d000000200030008c00001ef90000413d000000000020043f00000dd10730019800001f1d0000c13d000000200600003900000d5f0500004100001f290000013d0000000d02000029000000a0022002700000ffff0320018f00000011023000b9000000110000006b00001e810000613d00000011042000fa000000000034004b00000ce10000c13d000027100220011a000e00000002001d0000000f02000029000027100320011a000c00000003001d0000000e0030002a00000ce10000413d0000000c030000290000000e02300029000000110020006b00001f040000813d000000400100043d000000440210003900000da303000041000000000032043500000024021000390000001c03000039000004410000013d00000d33020000410000002003000039000000010540008a000000050550027000000d340550009a00000013063000290000000006060433000000000062041b00000020033000390000000102200039000000000052004b00001e980000c13d000000000014004b00001ea90000813d0000000304100210000000f80440018f00000dd20440027f00000dd20440016700000013033000290000000003030433000000000343016f000000000032041b000000010110021000000001021001bf00000d3101000041000000000021041b000000010300003900000d3501000041000000000031041b000000000103041a000000010510019000000001061002700000007f0660618f0000001f0060008c00000000020000390000000102002039000000000221013f0000000100200190000009860000c13d000000400400043d0000000002640436000000000005004b00001ecc0000613d000000000030043f000000000006004b000000000100001900001ed10000613d00000d360500004100000000010000190000000007120019000000000805041a000000000087043500000001055000390000002001100039000000000061004b00001ec40000413d00001ed10000013d00000dd0011001970000000000120435000000000006004b000000200100003900000000010060390000003f0110003900000dd1051001970000000001450019000000000051004b0000000005000039000000010500403900000d240010009c000019f60000213d0000000100500190000019f60000c13d000000400010043f0000000f05000029000000000505043300000d240050009c000019f60000213d000000200060008c00001ef10000413d000000000030043f0000001f07500039000000050770027000000d370770009a000000200050008c00000d36070040410000001f06600039000000050660027000000d370660009a000000000067004b00001ef10000813d000000000007041b0000000107700039000000000067004b00001eed0000413d0000001f0050008c0000218d0000a13d000000000030043f00000dd108500198000021a40000c13d000000200700003900000d3606000041000021b00000013d000000000003004b000000000400001900001f350000613d000000030430021000000dd20440027f00000dd2044001670000000005050433000000000445016f0000000103300210000000000434019f00001f350000013d0000000002000416000000140300002900000d9d0030009c00001f5e0000c13d000000110020006c00001f600000613d000000400200043d000000440320003900000d9e0400004100000000004304350000002403200039000000000013043500000d270000013d000000000005004b000000000600001900001fb30000613d000000030650021000000dd20660027f00000dd2066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f00001fb30000013d00000d5f050000410000002006000039000000010870008a000000050880027000000d8b0880009a00000000094600190000000009090433000000000095041b00000020066000390000000105500039000000000085004b00001f220000c13d000000000037004b00001f330000813d0000000307300210000000f80770018f00000dd20770027f00000dd20770016700000000044600190000000004040433000000000474016f000000000045041b000000010330021000000001043001bf000000000042041b0000000003010433000000004203043400000d240020009c000019f60000213d0000000b01000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000009860000c13d000000200050008c00001f560000413d000000000010043f0000001f06200039000000050660027000000d8c0660009a000000200020008c00000d60060040410000001f05500039000000050550027000000d8c0550009a000000000056004b00001f560000813d000000000006041b0000000106600039000000000056004b00001f520000413d000000200020008c000021990000413d000000000010043f00000dd106200198000023360000c13d000000200500003900000d6004000041000023420000013d000000000002004b00001f0a0000c13d0000000601000039000000000101041a000a00000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000000000100041100001f7a0000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000000f02000029000027100020008c0000253a0000413d000000140200002900000d9d0020009c000024900000c13d000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c700008009020000390000000c0300002900000d9f04000041000000000500001932eb32dc0000040f00030000000103550000000003010019000000600330027000010cbc0030019d00000cbc03300198000025030000c13d00000001002001900000253a0000c13d000000400100043d00000024021000390000000c03000029000000000032043500000da2020000410000000000210435000000040210003900000d9f030000410000033f0000013d00000d36060000410000002007000039000000010980008a000000050990027000000d380990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b00001fa00000c13d000000000058004b00001fb10000813d0000000308500210000000f80880018f00000dd20880027f00000dd2088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000063041b000000400300003900000000033104360000004005100039000000000404043300000000004504350000006005100039000000000004004b00001fc40000613d000000000600001900000000075600190000000008620019000000000808043300000000008704350000002006600039000000000046004b00001fbd0000413d000000000254001900000000000204350000001f0240003900000dd1022001970000000002520019000000000412004900000000004304350000000f0300002900000000030304330000000002320436000000000003004b00001fd80000613d000000000400001900000000052400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b00001fd10000413d000000000423001900000000000404350000001f0330003900000dd1033001970000000002120049000000000232001900000cbc0020009c00000cbc02008041000000600220021000000cbc0010009c00000cbc010080410000004001100210000000000112019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c70000800d02000039000000010300003900000d3a0400004132eb32dc0000040f0000000100200190000000880000613d000000150100002900000d21061001970000000701000039000000000201041a00000d3b03200197000000000363019f000000000031041b000000000100041400000d210520019700000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000030300003900000d3c04000041001500000006001d32eb32dc0000040f0000000100200190000000880000613d0000001501000029000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d020000390000000403000039000000000700041100000d3e040000410000000005000019000000150600002932eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d3f01000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4001000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000d4201000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d43050000410000001506000029000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4401000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4601000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000d4701000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d48050000410000001506000029000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4901000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4a01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b000000000000043f00000d4701000041000000200010043f00000d4c01000041000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d48050000410000000006000019000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4901000041000000000201041a001500000002001d000000010220003a00000ce10000613d000000000021041b0000001501000029000000000010043f00000d4a01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b02200197000000000021041b000000000000043f00000d4b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000021041b0000000a0100002900000d2701100197000027110010008c0000232e0000813d000000090200002900000d21052001980000274e0000613d0000000203000039000000000203041a00000d4d02200197000000a00410021000000d4e04400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000cbc0020009c00000cbc020080410000004001200210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d0200003900000d4f0400004132eb32dc0000040f0000000100200190000000880000613d000000400100043d0000000b0200002900000d2702200197000027110020008c000027720000813d0000000406000039000000000306041a00000d4d03300197000000a00420021000000d4e04400197000000000334019f0000000c0400002900000d2105400197000000000353019f000000000036041b000000000021043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d02000039000000020300003900000d500400004132eb32dc0000040f0000000100200190000000880000613d0000000d0100002900000d2105100198000027c40000613d0000000601000039000000000201041a00000d3b02200197000000000252019f000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000020300003900000d510400004132eb32dc0000040f0000000100200190000000880000613d00000d48010000410000007702000039000000000012041b00000d43010000410000007802000039000000000012041b000000000200041a00000dd401200197000000000010041b000000400100043d0000000103000039000000000031043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d0200003900000cc50400004132eb32dc0000040f0000000100200190000027e90000c13d000000880000013d000000000005004b0000000006000019000021bc0000613d000000030650021000000dd20660027f00000dd2066001670000000e070000290000000007070433000000000667016f0000000105500210000000000656019f000021bc0000013d000000000002004b00000000030000190000234e0000613d000000030320021000000dd20330027f00000dd2033001670000000004040433000000000334016f0000000102200210000000000323019f0000234e0000013d00000d36060000410000002007000039000000010980008a000000050990027000000d380990009a0000000f0a700029000000000a0a04330000000000a6041b00000020077000390000000106600039000000000096004b000021a90000c13d000000000058004b000021ba0000813d0000000308500210000000f80880018f00000dd20880027f00000dd2088001670000000f077000290000000007070433000000000787016f000000000076041b000000010550021000000001065001bf000000000063041b000000400300003900000000033104360000004005100039000000000404043300000000004504350000006005100039000000000004004b000021cd0000613d000000000600001900000000075600190000000008620019000000000808043300000000008704350000002006600039000000000046004b000021c60000413d000000000254001900000000000204350000001f0240003900000dd1022001970000000002520019000000000412004900000000004304350000000f0300002900000000030304330000000002320436000000000003004b000021e10000613d000000000400001900000000052400190000000e06400029000000000606043300000000006504350000002004400039000000000034004b000021da0000413d000000000423001900000000000404350000001f0330003900000dd1033001970000000002120049000000000232001900000cbc0020009c00000cbc02008041000000600220021000000cbc0010009c00000cbc010080410000004001100210000000000112019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c70000800d02000039000000010300003900000d3a0400004132eb32dc0000040f0000000100200190000000880000613d000000150100002900000d21061001970000000701000039000000000201041a00000d3b03200197000000000363019f000000000031041b000000000100041400000d210520019700000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000030300003900000d3c04000041001500000006001d32eb32dc0000040f0000000100200190000000880000613d0000001501000029000000000010043f00000d3d01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d020000390000000403000039000000000700041100000d3e040000410000000005000019000000150600002932eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d3f01000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4001000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000d4201000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d43050000410000001506000029000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4401000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4601000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b0000001501000029000000000010043f00000d4701000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d48050000410000001506000029000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4901000041000000000201041a001400000002001d000000010220003a00000ce10000613d000000000021041b0000001401000029000000000010043f00000d4a01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b022001970000001503000029000000000232019f000000000021041b000000000030043f00000d4b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001402000029000000000021041b000000000000043f00000d4701000041000000200010043f00000d4c01000041000000000201041a00000dd00220019700000001022001bf000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000d3e0400004100000d48050000410000000006000019000000000700041132eb32dc0000040f0000000100200190000000880000613d0000000e01000039000000200010043f00000d4901000041000000000201041a001500000002001d000000010220003a00000ce10000613d000000000021041b0000001501000029000000000010043f00000d4a01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000201041a00000d3b02200197000000000021041b000000000000043f00000d4b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b0000001502000029000000000021041b0000000a0100002900000d2701100197000027110010008c0000274b0000413d000000400200043d0000002403200039000000000013043500000d54010000410000000000120435000000040120003900002710030000390000184e0000013d00000d60040000410000002005000039000000010760008a000000050770027000000d8d0770009a00000000083500190000000008080433000000000084041b00000020055000390000000104400039000000000074004b0000233b0000c13d000000000026004b0000234c0000813d0000000306200210000000f80660018f00000dd20660027f00000dd20660016700000000033500190000000003030433000000000363016f000000000034041b000000010220021000000001032001bf000000000031041b000000400100043d0000002002100039000000010300008a0000000000320435000000000001043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000010300003900000d8e0400004132eb32dc0000040f0000000100200190000000880000613d00000002010003670000001502100360000000000302043b0000000004000031000000150240006a0000001f0220008a00000d7d0720019700000d7d05300197000000000675013f000000000075004b000000000500001900000d7d05004041000000000023004b000000000800001900000d7d0800804100000d7d0060009c000000000508c019000000000005004b000000880000c13d0000001503300029000000000531034f000000000605043b00000d240060009c000000880000213d0000000005640049000000200a30003900000d7d0350019700000d7d08a00197000000000938013f000000000038004b000000000300001900000d7d0300404100000000005a004b000000000500001900000d7d0500204100000d7d0090009c000000000305c019000000000003004b000000880000c13d0000001403100360000000000303043b00000d7d05300197000000000875013f000000000075004b000000000500001900000d7d05004041000000000023004b000000000900001900000d7d0900804100000d7d0080009c000000000509c019000000000005004b000000880000c13d0000001503300029000000000531034f000000000505043b00000d240050009c000000880000213d0000000008540049000000200930003900000d7d0380019700000d7d0b900197000000000c3b013f00000000003b004b000000000300001900000d7d03004041000000000089004b000000000800001900000d7d0800204100000d7d00c0009c000000000308c019000000000003004b000000880000c13d0000001303100360000000000303043b00000d7d08300197000000000b78013f000000000078004b000000000800001900000d7d08004041000000000023004b000000000c00001900000d7d0c00804100000d7d00b0009c00000000080cc019000000000008004b000000880000c13d0000001508300029000000000381034f000000000303043b00000d240030009c000000880000213d000000000b340049000000200880003900000d7d0cb0019700000d7d0d800197000000000ecd013f0000000000cd004b000000000c00001900000d7d0c0040410000000000b8004b000000000b00001900000d7d0b00204100000d7d00e0009c000000000c0bc01900000000000c004b000000880000c13d000000120b100360000000000b0b043b00000d7d0cb00197000000000d7c013f00000000007c004b000000000700001900000d7d0700404100000000002b004b000000000200001900000d7d0200804100000d7d00d0009c000000000702c019000000000007004b000000880000c13d0000001507b00029000000000271034f000000000202043b001500000002001d00000d240020009c000000880000213d000000150440006a000000200270003900000d7d0740019700000d7d0b200197000000000c7b013f00000000007b004b000000000700001900000d7d07004041001400000002001d000000000042004b000000000400001900000d7d0400204100000d7d00c0009c000000000704c019000000000007004b000000880000c13d0000000007a1034f000000400400043d000000800a0000390000000002a40436001300000002001d000000800a40003900000000006a043500000dd10e6001980000001f0f60018f000000a00a400039000000000cea0019000024040000613d000000000d07034f000000000b0a001900000000d20d043c000000000b2b04360000000000cb004b000024000000c13d00000000000f004b000024110000613d0000000002e7034f0000000307f00210000000000b0c0433000000000b7b01cf000000000b7b022f000000000202043b0000010007700089000000000272022f00000000027201cf0000000002b2019f00000000002c043500000000026a001900000000000204350000001f0260003900000dd107000041000000000272016f00000000022a00190000000006420049000000130a00002900000000006a0435000000000a91034f0000000006520436000000000b7501700000001f0c50018f0000000009b60019000024260000613d00000000070a034f000000000d060019000000007207043c000000000d2d043600000000009d004b000024220000c13d00000000000c004b000024330000613d0000000002ba034f0000000307c00210000000000a090433000000000a7a01cf000000000a7a022f000000000202043b0000010007700089000000000272022f00000000027201cf0000000002a2019f0000000000290435000000000256001900000000000204350000001f0250003900000dd107000041000000000272016f0000000002260019000000000542004900000040064000390000000000560435000000000881034f000000000532043600000000097301700000001f0a30018f0000000006950019000024480000613d000000000708034f000000000b050019000000007207043c000000000b2b043600000000006b004b000024440000c13d00000000000a004b000024550000613d000000000298034f0000000307a00210000000000806043300000000087801cf000000000878022f000000000202043b0000010007700089000000000272022f00000000027201cf000000000282019f0000000000260435000000000235001900000000000204350000001f0230003900000dd106000041000000000262016f000000000225001900000000034200490000006005400039000000000035043500000014051003600000001503000029000000000132043600000000066301700000001f0730018f00000000036100190000246b0000613d000000000805034f0000000009010019000000008208043c0000000009290436000000000039004b000024670000c13d000000000007004b000024780000613d000000000265034f0000000305700210000000000603043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000023043500000015050000290000001f0250003900000dd102200197000000000351001900000000000304350000000002420049000000000112001900000cbc0010009c00000cbc01008041000000600110021000000cbc0040009c00000cbc040080410000004002400210000000000121019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c70000800d02000039000000010300003900000d8f0400004100000dcf0000013d00000d210310019700000d9f0030009c0000253a0000613d000000400200043d0000004401200039000000240420003900000020052000390000000006000410000000000063004b000025290000c13d00000da103000041000000000035043500000d9f0300004100000000003404350000000c0300002900000000003104350000004401000039000000000012043500000d250020009c000019f60000213d0000008001000039000025360000013d0000000902000029001100100020002d001400000002001d0000000001000019000024ba0000013d000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000da70400004100000000050000190000001306000029000000140700002932eb32dc0000040f00000001002001900000000101000039000000880000613d0000000100100190000024ab0000613d00000014020000290000000102200039001400000002001d000000110020006c000024ab0000c13d00000d35010000410000001102000029000000000021041b00000cbd01000041000000000010044300000012010000290000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000025020000613d000000000101043b000000000001004b000026540000c13d00000000010004150000000a0110006900000000010000020000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff00100190000024ed0000613d000000140100008a00000000011000310000000201100367000000000101043b000b006000100278000000400100043d0000002002100039000000100300002900000000003204350000000902000029000000000021043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d2c011001c70000000b0200002900000d21062001970000800d02000039000000040300003900000dac040000410000026f0000013d000000000001042f0000001f0430003900000d80044001970000003f0440003900000d8104400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000d240040009c000019f60000213d0000000100600190000019f60000c13d000000400040043f0000001f0430018f000000000635043600000d820530019800000000035600190000251b0000613d000000000701034f000000007807043c0000000006860436000000000036004b000025170000c13d000000000004004b00001f900000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500001f900000013d00000da0060000410000000000650435000000000034043500000d9f03000041000000000031043500000064012000390000000c0300002900000000003104350000006401000039000000000012043500000d9c0020009c000019f60000213d000000a0010000390000000001210019000000400010043f000000140100002932eb31b90000040f0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff001001900000000001000411000025510000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000000e0000006b000025a30000c13d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000000010004110000256a0000613d000000140100008a00000000011000310000000201100367000000000101043b00000060011002700000000e0300002900000011023000690011000c0020007400000ce10000413d00001b570000613d0000000a02000029000f0d210020019b000000140200002900000d9d0020009c0000263e0000c13d00000000010004140000000f02000029000000040020008c000026f70000c13d000000010100003200001b570000613d00000d240010009c000019f60000213d0000001f0210003900000dd1022001970000003f0220003900000dd103200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000d240030009c000019f60000213d0000000100400190000019f60000c13d000000400030043f000000000512043600000dd1021001980000001f0310018f00000000012500190000000304000367000025950000613d000000000604034f000000006706043c0000000005750436000000000015004b000025910000c13d000000000003004b00001b570000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500001b570000013d0000000d02000029000f0d210020019b000000140200002900000d9d0020009c000025d70000c13d00000000010004140000000f02000029000000040020008c000025ed0000c13d0000000101000032000025530000613d00000d240010009c000019f60000213d0000001f0210003900000dd1022001970000003f0220003900000dd103200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000d240030009c000019f60000213d0000000100400190000019f60000c13d000000400030043f000000000512043600000dd1021001980000001f0310018f00000000012500190000000304000367000025c90000613d000000000604034f000000006706043c0000000005750436000000000015004b000025c50000c13d000000000003004b000025530000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000025530000013d00000d21011001970000000f0010006c000025530000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b0000262c0000c13d00000da10100004100000000001504350000000f0100002900000000001404350000000e0100002900000000001304350000004401000039000000000012043500000d250020009c000019f60000213d0000008001000039000026390000013d00000cbc0010009c00000cbc01008041000000c00110021000000d39011001c700008009020000390000000e030000290000000f04000029000000000500001932eb32dc0000040f00030000000103550000000003010019000000600330027000010cbc0030019d00000cbc03300198000026210000613d0000001f0430003900000d80044001970000003f0440003900000d8104400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000d240040009c000019f60000213d0000000100600190000019f60000c13d000000400040043f0000001f0430018f000000000635043600000d82053001980000000003560019000026140000613d000000000701034f000000007807043c0000000006860436000000000036004b000026100000c13d000000000004004b000026210000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000025530000c13d000000400100043d00000024021000390000000e03000029000000000032043500000da202000041000000000021043500000004021000390000000f030000290000033f0000013d00000da006000041000000000065043500000000001404350000000f01000029000000000013043500000064012000390000000e0300002900000000003104350000006401000039000000000012043500000d9c0020009c000019f60000213d000000a0010000390000000001210019000000400010043f000000140100002932eb31b90000040f000025530000013d00000d21011001970000000f0010006c00001b570000613d000000400200043d0000004403200039000000240420003900000020052000390000000006000410000000000061004b0000270c0000c13d00000da10100004100000000001504350000000f010000290000000000140435000000110100002900000000001304350000004401000039000000000012043500000d250020009c000019f60000213d0000008001000039000027190000013d000000010100003900000d3502000041000000000302041a000c00000003001d0012001000300072000800800000003d00000012030000290000000c0030006c00000000020000390000000102004039001100000002001d0000000100100190000027440000613d0000000001000415000e00000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000880000613d000000000101043b000000000101041a000000ff0010019000000000010004110000267a0000613d000000140100008a00000000011000310000000201100367000000000101043b0000006001100270000000400400043d00000064024000390000008003000039000000000032043500000044024000390000001203000029000000000032043500000da802000041000000000024043500000d210110019700000004024000390000000000120435000000240140003900000000000104350000000d01000029000000000101043300000084024000390000000000120435001400000004001d000000a402400039000000000001004b000026980000613d000000000300001900000000042300190000000f05300029000000000505043300000000005404350000002003300039000000000013004b000026910000413d0000000002210019000000000002043500000000020004140000001303000029000000040030008c000026a60000c13d0000000005000415000000190550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000026da0000013d0000001f0110003900000dd101100197000000a40110003900000cbc0010009c00000cbc010080410000006001100210000000140300002900000cbc0030009c00000cbc030080410000004003300210000000000131019f00000cbc0020009c00000cbc02008041000000c002200210000000000112019f000000130200002932eb32dc0000040f0000000003010019000000600330027000000cbc03300197000000200030008c0000002004000039000000000403401900000020064001900000001405600029000026c60000613d000000000701034f0000001408000029000000007907043c0000000008980436000000000058004b000026c20000c13d0000001f07400190000026d30000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000180550008a00000005055002100000000100200190000027510000613d0000001f01400039000000600210018f0000001401200029000000000021004b0000000002000039000000010200403900000d240010009c000019f60000213d0000000100200190000019f60000c13d000000400010043f000000200030008c000000880000413d0000001401000029000000000101043300000da900100198000000880000c13d0000001202000029001200010020003d0000000502500270000000000201001f00000000020004150000000e02200069000000000200000200000daa0110019700000da80010009c00000011010000290000265a0000613d000027a30000013d00000cbc0010009c00000cbc01008041000000c00110021000000d39011001c7000080090200003900000011030000290000000f04000029000000000500001932eb32dc0000040f00030000000103550000000003010019000000600330027000010cbc0030019d00000cbc033001980000271e0000c13d000000010020019000001b570000c13d000000400100043d00000024021000390000001103000029000026260000013d00000da006000041000000000065043500000000001404350000000f0100002900000000001304350000006401200039000000110300002900000000003104350000006401000039000000000012043500000d9c0020009c000019f60000213d000000a0010000390000000001210019000000400010043f000000140100002932eb31b90000040f00001b570000013d0000001f0430003900000d80044001970000003f0440003900000d8104400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000d240040009c000019f60000213d0000000100600190000019f60000c13d000000400040043f0000001f0430018f000000000635043600000d82053001980000000003560019000027360000613d000000000701034f000000007807043c0000000006860436000000000036004b000027320000c13d000000000004004b000027060000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000027060000013d00000d3501000041000000000101041a0000000c0010006c000024d40000613d000000000000043f00000d9701000041000032ed00010430000000090200002900000d2105200198000027550000c13d000000400100043d00000d5902000041000027c60000013d000000000003004b000027790000c13d0000006002000039000027a00000013d0000000203000039000000000203041a00000d4d02200197000000a00410021000000d4e04400197000000000224019f000000000252019f000000000023041b000000400200043d000000000012043500000cbc0020009c00000cbc020080410000004001200210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d0200003900000d4f0400004132eb32dc0000040f0000000100200190000000880000613d000000400100043d0000000b0200002900000d2702200197000027110020008c000027a70000413d0000002403100039000000000023043500000d52020000410000000000210435000000040210003900002710030000390000033f0000013d0000001f0230003900000d80022001970000003f0220003900000d8104200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000d240040009c000019f60000213d0000000100500190000019f60000c13d000000400040043f0000001f0430018f000000000632043600000d8205300198000800000006001d0000000003560019000027930000613d000000000601034f0000000807000029000000006806043c0000000007870436000000000037004b0000278f0000c13d000000000004004b000027a00000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000027ce0000c13d00000dab01000041000000000010043f00000d9701000041000032ed000104300000000406000039000000000306041a00000d4d03300197000000a00420021000000d4e04400197000000000334019f0000000c0400002900000d2105400197000000000353019f000000000036041b000000000021043500000cbc0010009c00000cbc010080410000004001100210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d02000039000000020300003900000d500400004132eb32dc0000040f0000000100200190000000880000613d0000000d0100002900000d2105100198000027d30000c13d000000400100043d00000d570200004100000000002104350000000402100039000000000002043500000cbc0010009c00000cbc01008041000000400110021000000d58011001c7000032ed00010430000000080200002900000cbc0020009c00000cbc0200804100000040022002100000175f0000013d0000000601000039000000000201041a00000d3b02200197000000000252019f000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000020300003900000d510400004132eb32dc0000040f0000000100200190000000880000613d00000d48010000410000007702000039000000000012041b00000d43010000410000007802000039000000000012041b000000070100002900000005011002700000000000010032000027f10000613d00000d2801000041000000000201041a00000dd402200197000000000021041b0000000001000415000000080110006900000000010000020000000001000019000032ec0001042e000000000003004b000028000000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000027f90000413d00000000012300190000000000010435000000000001042d00000000430104340000000001320436000000000003004b0000280f0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000028080000413d000000000213001900000000000204350000001f0230003900000dd1022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000028240000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000281d0000413d000000000312001900000000000304350000001f0220003900000dd1022001970000000001120019000000000001042d00000d850010009c0000283a0000213d000000630010008c0000283a0000a13d00000002030003670000000401300370000000000101043b00000d210010009c0000283a0000213d0000002402300370000000000202043b00000d210020009c0000283a0000213d0000004403300370000000000303043b000000000001042d0000000001000019000032ed0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b0000284a0000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000028440000413d000000000001042d00000dd50010009c000028500000813d0000002001100039000000400010043f000000000001042d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000001f0220003900000dd1022001970000000001120019000000000021004b0000000002000039000000010200403900000d240010009c000028620000213d0000000100200190000028620000c13d000000400010043f000000000001042d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed0001043000000000030100190000001f01300039000000000021004b000000000400001900000d7d0400404100000d7d0520019700000d7d01100197000000000651013f000000000051004b000000000100001900000d7d0100204100000d7d0060009c000000000104c019000000000001004b000028b00000613d0000000205000367000000000135034f000000000401043b00000dd60040009c000028aa0000813d0000001f0140003900000dd1011001970000003f0110003900000dd107100197000000400100043d0000000007710019000000000017004b0000000008000039000000010800403900000d240070009c000028aa0000213d0000000100800190000028aa0000c13d0000002008300039000000400070043f00000000034104360000000007840019000000000027004b000028b00000213d000000000585034f00000dd1064001980000001f0740018f00000000026300190000289a0000613d000000000805034f0000000009030019000000008a08043c0000000009a90436000000000029004b000028960000c13d000000000007004b000028a70000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000052043500000000024300190000000000020435000000000001042d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000001000019000032ed000104300000000805000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000028e00000c13d000000400100043d0000000003210436000000000006004b000028cd0000613d000000000050043f000000000002004b000028d30000613d00000d5d0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000028c50000413d000028d40000013d00000dd0044001970000000000430435000000000002004b00000020040000390000000004006039000028d40000013d00000000040000190000003f0240003900000dd1032001970000000002130019000000000032004b0000000003000039000000010300403900000d240020009c000028e60000213d0000000100300190000028e60000c13d000000400020043f000000000001042d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000905000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b0000291a0000c13d000000400100043d0000000003210436000000000006004b000029070000613d000000000050043f000000000002004b0000290d0000613d00000d5e0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000028ff0000413d0000290e0000013d00000dd0044001970000000000430435000000000002004b000000200400003900000000040060390000290e0000013d00000000040000190000003f0240003900000dd1032001970000000002130019000000000032004b0000000003000039000000010300403900000d240020009c000029200000213d0000000100300190000029200000c13d000000400020043f000000000001042d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000a05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000029540000c13d000000400100043d0000000003210436000000000006004b000029410000613d000000000050043f000000000002004b000029470000613d00000d5f0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000029390000413d000029480000013d00000dd0044001970000000000430435000000000002004b00000020040000390000000004006039000029480000013d00000000040000190000003f0240003900000dd1032001970000000002130019000000000032004b0000000003000039000000010300403900000d240020009c0000295a0000213d00000001003001900000295a0000c13d000000400020043f000000000001042d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000b05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b0000298e0000c13d000000400100043d0000000003210436000000000006004b0000297b0000613d000000000050043f000000000002004b000029810000613d00000d600500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000029730000413d000029820000013d00000dd0044001970000000000430435000000000002004b00000020040000390000000004006039000029820000013d00000000040000190000003f0240003900000dd1032001970000000002130019000000000032004b0000000003000039000000010300403900000d240020009c000029940000213d0000000100300190000029940000c13d000000400020043f000000000001042d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000105000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000029c80000c13d000000400100043d0000000003210436000000000006004b000029b50000613d000000000050043f000000000002004b000029bb0000613d00000d360500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000029ad0000413d000029bc0000013d00000dd0044001970000000000430435000000000002004b00000020040000390000000004006039000029bc0000013d00000000040000190000003f0240003900000dd1032001970000000002130019000000000032004b0000000003000039000000010300403900000d240020009c000029ce0000213d0000000100300190000029ce0000c13d000000400020043f000000000001042d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed0001043000000d2101100197000000000010043f00000d9101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000029e30000613d000000000101043b000000000001042d0000000001000019000032ed0001043000000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000029f30000613d000000000101043b000000000001042d0000000001000019000032ed000104300013000000000002001300000006001d000800000005001d000700000004001d000e00000003001d000d00000002001d000900000001001d000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000400200043d000f00000002001d00000dd70020009c00002b7d0000813d000000000101043b0000000f030000290000010002300039000000400020043f000000000201041a00000000042304360000000102100039000000000202041a000600000004001d00000000002404350000000202100039000000000202041a0000004004300039000500000004001d00000000002404350000000302100039000000000202041a000000600530003900000000002504350000000402100039000000000202041a000000800630003900000000002604350000000502100039000000000202041a000000a0073000390000000000270435000000c0083000390000000602100039000000000202041a00000d210220019700000000002804350000000701100039000000000201041a0000000103200190000000010a2002700000007f0aa0618f0000001f00a0008c00000000040000390000000104002039000000000043004b00002b8c0000c13d000000400900043d0000000004a90436000000000003004b00002a5e0000613d000400000004001d00120000000a001d000a00000009001d000b00000008001d000c00000007001d001000000006001d001100000005001d000000000010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cc4011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000120a00002900000000000a004b00002a640000613d000000000201043b0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a09000029000000040b00002900000000031b0019000000000402041a0000000000430435000000010220003900000020011000390000000000a1004b00002a560000413d00002a6a0000013d00000dd001200197000000000014043500000000000a004b0000002001000039000000000100603900002a6a0000013d0000000001000019000000110500002900000010060000290000000c070000290000000b080000290000000a090000290000003f0110003900000dd1021001970000000001920019000000000021004b0000000002000039000000010200403900000d240010009c00002b7d0000213d000000010020019000002b7d0000c13d000000400010043f0000000f01000029000000e001100039000000000091043500000000020704330000000001050433000c00000001001d0000000001080433000a0d210010019b0000000001060433000000000001004b000b00000002001d00002b280000613d000300000001001d00000002010003670000001302100360000000000302043b0000000002000031000000130420006a0000001f0440008a00000d7d0540019700000d7d06300197000000000756013f000000000056004b000000000500001900000d7d05004041000000000043004b000000000400001900000d7d0400804100000d7d0070009c000000000504c019000000000005004b00002b750000c13d0000001303300029000000000431034f000000000404043b001100000004001d00000d240040009c00002b750000213d000000110400002900000005044002100000000002420049000000200630003900000d7d0320019700000d7d04600197000000000534013f000000000034004b000000000300001900000d7d03004041001000000006001d000000000026004b000000000200001900000d7d0200204100000d7d0050009c000000000302c019000000000003004b00002b750000c13d0000001302000029000400600020003d0000000402100360000000000202043b00000d210020009c00002b750000213d000000040400002900010040004000920000000103100360000000000303043b00020020004000920000000201100360000000000401043b0000006002200210000000400100043d00000074051000390000000000250435000000540210003900000000004204350000000d02000029000000600420021000000020021000390000000000420435000000340410003900000000003404350000006803000039000000000031043500000d9c0010009c00002b7d0000213d000000a003100039000000400030043f00000cbc0020009c00000cbc020080410000004002200210000000000101043300000cbc0010009c00000cbc010080410000006001100210000000000121019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000000101043b000000110000006b00002b120000613d0000000004000019000000000200001900002ae90000013d0000001304000029000000000101043b0000000104400039000000110040006c00002b120000813d0000000103200210000000000002004b00002aef0000613d00000000022300d9000000020020008c00002b770000c13d001200000003001d001300000004001d000000050240021000000010022000290000000202200367000000000202043b000000000021004b00002b050000a13d000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000120200002900000001022001bf00002ae40000013d000000000010043f000000200020043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000120200002900002ae40000013d000000030010006c00002b280000c13d00000002020003670000000101200360000000000101043b000000000001004b00000000030100190000000c03006029000c00000003001d001300010000003d0000000201200360000000000101043b00000dd20010009c00002b290000613d0000000402200360000000000202043b00000d210020009c00002b750000213d000000000002004b000b00000001001d000a00000002c01d00002b290000013d001300000000001d0000000901000029000000000010043f0000001201000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000000101043b0000000d0200002900000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002b750000613d000000070200002900000d21022001970000000a05000029000000000025004b00000008040000290000000b0600002900002b920000c13d000000000046004b00002b920000c13d000000000101043b000000000101041a0000000e020000290000000001210019000000000002004b00002b830000613d000000000021004b00002b770000413d0000000c0010006c0000000e0200002900002b830000213d00000005010000290000000001010433000000000021001a00002b770000413d0000000e0210002900000006010000290000000001010433000000000012004b00002ba20000213d0000000f010000290000000001010433001200000001001d00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f000000010020019000002bae0000613d000000000101043b0000001204000029000000000014004b00002baf0000213d0000001301000029000000000001042d0000000001000019000032ed0001043000000d8301000041000000000010043f0000001101000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed00010430000000400200043d0000002403200039000000000013043500000db001000041000000000012043500000004012000390000000c03000029000000000031043500002bb60000013d00000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed00010430000000400100043d00000064031000390000000000630435000000440310003900000000005304350000002403100039000000000043043500000db10300004100000000003104350000000403100039000000000023043500000cbc0010009c00000cbc01008041000000400110021000000d2b011001c7000032ed00010430000000400300043d0000002404300039000000000024043500000daf0200004100000000002304350000000402300039000000000012043500000cbc0030009c00000cbc03008041000000400130021000000d53011001c7000032ed00010430000000000001042f000000400200043d0000002403200039000000000013043500000dae0100004100000000001204350000000401200039000000000041043500000cbc0020009c00000cbc02008041000000400120021000000d53011001c7000032ed000104300008000000000002000300000002001d000600000001001d000700000003001d000000000003004b00002d3b0000613d0000000701000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000000001004b00002bea0000c13d00000d3501000041000000000101041a000000070010006c00002d3b0000a13d0000000702000029000000010220008a000800000002001d000000000020043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000000001004b000000080200002900002bd70000613d00000d5c0010019800002d3b0000c13d000000060200002900000d2102200197000400000001001d00000d2101100197000800000002001d000000000021004b00002d3f0000c13d0000000701000029000000000010043f00000dbc01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000100000001001d000000000101041a000500000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000ff001001900000000003000411000000000103001900002c1c0000613d000000140100008a00000000011000310000000201100367000000000101043b000000600110027000000d2101100197000000080010006c00002c570000613d000000050010006c00002c570000613d000000000030043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d0000000002000411000600000002001d000000000101043b000000000101041a000000ff0010019000002c380000613d000000140100008a00000000011000310000000201100367000000000101043b00060060001002780000000801000029000000000010043f00000d9101000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000000060200002900002d390000613d000000000101043b00000d2102200197000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000ff0010019000002d480000613d0000007701000039000000000101041a000200000001001d000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000000043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000030200002900060d210020019b000000000101043b000000080000006b00002cb80000613d000000000101041a000000ff0010019000002cb80000c13d000000060000006b00002cb80000613d0000000201000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b0000000802000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000ff0010019000002cb80000c13d0000000201000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b0000000602000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000ff0010019000002d4c0000613d000000050000006b00002cbc0000613d0000000101000029000000000001041b0000000801000029000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000201041a0000000102200039000000000021041b00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f000000010020019000002d430000613d000000000101043b000500000001001d0000000701000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d0000000502000029000000a00220021000000006022001af00000da5022001c7000000000101043b000000000021041b000000040100002900000da50010019800002d280000c13d00000007010000290000000101100039000500000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b000000000101041a000000000001004b00002d280000c13d00000d3501000041000000000101041a000000050010006b00002d280000613d0000000501000029000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d390000613d000000000101043b0000000402000029000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000040300003900000da70400004100000008050000290000000606000029000000070700002932eb32dc0000040f000000010020019000002d390000613d000000060000006b00002d440000613d000000000001042d0000000001000019000032ed0001043000000dc901000041000000000010043f00000d9701000041000032ed0001043000000dd801000041000000000010043f00000d9701000041000032ed00010430000000000001042f00000dd901000041000000000010043f00000d9701000041000032ed0001043000000dbd01000041000000000010043f00000d9701000041000032ed00010430000000400200043d000800000002001d00000cbf010000410000000000120435000000040120003932eb2fbd0000040f0000000802000029000000000121004900000cbc0010009c00000cbc01008041000000600110021000000cbc0020009c00000cbc020080410000004002200210000000000121019f000032ed00010430000000000301001900000000013200a9000000000003004b00002d630000613d00000000033100d9000000000023004b00002d640000c13d000000000001042d00000d8301000041000000000010043f0000001101000039000000040010043f00000d5801000041000032ed00010430000000000010043f0000000501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002d8b0000613d000000400200043d00000dda0020009c00002d8d0000813d000000000301043b0000004001200039000000400010043f000000000103041a00000d210110019800000000041204360000000102300039000000000202041a000000000024043500002d850000613d0000ffff0220018f000000000001042d0000000401000039000000000101041a000000a00210027000000d21011001970000ffff0220018f000000000001042d0000000001000019000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed0001043000000d210110019800002da50000613d000000000010043f00000d9501000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002da90000613d000000000101043b000000000101041a00000d2401100197000000000001042d00000db301000041000000000010043f00000d9701000041000032ed000104300000000001000019000032ed000104300007000000000002000400000004001d000500000002001d000200000001001d000300000003001d32eb2bbb0000040f00000cbd01000041000000000010044300000005010000290000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f000000010020019000002e5a0000613d000000000101043b000000000001004b00002e570000613d0000000001000415000100000001001d0000000001000411000000000010043f0000004501000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002e580000613d000000000101043b000000000101041a000000ff00100190000000000300041100002dda0000613d000000140100008a00000000011000310000000201100367000000000101043b0000006003100270000000400b00043d0000006401b00039000000800700003900000000007104350000004401b0003900000003020000290000000000210435000000020100002900000d21011001970000002402b00039000000000012043500000da80100004100000000001b043500000d21013001970000000402b0003900000000001204350000008403b00039000000040100002900000000210104340000000000130435000000a403b00039000000000001004b00002df90000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b00002df20000413d000000000231001900000000000204350000000003000414000000050200002900000d2102200197000000040020008c00002e080000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900002e3f0000013d000400000007001d0000001f0110003900000dd101100197000000a40110003900000cbc0010009c00000cbc01008041000000600110021000000cbc00b0009c00000cbc0400004100000000040b40190000004004400210000000000141019f00000cbc0030009c00000cbc03008041000000c003300210000000000113019f00050000000b001d32eb32dc0000040f000000050b0000290000000003010019000000600330027000000cbc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e2b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e270000c13d000000000006004b00002e380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a0000000505500210000000010020019000002e5b0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000d240010009c00002e8d0000213d000000010020019000002e8d0000c13d000000400010043f000000200030008c00002e580000413d00000000010b043300000da90010019800002e580000c13d0000000502500270000000000201001f00000000020004150000000102200069000000000200000200000daa0110019700000da80010009c00002e610000c13d000000000001042d0000000001000019000032ed00010430000000000001042f000000000003004b00002e650000c13d00000060020000390000000001020433000000000001004b00002e930000c13d00000dab01000041000000000010043f00000d9701000041000032ed000104300000001f0230003900000d80022001970000003f0220003900000d8104200197000000400200043d0000000004420019000000000024004b0000000005000039000000010500403900000d240040009c00002e8d0000213d000000010050019000002e8d0000c13d000000400040043f0000001f0430018f000000000632043600000d8205300198000400000006001d000000000356001900002e7f0000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b00002e7b0000c13d000000000004004b00002e5e0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5e0000013d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed00010430000000040200002900000cbc0020009c00000cbc02008041000000400220021000000cbc0010009c00000cbc010080410000006001100210000000000121019f000032ed0001043000010000000000020000000003010019000000400100043d00000ddb0010009c00002ef50000813d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000000003004b00002ef20000613d00000d3502000041000000000202041a000000000032004b00002ef20000a13d000100000003001d000000000030043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002ef30000613d000000000101043b000000000101041a000000000001004b00002ec40000c13d0000000103000029000000010330008a00002eb00000013d000000400100043d00000d250010009c000000010300002900002ef50000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000000030043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000000301034f000000010020019000002ef30000613d000000400100043d00000d250010009c00002ef50000213d000000000203043b000000000202041a0000008003100039000000400030043f0000006003100039000000e804200270000000000043043500000d5c002001980000000003000039000000010300c0390000004004100039000000000034043500000d21032001970000000003310436000000a00220027000000d24022001970000000000230435000000000001042d0000000001000019000032ed0001043000000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed0001043000030000000000020000000f01000039000000000201041a0000001001000039000000000101041a000000000021001a00002f330000413d0000000001210019000100000002001d000000000021004b00002f2b0000a13d000000010110008a000300000001001d000000000010043f0000001101000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002f280000613d000000000101043b000000000101041a000200000001001d00000d99010000410000000000100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d9a011001c70000800b0200003932eb32e10000040f000000010020019000002f2a0000613d000000000101043b000000020010006c0000000102000029000000030100002900002f040000413d000000000001042d0000000001000019000032ed00010430000000000001042f000000400100043d00000d9802000041000000000021043500000cbc0010009c00000cbc01008041000000400110021000000d97011001c7000032ed0001043000000d8301000041000000000010043f0000001101000039000000040010043f00000d5801000041000032ed000104300000000201000039000000000201041a00000d2101200197000000a0022002700000ffff0220018f000000000001042d00000d21061001970000000701000039000000000201041a00000d3b03200197000000000363019f000000000031041b000000000100041400000d210520019700000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000030300003900000d3c0400004132eb32dc0000040f000000010020019000002f520000613d000000000001042d0000000001000019000032ed00010430000000400400043d000027110020008c00002f710000813d00000d210510019800002f7d0000613d0000000203000039000000000103041a00000d4d01100197000000a00620021000000d4e06600197000000000116019f000000000151019f000000000013041b000000000024043500000cbc0040009c00000cbc040080410000004001400210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d0200003900000d4f0400004132eb32dc0000040f000000010020019000002f860000613d000000000001042d0000002401400039000000000021043500000d5401000041000000000014043500000004014000390000271002000039000000000021043500000cbc0040009c00000cbc04008041000000400140021000000d53011001c7000032ed0001043000000d590100004100000000001404350000000401400039000000000001043500000cbc0040009c00000cbc04008041000000400140021000000d58011001c7000032ed000104300000000001000019000032ed000104300001000000000002000000000001004b00002fb90000613d000100000001001d000000000010043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002fb70000613d000000000101043b000000000101041a000000000001004b00002fb40000c13d00000d3501000041000000000101041a0000000102000029000000000021004b00002fb90000a13d000000010220008a000100000002001d000000000020043f00000d5b01000041000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002fb70000613d000000000101043b000000000101041a000000000001004b000000010200002900002fa10000613d00000d5c0010019800002fb90000c13d000000000001042d0000000001000019000032ed0001043000000dc901000041000000000010043f00000d9701000041000032ed00010430000000400210003900000ddc030000410000000000320435000000200210003900000002030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0002000000000002000200000002001d000100000001001d000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002fea0000613d000000000101043b000000020200002900000d2102200197000200000002001d000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f000000010020019000002fea0000613d000000000101043b000000000101041a000000ff0010019000002fec0000613d000000000001042d0000000001000019000032ed00010430000000400100043d00000024021000390000000103000029000000000032043500000dc402000041000000000021043500000004021000390000000203000029000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d53011001c7000032ed000104300003000000000002000200000002001d000300000001001d000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000020200002900000d2102200197000200000002001d000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000000101041a000000ff00100190000030a50000613d0000000301000029000000000010043f0000000c01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b0000000202000029000000000020043f000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000000201041a00000dd002200197000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d020000390000000403000039000000000700041100000ddd040000410000000305000029000000020600002932eb32dc0000040f0000000100200190000030a30000613d0000000301000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000000101041a000100000001001d0000000301000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b0000000102000029000000000020043f0000000101100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000000201041a00000d3b02200197000000000021041b0000000301000029000000000010043f0000000e01000039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b0000000202000029000000000020043f0000000201100039000000200010043f000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d2c011001c7000080100200003932eb32e10000040f0000000100200190000030a30000613d000000000101043b000000000001041b000000000001042d0000000001000019000032ed00010430000000400100043d00000024021000390000000303000029000000000032043500000dc402000041000000000021043500000004021000390000000203000029000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d53011001c7000032ed00010430000000400300043d000027110020008c000030d00000813d0000000404000039000000000504041a00000d4d05500197000000a00620021000000d4e06600197000000000656019f00000d2105100197000000000156019f000000000014041b000000000023043500000cbc0030009c00000cbc030080410000004001300210000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000cc4011001c70000800d02000039000000020300003900000d500400004132eb32dc0000040f0000000100200190000030dc0000613d000000000001042d0000002401300039000000000021043500000d5201000041000000000013043500000004013000390000271002000039000000000021043500000cbc0030009c00000cbc03008041000000400130021000000d53011001c7000032ed000104300000000001000019000032ed0001043000000d2105100198000030f10000613d0000000601000039000000000201041a00000d3b02200197000000000252019f000000000021041b000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000d39011001c70000800d02000039000000020300003900000d510400004132eb32dc0000040f0000000100200190000030fb0000613d000000000001042d000000400100043d00000d570200004100000000002104350000000402100039000000000002043500000cbc0010009c00000cbc01008041000000400110021000000d58011001c7000032ed000104300000000001000019000032ed000104300000000104000039000000000304041a000000010530019000000001093002700000007f0990618f0000001f0090008c00000000020000390000000102002039000000000025004b000031b10000c13d000000400600043d0000000002960436000000000005004b000031180000613d000000000040043f000000000009004b0000311e0000613d00000d360500004100000000030000190000000007320019000000000805041a000000000087043500000001055000390000002003300039000000000093004b000031100000413d0000311f0000013d00000dd0033001970000000000320435000000000009004b000000200300003900000000030060390000311f0000013d00000000030000190000003f03300039000000200500008a000000000753016f0000000003670019000000000073004b0000000007000039000000010700403900000d240030009c000031ab0000213d0000000100700190000031ab0000c13d000000400030043f000000007801043400000d240080009c000031ab0000213d000000200090008c0000313f0000413d000000000040043f0000001f0a800039000000050aa0027000000d370aa0009a000000200080008c00000d360a0040410000001f09900039000000050990027000000d370990009a00000000009a004b0000313f0000813d00000000000a041b000000010aa0003900000000009a004b0000313b0000413d0000001f0080008c0000315d0000a13d000000000040043f000000000b580170000031670000613d00000d3609000041000000200a000039000000010cb0008a000000050cc0027000000d380cc0009a000000000d1a0019000000000d0d04330000000000d9041b000000200aa0003900000001099000390000000000c9004b000031490000c13d00000000008b004b0000315a0000813d000000030b800210000000f80bb0018f00000dd20bb0027f00000dd20bb00167000000000a1a0019000000000a0a0433000000000aba016f0000000000a9041b000000010880021000000001088001bf0000316d0000013d000000000008004b0000316c0000613d000000030980021000000dd20990027f00000dd209900167000000000a07043300000000099a016f0000000108800210000000000889019f0000316d0000013d000000200a00003900000d360900004100000000008b004b000031520000413d0000315a0000013d0000000008000019000000000084041b000000400400003900000000044304360000004008300039000000000606043300000000006804350000006008300039000000000006004b0000317e0000613d0000000009000019000000000a890019000000000b920019000000000b0b04330000000000ba04350000002009900039000000000069004b000031770000413d000000000286001900000000000204350000001f02600039000000000252016f00000000068200190000000002360049000000000024043500000000020104330000000001260436000000000002004b000031910000613d000000000400001900000000061400190000000008470019000000000808043300000000008604350000002004400039000000000024004b0000318a0000413d000000000412001900000000000404350000001f02200039000000000252016f0000000001310049000000000121001900000cbc0010009c00000cbc01008041000000600110021000000cbc0030009c00000cbc030080410000004002300210000000000121019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c70000800d02000039000000010300003900000d3a0400004132eb32dc0000040f0000000100200190000031b70000613d000000000001042d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed0001043000000d8301000041000000000010043f0000002201000039000000040010043f00000d5801000041000032ed000104300000000001000019000032ed000104300004000000000002000000400400043d00000dda0040009c0000327d0000813d00000d21051001970000004001400039000000400010043f000000200140003900000dde0300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000031f40000c13d0000000101000032000032300000613d00000d240010009c0000327d0000213d0000001f0310003900000dd1033001970000003f0330003900000dd103300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000d240030009c0000327d0000213d00000001004001900000327d0000c13d000000400030043f00000000051a043600000dd1021001980000001f0310018f00000000012500190000000304000367000031e60000613d000000000604034f000000006706043c0000000005750436000000000015004b000031e20000c13d000000000003004b000032310000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000032310000013d000200000004001d00000cbc0030009c00000cbc03008041000000600330021000000cbc0020009c00000cbc020080410000004002200210000000000223019f00000cbc0010009c00000cbc01008041000000c001100210000000000112019f000100000005001d000000000205001932eb32dc0000040f00030000000103550000000003010019000000600330027000010cbc0030019d00000cbc04300198000032480000613d0000001f0340003900000d80033001970000003f0330003900000d8103300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000d240030009c0000327d0000213d00000001005001900000327d0000c13d000000400030043f0000001f0540018f00000000034a043600000d82064001980000000004630019000032220000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b0000321e0000c13d000000000005004b0000324a0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000324a0000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b000032520000c13d00020000000a001d00000cbd01000041000000000010044300000004010000390000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000032ac0000613d0000000002000415000000040220008a000032650000013d000000600a000039000000800300003900000000010a04330000000100200190000032990000613d0000000002000415000000030220008a0000000502200210000000000001004b000032550000613d000000050220027000000000020a001f0000326f0000013d00020000000a001d00000cbd01000041000000000010044300000001010000290000000400100443000000000100041400000cbc0010009c00000cbc01008041000000c00110021000000cbe011001c7000080020200003932eb32e10000040f0000000100200190000032ac0000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000032ad0000613d00000000010a0433000000050220027000000000020a001f000000000001004b0000327c0000613d00000d850010009c000032830000213d000000200010008c000032830000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000032830000c13d000000000001004b000032850000613d000000000001042d00000d8301000041000000000010043f0000004101000039000000040010043f00000d5801000041000032ed000104300000000001000019000032ed00010430000000400100043d000000640210003900000ddf030000410000000000320435000000440210003900000de003000041000000000032043500000024021000390000002a03000039000000000032043500000cbf02000041000000000021043500000004021000390000002003000039000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d2b011001c7000032ed00010430000000000001004b000032be0000c13d000000400200043d000100000002001d00000cbf0100004100000000001204350000000401200039000000020200002932eb28150000040f0000000102000029000000000121004900000cbc0010009c00000cbc01008041000000600110021000000cbc0020009c00000cbc020080410000004002200210000000000121019f000032ed00010430000000000001042f000000400100043d000000440210003900000d8403000041000000000032043500000024021000390000001d03000039000000000032043500000cbf02000041000000000021043500000004021000390000002003000039000000000032043500000cbc0010009c00000cbc01008041000000400110021000000d77011001c7000032ed0001043000000cbc0030009c00000cbc03008041000000400230021000000cbc0010009c00000cbc010080410000006001100210000000000121019f000032ed00010430000000000001042f00000cbc0010009c00000cbc01008041000000400110021000000cbc0020009c00000cbc020080410000006002200210000000000112019f000000000200041400000cbc0020009c00000cbc02008041000000c002200210000000000112019f00000d39011001c7000080100200003932eb32e10000040f0000000100200190000032da0000613d000000000101043b000000000001042d0000000001000019000032ed00010430000032df002104210000000102000039000000000001042d0000000002000019000000000001042d000032e4002104230000000102000039000000000001042d0000000002000019000000000001042d000032e9002104250000000102000039000000000001042d0000000002000019000000000001042d000032eb00000432000032ec0001042e000032ed000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a65640000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024980000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000009010d07b00000000000000000000000000000000000000000000000000000000b280f70200000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000e6798ba900000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f28083c300000000000000000000000000000000000000000000000000000000e6798baa00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e159163300000000000000000000000000000000000000000000000000000000e159163400000000000000000000000000000000000000000000000000000000e57553da00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000d637ed5900000000000000000000000000000000000000000000000000000000c68907dd00000000000000000000000000000000000000000000000000000000ca15c87200000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000d45573f600000000000000000000000000000000000000000000000000000000c68907de00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c23dc68f00000000000000000000000000000000000000000000000000000000b280f70300000000000000000000000000000000000000000000000000000000b6f10c7900000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000ac9650d700000000000000000000000000000000000000000000000000000000ad1eefc400000000000000000000000000000000000000000000000000000000ad1eefc500000000000000000000000000000000000000000000000000000000b24f2d3900000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000acd083f800000000000000000000000000000000000000000000000000000000a32fa5b200000000000000000000000000000000000000000000000000000000a32fa5b300000000000000000000000000000000000000000000000000000000a7d27d9d00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2309ff80000000000000000000000000000000000000000000000000000000095d89b40000000000000000000000000000000000000000000000000000000009bcf7a14000000000000000000000000000000000000000000000000000000009bcf7a1500000000000000000000000000000000000000000000000000000000a217fddf0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000099a2557a000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000091d1485400000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000006f4f2836000000000000000000000000000000000000000000000000000000007e54523b0000000000000000000000000000000000000000000000000000000084bb1e410000000000000000000000000000000000000000000000000000000084bb1e42000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000007e54523c000000000000000000000000000000000000000000000000000000008462151c0000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000074bc7db7000000000000000000000000000000000000000000000000000000006f4f2837000000000000000000000000000000000000000000000000000000006f8934f400000000000000000000000000000000000000000000000000000000572b6c04000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e00000000000000000000000000000000000000000000000000000000637102df00000000000000000000000000000000000000000000000000000000572b6c0500000000000000000000000000000000000000000000000000000000600dd5ea0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004cc157df000000000000000000000000000000000000000000000000000000001e7ac487000000000000000000000000000000000000000000000000000000002a5520590000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003b1475a7000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000001e7ac4880000000000000000000000000000000000000000000000000000000023a2902b00000000000000000000000000000000000000000000000000000000081812fb0000000000000000000000000000000000000000000000000000000013af40340000000000000000000000000000000000000000000000000000000013af40350000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000079fe40e0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe000000000000000000000000000000000ffffffffffffffffffffffffffffffffee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f20697320616c726561647920696e697469616c697a6564000000000000000000455243373231415f5f496e697469616c697a61626c653a20636f6e7472616374000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000400000000000000000000000002569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c426cc130753487db497f572e90c00c24779bdd7267955b3d1454e114d8fc4b414d933ecf8acb7824b680a8d16f3ff3db8864228d986aa4c2ebab1eeb2703b4beb36cc130753487db497f572e90c00c24779bdd7267955b3d1454e114d8fc4b414c2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c439e8e984892337db889e02de0bd852713c4194c41dfc512cb1c553f74b2ce7e84617167b76dcc8247761fd21f427ad8ec3be6b3be203aed34e3aac08b4d31817c9e8e984892337db889e02de0bd852713c4194c41dfc512cb1c553f74b2ce7e832569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c40b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30a4ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f3090200000000000000000000000000000000000000000000000000000000000000c9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16ffffffffffffffffffffffff00000000000000000000000000000000000000008292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7613649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e82f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0de710864318d4a32f37d6ce54cb3fadbef648dd12d8dbdf53973564d56b7f881ce710864318d4a32f37d6ce54cb3fadbef648dd12d8dbdf53973564d56b7f881de710864318d4a32f37d6ce54cb3fadbef648dd12d8dbdf53973564d56b7f881e28716b1ac0502292c83929abc9e37796cf2f7a586c58ec02e6ceeac1b694cbc39f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6fc2ff4086eabd76dbcc4dfadf31e7eddf5c878012eab6736c3b5e33f6766000efc2ff4086eabd76dbcc4dfadf31e7eddf5c878012eab6736c3b5e33f6766000ffc2ff4086eabd76dbcc4dfadf31e7eddf5c878012eab6736c3b5e33f67660010bb1e1a8e0b7444ee849eb58b669e508854010c85a71093eb68e6d1dd57b087848502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6cf774e6c7a8498a40b7a7f85feea67423361bec484b853057fd82a86b3a8b588df774e6c7a8498a40b7a7f85feea67423361bec484b853057fd82a86b3a8b588ef774e6c7a8498a40b7a7f85feea67423361bec484b853057fd82a86b3a8b588f955c61e894e169d044ec560fb5eb5628b84b6a0595431bfa7fb89eedc26c3c6affffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffff0000000000000000000000000000000000000000e2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830490d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b3335249856800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000038343fd2000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420693df2b0dc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000d315d8ec00000000000000000000000000000000000000000000000000000000206973206e6f7420696e697469616c697a696e670000000000000000000000002569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c440000000100000000000000000000000000000000000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee36e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7afc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9000000000000000000000000000000000000000000000000ffffffffffffffdf616e696d6174696f6e5f75726c223a2022000000000000000000000000000000222c202200000000000000000000000000000000000000000000000000000000696d616765223a20220000000000000000000000000000000000000000000000222c2022616e696d6174696f6e5f75726c223a20220000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffe00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000007b226e616d65223a20220000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006465736372697074696f6e223a2022000000000000000000000000000000000070726f70657274696573223a207b226e756d626572223a2000000000000000002c20226e616d65223a2022000000000000000000000000000000000000000000227d7d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd000000000000000000000000000000000000000000000000bffffffffffffffd3d00000000000000000000000000000000000000000000000000000000000000646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000214944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff0000000000000000000000000000000000000080000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000ffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffd246da9440709ce0dd3f4fd669abc85ada012ab9774b8ecdcc5059ba1486b9c18000000000000000000000000000000000000000000000000000000000000000206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe04e487b7100000000000000000000000000000000000000000000000000000000416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911c91eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a385191eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a385039a5844729cae3e308f36a5ce933956d7c6367997d26743ca06a70b77c062d5839a5844729cae3e308f36a5ce933956d7c6367997d26743ca06a70b77c062d57fe8a4859c7bd88fc0f24184464406785daae8e84cb1860cc4a4eff72e05fe247fe8a4859c7bd88fc0f24184464406785daae8e84cb1860cc4a4eff72e05fe2466bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c8edd7f36d5f01bd45e59cf55b0a670dcf701fc20f678970a8c243b2346d6acaf4e6f7420617574686f72697a65640000000000000000000000000000000000002569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4717307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffffbf7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c459f7f0925000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f40f1cc000000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000fffffffffffffeff000000000000000000000000000000000000000000000000ffffffffffffff5f000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee21560000000000000000000000000000000000000000000000000000000000000000000000000000000000001af20c6b23373350ad464700b5965ce4b0d2ad9423b872dd00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bfb89d82000000000000000000000000000000000000000000000000000000007072696365206c657373207468616e20706c6174666f726d20666565000000002156616c7565000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000001ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef150b7a020000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000fa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e2e076300000000000000000000000000000000000000000000000000000000004562091e00000000000000000000000000000000000000000000000000000000fe381cc9000000000000000000000000000000000000000000000000000000009e7762db00000000000000000000000000000000000000000000000000000000f13474e90000000000000000000000000000000000000000000000000000000032c1995a000000000000000000000000000000000000000000000000000000008f4eb60400000000000000000000000000000000000000000000000000000000f8086cee80709bd44c82f89dbca54115ebd05e840a88ab81df9cf5be9754eb6353540000000000000000000000000000000000000000000000000000000000000656a73e00000000000000000000000000000000000000000000000000000000bf4016fceeaaa4ac5cf4be865b559ff85825ab4ca7aa7b661d16e2f544c0309856c4ef51000000000000000000000000000000000000000000000000000000007260843c00000000000000000000000000000000000000000000000000000000df5c6b020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000002569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4659c896be00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000100000003000000000000000000000000000000000000000000000000000000002569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c414169c622000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000800000000000000000d49c166a000000000000000000000000000000000000000000000000000000000878b1060000000000000000000000000000000000000000000000000000000087d20a6d000000000000000000000000000000000000000000000000000000002d99739600000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e4000000000000000000000000000000000000000000000000000000005b5e139effffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffff00a114810000000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff802154000000000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000a16469706673582212202c78de167d3624c0cbc20adb6f7a458e439593ce97b2185003e871fabb31718c002a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.