QSBS2ISOQ2ZFYZIAZPWD26UYFSWIFWR47R5WUEJKIQJKKJWXOZDAC }/* This is a specialisation of isValidPath() that optimisticallyfetches the .narinfo file, rather than first checking for itsexistence via a HEAD request. Since .narinfos are small, doing aGET is unlikely to be slower than HEAD. */bool S3BinaryCacheStore::isValidPath(const Path & storePath){try {readNarInfo(storePath);return true;} catch (S3Error & e) {if (e.err == Aws::S3::S3Errors::NO_SUCH_KEY) return false;throw;}