<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/76593>76593</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
Lambda explicit return type causes crash on valid code in C++20 mode.
</td>
</tr>
<tr>
<th>Labels</th>
<td>
new issue
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
1lumin
</td>
</tr>
</table>
<pre>
Compiler Explorer: [https://godbolt.org/z/fYzbKdPhT](https://godbolt.org/z/fYzbKdPhT)
This example causes the compiler to crash when in C++20 mode and up:
```
#include <vector>
#include <unordered_set>
int main()
{
std::vector<int> in;
auto apply = [&](auto b, auto e, std::unordered_set<int> asds)->void{
for (auto it = b; it != e; ++it)
{
}
};
apply(in.begin(), in.end(), {});
}
```
If `->void` is removed, the example compiles fine.
If you specify C++17 mode, the example compiles fine.
If you remove the for loop, the example compiles fine.
If you remove the unordered_set, the example compiles fine.
Something must be sketchy in how lambdas are handled since I have encountered multiple of these fragile conditions where meaningless changes cause crashes when using lambdas. Such as #70604. Could someone take a look at this?
```
clang++: /root/llvm-project/llvm/include/llvm/ADT/SmallVector.h:294: T& llvm::SmallVectorTemplateCommon<T, <template-parameter-1-2> >::operator[](llvm::SmallVectorTemplateCommon<T, <template-parameter-1-2> >::size_type) [with T = clang::sema::FunctionScopeInfo*; <template-parameter-1-2> = void; llvm::SmallVectorTemplateCommon<T, <template-parameter-1-2> >::reference = clang::sema::FunctionScopeInfo*&; llvm::SmallVectorTemplateCommon<T, <template-parameter-1-2> >::size_type = long unsigned int]: Assertion `idx < size()' failed.
PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace, preprocessed source, and associated run script.
Stack dump:
0. Program arguments: /opt/compiler-explorer/clang-assertions-trunk/bin/clang++ -gdwarf-4 -g -o /app/output.s -mllvm --x86-asm-syntax=intel -S --gcc-toolchain=/opt/compiler-explorer/gcc-snapshot -fcolor-diagnostics -fno-crash-diagnostics -std=c++20 <source>
1. <eof> parser at end of file
2. <source>:8:18: instantiating function definition 'main()::(anonymous class)::operator()<__gnu_cxx::__normal_iterator<int *, std::vector<int>>, __gnu_cxx::__normal_iterator<int *, std::vector<int>>>'
#0 0x00000000037d5ce8 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x37d5ce8)
#1 0x00000000037d39cc llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x37d39cc)
#2 0x000000000371c218 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x00007f4e2c842520 (/lib/x86_64-linux-gnu/libc.so.6+0x42520)
#4 0x00007f4e2c8969fc pthread_kill (/lib/x86_64-linux-gnu/libc.so.6+0x969fc)
#5 0x00007f4e2c842476 gsignal (/lib/x86_64-linux-gnu/libc.so.6+0x42476)
#6 0x00007f4e2c8287f3 abort (/lib/x86_64-linux-gnu/libc.so.6+0x287f3)
#7 0x00007f4e2c82871b (/lib/x86_64-linux-gnu/libc.so.6+0x2871b)
#8 0x00007f4e2c839e96 (/lib/x86_64-linux-gnu/libc.so.6+0x39e96)
#9 0x0000000006522933 clang::Sema::tryCaptureVariable(clang::ValueDecl*, clang::SourceLocation, clang::Sema::TryCaptureKind, clang::SourceLocation, bool, clang::QualType&, clang::QualType&, unsigned int const*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6522933)
#10 0x0000000006550246 clang::Sema::BuildDeclRefExpr(clang::ValueDecl*, clang::QualType, clang::ExprValueKind, clang::DeclarationNameInfo const&, clang::NestedNameSpecifierLoc, clang::NamedDecl*, clang::SourceLocation, clang::TemplateArgumentListInfo const*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6550246)
#11 0x0000000006550a9c clang::Sema::BuildDeclRefExpr(clang::ValueDecl*, clang::QualType, clang::ExprValueKind, clang::DeclarationNameInfo const&, clang::CXXScopeSpec const*, clang::NamedDecl*, clang::SourceLocation, clang::TemplateArgumentListInfo const*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6550a9c)
#12 0x0000000006555c81 clang::Sema::BuildDeclarationNameExpr(clang::CXXScopeSpec const&, clang::DeclarationNameInfo const&, clang::NamedDecl*, clang::NamedDecl*, clang::TemplateArgumentListInfo const*, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6555c81)
#13 0x0000000006b09512 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformDeclRefExpr(clang::DeclRefExpr*) SemaTemplateInstantiate.cpp:0:0
#14 0x0000000006b0972b (anonymous namespace)::TemplateInstantiator::TransformDeclRefExpr(clang::DeclRefExpr*) SemaTemplateInstantiate.cpp:0:0
#15 0x0000000006ae644b clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#16 0x0000000006b15e54 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCXXDependentScopeMemberExpr(clang::CXXDependentScopeMemberExpr*) SemaTemplateInstantiate.cpp:0:0
#17 0x0000000006ae65e9 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#18 0x0000000006af091e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) SemaTemplateInstantiate.cpp:0:0
#19 0x0000000006ae6538 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#20 0x0000000006ae96a8 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformBinaryOperator(clang::BinaryOperator*) SemaTemplateInstantiate.cpp:0:0
#21 0x0000000006ae672b clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#22 0x0000000006b1017c clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformRequiresExpr(clang::RequiresExpr*) SemaTemplateInstantiate.cpp:0:0
#23 0x0000000006b1209e (anonymous namespace)::TemplateInstantiator::TransformRequiresExpr(clang::RequiresExpr*) SemaTemplateInstantiate.cpp:0:0
#24 0x0000000006ae5fc2 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#25 0x0000000006b1bee8 clang::Sema::SubstConstraintExpr(clang::Expr*, clang::MultiLevelTemplateArgumentList const&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6b1bee8)
#26 0x000000000627d650 calculateConstraintSatisfaction(clang::Sema&, clang::NamedDecl const*, clang::SourceLocation, clang::MultiLevelTemplateArgumentList const&, clang::Expr const*, clang::ConstraintSatisfaction&)::'lambda'(clang::Expr const*)::operator()(clang::Expr const*) const SemaConcept.cpp:0:0
#27 0x000000000627eb23 clang::ActionResult<clang::Expr*, true> calculateConstraintSatisfaction<calculateConstraintSatisfaction(clang::Sema&, clang::NamedDecl const*, clang::SourceLocation, clang::MultiLevelTemplateArgumentList const&, clang::Expr const*, clang::ConstraintSatisfaction&)::'lambda'(clang::Expr const*)>(clang::Sema&, clang::Expr const*, clang::ConstraintSatisfaction&, calculateConstraintSatisfaction(clang::Sema&, clang::NamedDecl const*, clang::SourceLocation, clang::MultiLevelTemplateArgumentList const&, clang::Expr const*, clang::ConstraintSatisfaction&)::'lambda'(clang::Expr const*)&&) SemaConcept.cpp:0:0
#28 0x000000000627f3b2 CheckConstraintSatisfaction(clang::Sema&, clang::NamedDecl const*, llvm::ArrayRef<clang::Expr const*>, llvm::SmallVectorImpl<clang::Expr*>&, clang::MultiLevelTemplateArgumentList const&, clang::SourceRange, clang::ConstraintSatisfaction&) SemaConcept.cpp:0:0
#29 0x000000000627f9ea clang::Sema::CheckConstraintSatisfaction(clang::NamedDecl const*, llvm::ArrayRef<clang::Expr const*>, llvm::SmallVectorImpl<clang::Expr*>&, clang::MultiLevelTemplateArgumentList const&, clang::SourceRange, clang::ConstraintSatisfaction&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x627f9ea)
#30 0x0000000006280abb clang::Sema::CheckInstantiatedFunctionTemplateConstraints(clang::SourceLocation, clang::FunctionDecl*, llvm::ArrayRef<clang::TemplateArgument>, clang::ConstraintSatisfaction&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6280abb)
#31 0x0000000006aa6267 clang::Sema::FinishTemplateArgumentDeduction(clang::FunctionTemplateDecl*, llvm::SmallVectorImpl<clang::DeducedTemplateArgument>&, unsigned int, clang::FunctionDecl*&, clang::sema::TemplateDeductionInfo&, llvm::SmallVectorImpl<clang::Sema::OriginalCallArg> const*, bool, llvm::function_ref<bool ()>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6aa6267)
#32 0x0000000006aa7aea void llvm::function_ref<void ()>::callback_fn<clang::Sema::DeduceTemplateArguments(clang::FunctionTemplateDecl*, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::FunctionDecl*&, clang::sema::TemplateDeductionInfo&, bool, bool, clang::QualType, clang::Expr::Classification, llvm::function_ref<bool (llvm::ArrayRef<clang::QualType>)>)::'lambda1'()>(long) SemaTemplateDeduction.cpp:0:0
#33 0x000000000611db41 clang::Sema::runWithSufficientStackSpace(clang::SourceLocation, llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x611db41)
#34 0x0000000006ab1812 clang::Sema::DeduceTemplateArguments(clang::FunctionTemplateDecl*, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::FunctionDecl*&, clang::sema::TemplateDeductionInfo&, bool, bool, clang::QualType, clang::Expr::Classification, llvm::function_ref<bool (llvm::ArrayRef<clang::QualType>)>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6ab1812)
#35 0x00000000068c5c13 clang::Sema::AddTemplateOverloadCandidate(clang::FunctionTemplateDecl*, clang::DeclAccessPair, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::OverloadCandidateSet&, bool, bool, bool, clang::CallExpr::ADLCallKind, clang::OverloadCandidateParamOrder, bool) (.constprop.0) SemaOverload.cpp:0:0
#36 0x00000000068cd94a clang::Sema::AddArgumentDependentLookupCandidates(clang::DeclarationName, clang::SourceLocation, llvm::ArrayRef<clang::Expr*>, clang::TemplateArgumentListInfo*, clang::OverloadCandidateSet&, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x68cd94a)
#37 0x00000000068d125b clang::Sema::LookupOverloadedBinOp(clang::OverloadCandidateSet&, clang::OverloadedOperatorKind, clang::UnresolvedSetImpl const&, llvm::ArrayRef<clang::Expr*>, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x68d125b)
#38 0x00000000068dca01 clang::Sema::CreateOverloadedBinOp(clang::SourceLocation, clang::BinaryOperatorKind, clang::UnresolvedSetImpl const&, clang::Expr*, clang::Expr*, bool, bool, clang::FunctionDecl*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x68dca01)
#39 0x00000000064f2ebe BuildOverloadedBinOp(clang::Sema&, clang::Scope*, clang::SourceLocation, clang::BinaryOperatorKind, clang::Expr*, clang::Expr*) SemaExpr.cpp:0:0
#40 0x0000000006577fa7 clang::Sema::BuildBinOp(clang::Scope*, clang::SourceLocation, clang::BinaryOperatorKind, clang::Expr*, clang::Expr*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6577fa7)
#41 0x0000000006ae9853 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformBinaryOperator(clang::BinaryOperator*) SemaTemplateInstantiate.cpp:0:0
#42 0x0000000006ae672b clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#43 0x0000000006aea5a0 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCondition(clang::SourceLocation, clang::VarDecl*, clang::Expr*, clang::Sema::ConditionKind) SemaTemplateInstantiate.cpp:0:0
#44 0x0000000006b1eb49 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformForStmt(clang::ForStmt*) SemaTemplateInstantiate.cpp:0:0
#45 0x0000000006b1d544 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCompoundStmt(clang::CompoundStmt*, bool) SemaTemplateInstantiate.cpp:0:0
#46 0x0000000006b2327a clang::Sema::SubstStmt(clang::Stmt*, clang::MultiLevelTemplateArgumentList const&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6b2327a)
#47 0x0000000006b73006 clang::Sema::InstantiateFunctionDefinition(clang::SourceLocation, clang::FunctionDecl*, bool, bool, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6b73006)
#48 0x0000000006b7143f clang::Sema::PerformPendingInstantiations(bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x6b7143f)
#49 0x00000000061408d9 clang::Sema::ActOnEndOfTranslationUnitFragment(clang::Sema::TUFragmentKind) (.part.0) Sema.cpp:0:0
#50 0x00000000061410b2 clang::Sema::ActOnEndOfTranslationUnit() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x61410b2)
#51 0x0000000005fd2461 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&, clang::Sema::ModuleImportState&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x5fd2461)
#52 0x0000000005fc52da clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x5fc52da)
#53 0x000000000404fe58 clang::CodeGenAction::ExecuteAction() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x404fe58)
#54 0x00000000042bcec9 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x42bcec9)
#55 0x000000000423bf1e clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x423bf1e)
#56 0x000000000439c7ce clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x439c7ce)
#57 0x0000000000c047f6 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xc047f6)
#58 0x0000000000bfc0ba ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#59 0x0000000004090f99 void llvm::function_ref<void ()>::callback_fn<clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const::'lambda'()>(long) Job.cpp:0:0
#60 0x000000000371c6c4 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x371c6c4)
#61 0x000000000409158f clang::driver::CC1Command::Execute(llvm::ArrayRef<std::optional<llvm::StringRef>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*, bool*) const (.part.0) Job.cpp:0:0
#62 0x00000000040596f5 clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x40596f5)
#63 0x000000000405a15d clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x405a15d)
#64 0x0000000004062055 clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0x4062055)
#65 0x0000000000c01c7c clang_main(int, char**, llvm::ToolContext const&) (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xc01c7c)
#66 0x0000000000afa9f1 main (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xafa9f1)
#67 0x00007f4e2c829d90 (/lib/x86_64-linux-gnu/libc.so.6+0x29d90)
#68 0x00007f4e2c829e40 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x29e40)
#69 0x0000000000bfbb9e _start (/opt/compiler-explorer/clang-assertions-trunk/bin/clang+++0xbfbb9e)
clang++: error: clang frontend command failed with exit code 134 (use -v to see invocation)
Compiler returned: 134
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsXN1zo7iW_2vIi8opEB82D3lwnORu39tzO9vOzM4-uQQcbG1A4koincxfvyUBNsLYiXvtnu26M9WTso04-p3f-dDRBxAp6ZoB3DjhrRPeXZFabbi48Yq6pOwq4dnbzYKXFS1AoPvXquAChOPPkRPebpSqpOPPHfzg4Ic1zxJeqGsu1g5--MPBD_l__5H8I3vcPDnhnYNnH2-OY8e9c9x58_dpQyWCV1JWBaCU1BIkUhtAaQdLcZQKIjfo2wYYogwtHHzr4FvsopJngAjLUF3pnhupkdv-a75in7K0qDNAjr94gVRx4fj3YxdrxkUGArKVBLVrY_5SplBJKHPwbId_ett8QAghqTINwZ93XSwo00IQZY5_2xelW5NacUSqqnhDjn-n2XZw1PBoLiUOXjSNQH_aCh9A7PogMpMOjieOf__CaWYB0__lXKBONFWmy8Txb81n7OmvoL82vFK11bC7f0-gM73b_aC_jKiotXPwjLLrBNZb5vACUXYNLNt919Knd_rLVkonfmhM8_dTjpzI3SobuYhKJKDkL5Bpedp7tg7VeJFEOWVwvb3_jddIVpDS_K1zJ29q3OkEAU2XprUmuOC8-r67bat-QETzd8lLUBvK1qispUIJIPkMKt286SDZ8G-oIGWSEYmIALQhLCsgQ5KyFNAntCEvgIClvGZKd43KulBUd8hz3b8ElAuypgYBy6iinEkdggJQCYRRti5ASpRuCFuDbCK3CVSQTajWUmNrQVyjZZ1uEJHIwf7UjdzgGi14XWRI8hI4A6TIMyCiaXxGRCG1odLxH_oKD7whLQhbN8YzKQs_CM6Vgx-K4qWcVIL_D6TdVwc_tJG--2F-9-Tgh2VJiuI3E7TXG8ef4zjQ0p4cHCHT0ARer9UTlFVBFCx4WXLm-Isn48T-QrUXJhURpAQFYuJNsI5PnUyMGF6BIDo9mGzs4NnZe5D0D1iptwocHOu88o2qDXoyId_w1bSCkjSfHmqWatsuU17BJ5ZzB89NLjje2x0yseffnp8jATkI0F56GmgcXQTOllADp-BsjWpmBtUM6fQb3ml3mUsJQkPSqYlmr1o40rd2aW6KckILyNoIfvx8P1_eI1knJVWIoKReIwEVF0qPd4OxlKpNnVynvNz57sDFqZQ1SAc_mNGwG9PMMGqGzoSkz0qQ1KS3SkAleApS6nzAa9H8rO8kUvKUEgUZEjVDMhW0Ui3kpSLpM8rqcjfWuteOGz8KvhakRESs6xKYkm0w8koj64bxCXTVBX4wNp2QjjI5UaJmzw5-SPQw8dCLazRZZ9-IyCcBmqzRhGu5pKq09FpVtbqWaFJqLtBk8jqLJkSWE_nGFHl1_DvKFBRoskSTyTpNJ4rzIt3oMdy_OwpPN5aMVHLDFZrkKS-4mGSUrBmXiqYSTXLGJ4ZY-2czTN-l2_LE8RctvV0x4WnCHH8BPNdOVhEhQehsByzTiTenBTQtcdtyJ8Cfzxx_7uk_iDKpCFOUKJ1i8zYcUAY5ZbRxQzzt1SvGk3UFwDh7K3ktdVxJub20zUtt88VqtWb1Kn19ba6vVoyLkhQrqtqGpvZAJu4WB4sf_Q8v0PmEaXnTtsZwsO8i99Xt_vOnWZjCrJcB5JtsPjwKypTx36cmCHp5V5BvKy6VAFLqFGLqE2WSp-biLF7s4Fv3tYW3q60c7HsD_H6cpmP4FwUQVldf2JKuGSkcPNumIJ2QLoNWg7HQYhutl2JvhhY6DL5Cyl9AvDXw_sOUGsLUfoZJq82CMwWv6jqtdB5xzf_bLvy2i2keAE5nAQ51GBnVCpo4-OF1Fq2iYFJQVr9O1qxuLqTXkl9HBri5xYId2DLjKM5TVKmNAJKtnmlRnNaBud_qIByCDqYRWkvDxangg2lkyY5s2Xg2zX1EEj1OnCTZ3GhJnu5J9pKTZXqJJXNmy_RjiKPTZJpbLJlx3-uiEOPY9_tVwXJbFSjxtiCVqgX8RgQlSaEDvdfyN1LUcAdp0SaavhCTZT_zlOjgGF7c9vC07eEflGXvykg4LwaN_rMmxZOpzqLjV_o1hq7ApTKozx7oLaO7SS32PdemPHRxEI0TclvTItOUfoX8_rUSHyZ8p631s5Zh7hrhVwsiwpD7T1Kasq8jZsjlP0EqyHSrpZnkURCfeTpsRErIvsMdumJy3tY7n6lUfTCXsZIxgmUlb2glEqc_lZUWv_9uCnhtox55P7WRSJxaRsIDI4XpzHvHSD329o01xtmQ11MC5TC9Ry59gNwu-V2CZM2hRbJvkZy4cehhC68AeBKEyZyL0vEXViHMSAmyMlVhbKv3aVtkN0uGraxWzsF4si4YP9NG3hcK-yWQViYYKjPFZlw-HfEPgRtacAlEQZBcnPt9Lb4XfmSz7YUQBheHv_j99zuogGXAlInmX6BMQIxG--GGpys7HdoqhPgnstXMhp-7sQeXtxUpihHDbH89XY14zwr-7OexAnYH8OOIXB7-LWVEvH3ZrVL0OhxeO10lb2gRnXJ_HovgQQ5zvWl6cfhf4V81FSD31bCvnK7OYDT3sBvDGQbAywEOBu4T5unly4_zuU844DsBmI2XqMs6kWqhazxBKFNHIFjl4i91oehneIFirHDslabnLxYbbfrFIrZHfDzNotBFKSnSutkh6LRbEkVlTtJmcjEbEnK4lD40lTk6X_kwR3sTsUPdHdIk6q0HT5vNOQdP9-3YnymNLhIfvaP5bBxxwVkK1ciCn7bGdGANSLC1ujM3qL-CrAvl-ItxX1OiBse_f9eK_uIvO79j5_uPUPCdcBZ_hdk79Ou7oi6BH42b2SBucj_BaLGB9Pnc1O62I-ZCkLevkO_H4e6GZsNndBP2U1kV4yGsbxqC-T5LNcb_Sth6uGZ1zE7v0x0P6Y6BjI-RH7bBvy_b5x7kG3P0B3l7YzDCM5ckyRF79WqkrDtbsDsz0KkiB0F0LNF0UnoLaO-Zdsh8a90_jVVDmsXqYJ5EIhxNx1l9oIzKzVCjO8jqkUgYMj7K2VHXNoIhG2VwbzflPUsNvXx37GQHsNWjOXoSnYB0R9EXQdeUkWJBimIu1qZ-2Vs-7cvtdvlXwniOboC6_fr7S3hAY2DLA_DAA6YEiDkJdBinubrDaZqkpCgSkj6vcnaInsakQ4vKD3vOB5arT0i5u2R7fs_pLH10t3CvHmkzQkGkpDnd5aB3_eU9dbd9Gqfq_lqFjNdUMtuCsTuD0J92bjUdHVB9e5LveVkSHNgXETX7L6o2yzrPaUqhPcexbKbMx_PxR33yArHTaGTFzmCZIPFm9i7FX77__9L3z59WjeUt17CXYGZpmHoHzjjMs-0o9-UFRMFJtiAsoxlR8D3-oX-dpylI-Uio-EHOs4d8CeqAQ4w4xnbtven67rP-YWQneq-XRyJI-UVkIAb7k9dm4K0Er67dLo91d4-nr2hgsCwODswH5lm2K3_arZzPnD_X1RaX3N-Q623fvju9_W4zvGPeUwx2_ihpOLWixF4rmmUeDg8U9Q3BHWrIbin7UtksH1FppBVk3f7CiKP9ygRIXrxAtgSlSz5rvnSaeS5Gp2HLonM2oDMl7oEheCGgl29G6Tw6GbJ3aE5m8N0F5t6vR_LG3pB1CZY1iRbL9spBkGNIAJmzHsf5HF2hMXvAJy55vUv-O5w26VB_HU2FweCw2HSakwOTQqP1mK5_ilZnP5diNO_bPhjuK8az0P-5t0oD_FNvlQb-AD4JiXv5IwTd81MnpMzfiBgv2Mb9uperu86amDiRn8HhIw-S4PInRB64WKpSDcrX7sfTjTzc0MzC4Aec6eFlxWuW7WtiX7HOxp2k1uCoEvbx9EDNafZp94H0AHzP0u8FdmeNDlbKtGu8ZOq77oGjxz2-diN79_jL_22ldnwScgH9jXqW_rOB_l7g5-P6P4LQfvcILKNsvWNDd-zg2eUwa0gWZrvE8QJ3lsUHJkOp-sLuWfYlN3FTGLS_MqoeBFmbFdv9IqgJs1-7Fl1a09O2igi1m7GNRk3oDsB5bnJg1eUguGah6PxLRAZLn8nQKhjCPMNBZJXkj-Z5sd7nJ16Z0G2c15rfVORfNTwqMVwpT4u_CV5XZh4yshO04-MXntUFfCorLtRSmfWFS2SBVk2LB2zzkIY4I3s8zJdPB2vmC0duC8nCbJUWgRvkEM7szZsM_gZs3h5FaMZySGsF825P5AJIWyAWUmuQD3CSQmrF64PgTAHLRqBeCGSDwQIZ2iD9JLcPe3ZvrWgSXwrjjB7W6iK-3OK0FLGG7cCP02kKdkFnIO_0edmOU8MqwtL3IrOYFp-lgDUku6kbTPMIpam3ap8vHV_g2JC9fWr7N7xoHiG_iB4NSksNa2R1kzx1E4I68hfek8kU48_jd9t4ezoNFni0jPbxRqtuygR9gfHpcxjbaSN28zg-545a03frQwtvwcuSsGwY1KM23D6IyyvdO9Ec9PhRgrJ1O4w0Bt7esFqlr6-e13xJiKTpSprmLYtWY_3DSglClewuD8SRotAxYZ4F7q7rJr1ibXfmrLllcOhmb6vq7zwZtUfkDh9yjdKgZ4qxR1mbK19rtiQ5mHee_HkbTy3ivudH3sDFvHBm1ZT_di4yKB4P-gK2iQvjKA8PEmdsR_ZGzI5NK5kPbtQNDq14Hmk6HyzBb3U7bwFh1LYcalDqhMQLs1N5-TtP5GFS_s6TvYNHx1Lz1g8qQrs3BpzAY-ssP4RNTZbFpl2OuRF2w4Nedtf7bBUOIxXDISv8QDYvUM4aeiz-wkF94qXd4w9dhdLhN2llvrd7eWjYPntNopFZ0K3a0CU5iXPPvGbs3H03oq2-h8__x1l84qsWzC2WzNlQJgQuWq30bSupiFCrnnIf7gUCu5d4UMklSQyokX9u3hrh2977l_05AiHMYyaNt6G8nWGgtI2I5o0_yLyCCV6p9q4MkOcHGmYtAU1ekOJIAiDaK_vbzrbv5ROgasFAx6S-efAurKvsxs9iPyZXcONNXX8W-14UXW1u8in2Z9E0TSLXJ1kywzjOwjh3_YDELuDsit5gF_sexjH2_RhH1xhgGuIsw3EYT7MAO4ELJaHFtY6Vay7WV-Y9QzfTKIz9q4IkUEjzYkGMGXxD5qKDsRPeXYkb84aipF5LJ3ALKpXcSVFUFXDz2dRnSBuHplS1aiLzqqX2PYDNy4s4Qy-koFlD394LAK-valHcfP8rk4w2_xsAAP__ibI5fA">