<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/60642>60642</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
ICE in clang::StmtVisitorBase on shark quoted constraint nested evaluation
</td>
</tr>
<tr>
<th>Labels</th>
<td>
new issue
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
ecatmur
</td>
</tr>
</table>
<pre>
The following program crashes since 16.0.0rc1:
```c++
template<auto Q> concept C = requires { Q.template operator()<int>(); };
template<class> concept D = true;
static_assert(C<[]<D>{}>); // ok
template<class> concept E = C<[]<D>{}>;
static_assert(E<int>); // ICE
```
Stack trace (from godbolt clang trunk, clang 16.0.0rc2 is similar):
```
#0 0x0000555bed38238f llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3ba838f)
#1 0x0000555bed3803bc llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3ba63bc)
#2 0x0000555bed2d38a8 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x00007f2007147420 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x14420)
#4 0x0000555bf094d5c0 clang::StmtVisitorBase<llvm::make_const_ptr, (anonymous namespace)::IntExprEvaluator, bool>::Visit(clang::Stmt const*) ExprConstant.cpp:0:0
#5 0x0000555bf0953406 Evaluate(clang::APValue&, (anonymous namespace)::EvalInfo&, clang::Expr const*) ExprConstant.cpp:0:0
#6 0x0000555bf0975e0e EvaluateInPlace(clang::APValue&, (anonymous namespace)::EvalInfo&, (anonymous namespace)::LValue const&, clang::Expr const*, bool) (.constprop.0) ExprConstant.cpp:0:0
#7 0x0000555bf099f0bf clang::Expr::EvaluateAsConstantExpr(clang::Expr::EvalResult&, clang::ASTContext const&, clang::Expr::ConstantExprKind) const (/opt/compiler-explorer/clang-trunk/bin/clang+++0x71c50bf)
#8 0x0000555befb77ac4 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
#9 0x0000555befb7836e 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
#10 0x0000555befb78958 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-trunk/bin/clang+++0x639e958)
#11 0x0000555befb795a8 clang::Sema::CheckInstantiatedFunctionTemplateConstraints(clang::SourceLocation, clang::FunctionDecl*, llvm::ArrayRef<clang::TemplateArgument>, clang::ConstraintSatisfaction&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x639f5a8)
#12 0x0000555bf036deb3 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 ()>) (.constprop.0) SemaTemplateDeduction.cpp:0:0
#13 0x0000555bf036e4ce void llvm::function_ref<void ()>::callback_fn<clang::Sema::DeduceTemplateArguments(clang::FunctionTemplateDecl*, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::FunctionDecl*&, clang::sema::TemplateDeductionInfo&, bool, llvm::function_ref<bool (llvm::ArrayRef<clang::QualType>)>)::'lambda1'()>(long) SemaTemplateDeduction.cpp:0:0
#14 0x0000555befa1add5 clang::Sema::runWithSufficientStackSpace(clang::SourceLocation, llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6240dd5)
#15 0x0000555bf0378543 clang::Sema::DeduceTemplateArguments(clang::FunctionTemplateDecl*, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::FunctionDecl*&, clang::sema::TemplateDeductionInfo&, bool, llvm::function_ref<bool (llvm::ArrayRef<clang::QualType>)>) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6b9e543)
#16 0x0000555bf0193b05 clang::Sema::AddMethodTemplateCandidate(clang::FunctionTemplateDecl*, clang::DeclAccessPair, clang::CXXRecordDecl*, clang::TemplateArgumentListInfo*, clang::QualType, clang::Expr::Classification, llvm::ArrayRef<clang::Expr*>, clang::OverloadCandidateSet&, bool, bool, clang::OverloadCandidateParamOrder) (.constprop.0) SemaOverload.cpp:0:0
#17 0x0000555bf01a7497 clang::Sema::BuildCallToMemberFunction(clang::Scope*, clang::Expr*, clang::SourceLocation, llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation, clang::Expr*, bool, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x69cd497)
#18 0x0000555befe3f539 clang::Sema::BuildCallExpr(clang::Scope*, clang::Expr*, clang::SourceLocation, llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation, clang::Expr*, bool, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6665539)
#19 0x0000555befe63f6b clang::Sema::ActOnCallExpr(clang::Scope*, clang::Expr*, clang::SourceLocation, llvm::MutableArrayRef<clang::Expr*>, clang::SourceLocation, clang::Expr*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6689f6b)
#20 0x0000555bf03b6723 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformCallExpr(clang::CallExpr*) SemaTemplateInstantiate.cpp:0:0
#21 0x0000555bf03ad6e2 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#22 0x0000555bf03b9114 (anonymous namespace)::TemplateInstantiator::TransformExprRequirement(clang::concepts::ExprRequirement*) SemaTemplateInstantiate.cpp:0:0
#23 0x0000555bf03d4a29 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformRequiresExpr(clang::RequiresExpr*) SemaTemplateInstantiate.cpp:0:0
#24 0x0000555bf03acf4e clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#25 0x0000555bf03de443 clang::Sema::SubstConstraintExpr(clang::Expr*, clang::MultiLevelTemplateArgumentList const&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6c04443)
#26 0x0000555befb76111 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 0x0000555befb778da 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 0x0000555befb7836e 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 0x0000555befb78958 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-trunk/bin/clang+++0x639e958)
#30 0x0000555bf026e502 clang::Sema::CheckConceptTemplateId(clang::CXXScopeSpec const&, clang::SourceLocation, clang::DeclarationNameInfo const&, clang::NamedDecl*, clang::ConceptDecl*, clang::TemplateArgumentListInfo const*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6a94502)
#31 0x0000555bf03c4aa4 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformConceptSpecializationExpr(clang::ConceptSpecializationExpr*) SemaTemplateInstantiate.cpp:0:0
#32 0x0000555bf03ad735 clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformExpr(clang::Expr*) SemaTemplateInstantiate.cpp:0:0
#33 0x0000555bf03de443 clang::Sema::SubstConstraintExpr(clang::Expr*, clang::MultiLevelTemplateArgumentList const&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6c04443)
#34 0x0000555befb76111 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
#35 0x0000555befb778da 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
#36 0x0000555befb7836e 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
#37 0x0000555befb78958 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-trunk/bin/clang+++0x639e958)
#38 0x0000555bf026eb02 clang::Sema::CheckConceptTemplateId(clang::CXXScopeSpec const&, clang::SourceLocation, clang::DeclarationNameInfo const&, clang::NamedDecl*, clang::ConceptDecl*, clang::TemplateArgumentListInfo const*) (.constprop.0) SemaTemplate.cpp:0:0
#39 0x0000555bf027f641 clang::Sema::BuildTemplateIdExpr(clang::CXXScopeSpec const&, clang::SourceLocation, clang::LookupResult&, bool, clang::TemplateArgumentListInfo const*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6aa5641)
#40 0x0000555befe47ca1 clang::Sema::ActOnIdExpression(clang::Scope*, clang::CXXScopeSpec&, clang::SourceLocation, clang::UnqualifiedId&, bool, bool, clang::CorrectionCandidateCallback*, bool, clang::Token*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x666dca1)
#41 0x0000555bef94a49c clang::Parser::tryParseCXXIdExpression(clang::CXXScopeSpec&, bool, clang::Token&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x617049c)
#42 0x0000555bef94a6d6 clang::Parser::ParseCXXIdExpression(bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x61706d6)
#43 0x0000555bef92bffb clang::Parser::ParseCastExpression(clang::Parser::CastParseKind, bool, bool&, clang::Parser::TypeCastState, bool, bool*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6151ffb)
#44 0x0000555bef92c912 clang::Parser::ParseCastExpression(clang::Parser::CastParseKind, bool, bool&, clang::Parser::TypeCastState, bool, bool*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6152912)
#45 0x0000555bef93a4bd clang::Parser::ParseConstantExpressionInExprEvalContext(clang::Parser::TypeCastState) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x61604bd)
#46 0x0000555bef9122a6 clang::Parser::ParseStaticAssertDeclaration(clang::SourceLocation&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x61382a6)
#47 0x0000555bef90193f clang::Parser::ParseDeclaration(clang::DeclaratorContext, clang::SourceLocation&, clang::ParsedAttributes&, clang::ParsedAttributes&, clang::SourceLocation*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x612793f)
#48 0x0000555bef8d10f5 clang::Parser::ParseExternalDeclaration(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x60f70f5)
#49 0x0000555bef8d2f7d clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&, clang::Sema::ModuleImportState&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x60f8f7d)
#50 0x0000555bef8c21fa clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x60e81fa)
#51 0x0000555bee6651c5 clang::CodeGenAction::ExecuteAction() (/opt/compiler-explorer/clang-trunk/bin/clang+++0x4e8b1c5)
#52 0x0000555bedf3d221 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-trunk/bin/clang+++0x4763221)
#53 0x0000555bedebf5e3 clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x46e55e3)
#54 0x0000555bee020deb clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x4846deb)
#55 0x0000555beab66e9c cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x138ce9c)
#56 0x0000555beab6265c ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&) driver.cpp:0:0
#57 0x0000555bedd1ef49 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
#58 0x0000555bed2d3d07 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3af9d07)
#59 0x0000555bedd1f17c 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
#60 0x0000555bedce712c clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-trunk/bin/clang+++0x450d12c)
#61 0x0000555bedce7b1d clang::driver::Compilation::ExecuteJobs(clang::driver::JobList const&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&, bool) const (/opt/compiler-explorer/clang-trunk/bin/clang+++0x450db1d)
#62 0x0000555bedcf1f6c clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x4517f6c)
#63 0x0000555beab64fa3 clang_main(int, char**) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x138afa3)
#64 0x00007f2006bf5083 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24083)
#65 0x0000555beab5e79e _start (/opt/compiler-explorer/clang-trunk/bin/clang+++0x138479e)
```
This is a blocker for us as we use shark quotes fairly heavily in metaprogramming.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzsXN1y27pzfxr6hhMPCH5f-EKW7VOfJk1O7J7mTgMCSwk1RSgA6Nh9-g5ISiIoUrJTJj35xzPJJCIB7O5vP7C7IEmU4ssS4MIJL53w6oxUeiXkBVCi15U8ywR7vrhfgZuLohDfeLl0N1IsJVm7VBK1AuUqXlJwvegcnSNJPcefOejKQTMnQs0f6uBL86e-qmG9KYgGx5-TSgv3L8e_dqkoKWy0O3cd_8qV8LXiEpTrxJfuX-fbGa7YgCRaSAcnDk4df85L7fjX25-XrhNfOf4hHVoQpbpkrmoyWlawG6400ZwuiFIgtYOTuePPG0Qcf35lqMSX9fLXLS3XwTcOvnHFw2l61zW9I0uOcXHdEdKieju_7oHc_LzThD64WhIKroOTXIq1uxQsE4V2aUHKpZG6fHDwvP25VRt2udHkmhdE1rT6Smx-ug72kYueEEIoDMMMmJ9gP8ndonhcm0n-TD2r5j-fJC91zdC94cfByX6QJN8WQmkJZO3gyLBjxMSpWyvzRmy0g2-oWG94AfIdPG0KIUGaa4brd60QNxkvt9daG8OX6MnPSOInuRFjx7TXYxr5GR1iel4AKavNx_KOL0tSODipytpBmFsIQ2UyFiM_oxaL2GIRMz8hiTs3TvYZqHgE-dzw9G-kZIWhlLSYWWPmotTwpM_pZuP4M1T_3ZHwWxJxjhGKvSAOMHIXCwlKCwkLqVvhCp45-OYpiRZR8K7gZfX0bllWzY2NXkkg7FyJc1TL4gUBRpYkQUeSHKUBCylq7K0B-U6v9d9ccS3kJVHGZfaaWJMHWFBRKr3YaGksw8EJKUX5vBaVckuyBrWpzSltJtyW-vppI68fSVE10WHuZkIUtV-ZATUlByc9BtyaiINnBkKzwtz8JuUIdKEtU-gHKHJbomCvPvv0NykqaA37BPtmidsyF-3ozjKGp1cyGdlMxiEg2DF5W34qGj-ciNcTo9_XK28lOCFdq7PGvc7r6xspNsbEXiJ4bAue5ijL-9T2Mhg0Zmq7Yn3PAsUe_RlUVQxIMLu7b53tmIxtWOnQ-ndeMiNVPWmSaBJ7NESZHfCSbjTJszgmNLC4p5qLspWt3rMsrhudNFvktUtJQSuzu9VySGICO9Fc5aRexcw_McJ2P1iTQ7T-g6yBXQEtLLPoThOVpPBeUNIsad38UBWav4dHKO7bnXgml9UaSv2eq6MaGiM3Jkm0s3AHxwVZZ4w4OD60oK7vNmnKSQi-k535SQX97vCbWWaia2SfN2nZcCRJe36T-BG48xXQh6mh3e95MynJ82fID_1wP8EYUHfO3ZoUxd9AtZC3600x7MJmUp-Z79NUo_zPpFzCK_R0HG6TlqE-3GmYuH1AGzov1cHvi_YUe0nkp5CGyW4vMUryekpKQ3JMSbfNXseJBnZTlTWHW-n3_Kue5xyLLttVjFZfqM8-3K1KfzKUeUhsKLGVqPgRg8wfhvKGl1yt-mJcAasGbL4P8yBQR424XhjYIGy1ee7qoLrqOK6evj2rnVR7Bls5OvnkCzndQ_RR8iUvSTEnRTGTy7bk7mWU3XXzltGFrM3FDHC37YPrkeTTkDvgejiY-T3lQkDBfRScjbNQ392zUA-hpCgyQh8WeTkmeaOtvrLUi43iiKOYuNQo5cVxcx8xpzeKFyvxFKN_VaS4f97AtplyfZhHeE0iscvXthX_K0wgsEIl8Qhj4bB_y6r8L65Xd1Wec8qhbZXcbQ5KtMPI-FJrmiqO4QAxFlpxzC6H_TgJg5E49maqk5jqNJrMUggD39Kk3TPwUj9DIxY7Y-wD6JXYbRJzUjLODvofL1OmuTqjFJT6RLjs781fvnwGKiT7LkMYgnK0Mi-IUjznQ971SjP6-AiyEITtYLkD3TON7b_HZn0ikqw_Sma0OrojbWcNRyG7HeKROEjjYZ1eVrxgZv-8Fx9gnYHcKq8Xg6gwGPbR7bQKXhiwPlSaZAW8EtmjyWGHCRvmiXwmpSxIY8tn7OYK-HnopyfwPewy_c6YRlEY-qmFqV14Q-TnUTYSh6j-WP7CmE6FYZLmUdbFECN7V86iGFu78r0EuJekVLmQa8efn-jgbsPsvqATcpel7tYZ1sT-6qyfQnXqw8HwhT1bDMIiwD9cjJE28Hew36vxstTzglPN8mEeDxj83ByN1pWZxWt71Kj2nFtDXy9Er5ZhAcHpD9dBy7M61IV95_XiBD2TonkAv5BJ9dJtBsFYun1XZUrvWxtHWPi-PtVEwYuiILATURz1ukyR53lvje1T5wrmau_BiKMz2mOnU41ZHPfPjxJG3s6P3s6Pfk_4X3Z-ZPymf-76dn7UUf7k50f44Lju7fzoH3d-5NtlCY4gRPi4kozCd8kR61UWX77UZd7dBuhxAEZijdEtkfUdo-vbMhdj6-xsYTC-GC5f16CyduJJ4CZpECJswd0rn2hASPDjq8AGDqMUTgr-PzW8A2Xh-LBXZ8U-7teJsR_-Okm93y-x_gWTej94S-r_OUm99RDjW1L__6_nt6T-l0jq_X5r4i2p_5FJvd_vPbwl9f_ApD7pJ_XZW1J_-gmiYYNPbSzjPAq8I-eJexAHEuz_K5DvhXioNtZD7wOn1j-xwCFhFHhd0wvsh0YhiCkZgas-KmxgAqVeeqzdxfCV6P1n-bUiBc85MGPipw7_50JKqL11d_w_b5_-6h2_drEXD1BOepIYMUpsiO1HPtOABCnt8vCJSAXtCZWWz_XP-Zcv41APYDou2nSBy4tRkFJLNNwXLWLRmGgjck16Fu7FKGKRxaJvs4izPM-Os0iUHkO-O9iMq383L6H0bbNv6t2p98-bmsydrh_46U-dzhq90Mtz61w7CHp40NTDvxEeOPWsDk9g13GpT4KMHcej8_5Rg8ltuX1rrn2JaRyknqRTiRWhIGOWWHaanXoYk-OeeVe_LzurX5ftJADHn5-cMLj4CSa259qpa4q81M-PijDK9vaGkDsFHd2GBm2VzbSWPKs0qO8Z0acxoVHjOPVzCzr75CRhHsrDo9BdP2mQJSlGIZwCAjOCl0tDo9m6psMA5THKrcdqg7SHAc7j4459LzZ1IdFkrF3hP27I1wo-adl_zp8Wf0hhMrx8sDjZJ08fBKsKuF1vhNz6_nS-g_Ikjy33D-20LqHYy8mB8LO7-9Hq-oc8qoYg8XJiMWolRxBFoUdDO6tj8AeUs7YP1pSDQCsNs21pOhV7ASSZRy0jCu0XyXOfYWylxzfSBJSSDfA3JWdx5GNsZZWhldcwyPIQfBu4hlbTOqcwjN24KNPZZxBBGILVyw6tLAQQRgwyu3FV87kX4nEXOJNjQk4XUoIkiBhYuVNo5QokiyIwmTz1Fmti1hh5GH1FDhof9jU8r99smZB5z08o2Ll6GPWYx1FI3S3Oc---dvTkaEvmQJLaRpjkjyAHq_HQ2sMZ8yAP0ilf42lot8Yw9-ZivSYl6_vhoF6UZtvTAUOdFNa3E-605OWyDeyN0nYTFgv69OR5zY-MKE4Xqh7eYmQNNhcWWhKu1fZ2bzlSFMa4hezcN0NmvQy4QX6oM3vwls2fIhvWR9L_MAZDcUcVQ5-_aO58rso7kkPxbMH5U96Z8UmeMmQ9NR6mPbvKvdiqqX87u6ibZRsiddMnGzOAyP7iDIXYw-PA1QojBzvbFk0rFPcmmgFjPbMjQ2dW-jHlhx2CEDEPWyEx8vpgZB57LRh_ikyNI_GnyA760MdC7E75G8Jl-8WiV4DXWsgPhDDzrEQzshMkmnt5NGpPV53_Wxv8wM4-Bv1PhHCiPCL04jyy7c7vbcVBTtrcbZtJbJmuo8Zs2syA5MRKxqKg-ymjKMtDlPjuYlHwzAQwInXN1Qu-Z0TPlTiPajo4QIlNpZc8hRCn4DbrTyVZEKewp2l_but-xZXLlUvcrBD0AaSbC-lWyiXK_QZupcBVKyIf3K-V0KDcnHBZPLsrII-8eHZ56a5Bk_aDbWteLs_P2IXPUj8lZ3DhRXGYxn4UoLPVhRcxQjFENGcRizKSU8JoFudBQlhOWHrGLzDCPsIoxcgLEDqPvSRNsA9pGDGEAuoECNaEF-fG0M-FXJ5xpSq4iFAU4LOCZFCo-itzGJfwza1vOhg74dWZvDBz3mXVUjkBKrjSar-K5rqAi9v5tZGnW_jZX5FyRdkFo_WO-lTMLUGZK9B8-4eL8qySxcVK6039wkT9TbUl16sqO6dibezC-Grzz7uNFP8N1Gi5Zlk5-KYW6X8DAAD__x4XoEw">