<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/69962>69962</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
Explicit object parameter parsing bug in clang++
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
FredeEB
</td>
</tr>
</table>
<pre>
I was playing around with deducing this and found the following parser bug (from what I understand)
godbolt link: https://godbolt.org/z/E97d19oss
I tried to minimize it as much as possible, and this is the most condensed example I can come up with that still reproduces it.
It happens when a constructor of a base class has an explicit object parameter, and the derived class has a member variable with an `std::` namespace qualified type like `std::string` or `std::string_view`.
NOTE: The code is not supposed to compile, however, I don't expect a crash
```cpp
#include <string>
struct Thing {
template<typename Self, typename ... Args>
Thing(this Self&& self, Args&& ... args) { }
};
class Server : public Thing {
std::string name_;
};
```
with clang++ on the latest clang trunk on godbolt yielded
```
clang version 18.0.0 (https://github.com/llvm/llvm-project.git 7a3db658d923f0f0119c77e3fe849c5650c83601)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/compiler-explorer/clang-trunk/bin
Found candidate GCC installation: /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0
Selected GCC installation: /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0
Candidate multilib: .;@m64
Candidate multilib: 32;@m32
Candidate multilib: x32;@mx32
Selected multilib: .;@m64
(in-process)
"/opt/compiler-explorer/clang-trunk-20231023/bin/clang-18" -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name example.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/app -v -fcoverage-compilation-dir=/app -resource-dir /opt/compiler-explorer/clang-trunk-20231023/lib/clang/18 -internal-isystem /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0 -internal-isystem /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0/x86_64-linux-gnu -internal-isystem /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0/backward -internal-isystem /opt/compiler-explorer/clang-trunk-20231023/lib/clang/18/include -internal-isystem /usr/local/include -internal-isystem /opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -std=c++23 -fdeprecated-macro -ferror-limit 19 -fgnuc-version=4.2.1 -fno-implicit-modules -fcxx-exceptions -fexceptions -fcolor-diagnostics -mllvm --x86-asm-syntax=intel -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /app/output.s -x c++ <source>
clang -cc1 version 18.0.0 based upon LLVM 18.0.0git default target x86_64-unknown-linux-gnu
ignoring nonexistent directory "/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../x86_64-linux-gnu/include"
ignoring nonexistent directory "/include"
#include "..." search starts here:
#include <...> search starts here:
/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0
/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0/x86_64-linux-gnu
/opt/compiler-explorer/gcc-snapshot/lib/gcc/x86_64-linux-gnu/14.0.0/../../../../include/c++/14.0.0/backward
/opt/compiler-explorer/clang-trunk-20231023/lib/clang/18/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
<source>:5:11: error: an explicit object parameter cannot appear in a constructor
5 | Thing(this Self&& self, Args&& ... args) { }
| ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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-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++23 -v <source>
1. <source>:10:2: current parser token ';'
2. <source>:8:1: parsing struct/union/class body 'Server'
#0 0x0000000003445898 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3445898)
#1 0x00000000034439c4 llvm::sys::CleanupOnSignal(unsigned long) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x34439c4)
#2 0x00000000033918b8 CrashRecoverySignalHandler(int) CrashRecoveryContext.cpp:0:0
#3 0x00007f6debf83420 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x14420)
#4 0x00000000064fbbb1 DeduceTemplateArgumentsFromCallArgument(clang::Sema&, clang::TemplateParameterList*, unsigned int, clang::QualType, clang::QualType, clang::Expr::Classification, clang::Expr*, clang::sema::TemplateDeductionInfo&, llvm::SmallVectorImpl<clang::DeducedTemplateArgument>&, llvm::SmallVectorImpl<clang::Sema::OriginalCallArg>&, bool, unsigned int, unsigned int, clang::TemplateSpecCandidateSet*) SemaTemplateDeduction.cpp:0:0
#5 0x0000000006522acb 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-trunk/bin/clang+++0x6522acb)
#6 0x0000000006340540 clang::Sema::AddTemplateOverloadCandidate(clang::FunctionTemplateDecl*, clang::DeclAccessPair, clang::TemplateArgumentListInfo*, llvm::ArrayRef<clang::Expr*>, clang::OverloadCandidateSet&, bool, bool, bool, clang::CallExpr::ADLCallKind, clang::OverloadCandidateParamOrder, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6340540)
#7 0x0000000006209198 clang::Sema::LookupSpecialMember(clang::CXXRecordDecl*, clang::Sema::CXXSpecialMember, bool, bool, bool, bool, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x6209198)
#8 0x0000000005ef00ea specialMemberIsConstexpr(clang::Sema&, clang::CXXRecordDecl*, clang::Sema::CXXSpecialMember, unsigned int, bool, clang::CXXConstructorDecl*, clang::Sema::InheritedConstructorInfo*) SemaDeclCXX.cpp:0:0
#9 0x0000000005ef04c6 defaultedSpecialMemberIsConstexpr(clang::Sema&, clang::CXXRecordDecl*, clang::Sema::CXXSpecialMember, bool, clang::CXXConstructorDecl*, clang::Sema::InheritedConstructorInfo*) SemaDeclCXX.cpp:0:0
#10 0x0000000005ef714c clang::Sema::DeclareImplicitCopyConstructor(clang::CXXRecordDecl*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5ef714c)
#11 0x0000000005ef8cf3 clang::Sema::AddImplicitlyDeclaredMembersToClass(clang::CXXRecordDecl*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5ef8cf3)
#12 0x0000000005da65a0 clang::Sema::ActOnFields(clang::Scope*, clang::SourceLocation, clang::Decl*, llvm::ArrayRef<clang::Decl*>, clang::SourceLocation, clang::SourceLocation, clang::ParsedAttributesView const&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5da65a0)
#13 0x0000000005efcdb7 clang::Sema::ActOnFinishCXXMemberSpecification(clang::Scope*, clang::SourceLocation, clang::Decl*, clang::SourceLocation, clang::SourceLocation, clang::ParsedAttributesView const&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5efcdb7)
#14 0x0000000005abfc40 clang::Parser::ParseCXXMemberSpecification(clang::SourceLocation, clang::SourceLocation, clang::ParsedAttributes&, unsigned int, clang::Decl*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5abfc40)
#15 0x0000000005ac1e19 clang::Parser::ParseClassSpecifier(clang::tok::TokenKind, clang::SourceLocation, clang::DeclSpec&, clang::Parser::ParsedTemplateInfo const&, clang::AccessSpecifier, bool, clang::Parser::DeclSpecContext, clang::ParsedAttributes&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5ac1e19)
#16 0x0000000005a91d64 clang::Parser::ParseDeclarationSpecifiers(clang::DeclSpec&, clang::Parser::ParsedTemplateInfo const&, clang::AccessSpecifier, clang::Parser::DeclSpecContext, clang::Parser::LateParsedAttrList*, clang::ImplicitTypenameContext) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5a91d64)
#17 0x0000000005a6418d clang::Parser::ParseDeclOrFunctionDefInternal(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec&, clang::AccessSpecifier) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5a6418d)
#18 0x0000000005a6503f clang::Parser::ParseDeclarationOrFunctionDefinition(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*, clang::AccessSpecifier) (.part.0) Parser.cpp:0:0
#19 0x0000000005a6de12 clang::Parser::ParseExternalDeclaration(clang::ParsedAttributes&, clang::ParsedAttributes&, clang::ParsingDeclSpec*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5a6de12)
#20 0x0000000005a6efd7 clang::Parser::ParseTopLevelDecl(clang::OpaquePtr<clang::DeclGroupRef>&, clang::Sema::ModuleImportState&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5a6efd7)
#21 0x0000000005a5e64a clang::ParseAST(clang::Sema&, bool, bool) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x5a5e64a)
#22 0x000000000464dc3d clang::CodeGenAction::ExecuteAction() (/opt/compiler-explorer/clang-trunk/bin/clang+++0x464dc3d)
#23 0x0000000003eef031 clang::FrontendAction::Execute() (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3eef031)
#24 0x0000000003e6dd0b clang::CompilerInstance::ExecuteAction(clang::FrontendAction&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3e6dd0b)
#25 0x0000000003fce953 clang::ExecuteCompilerInvocation(clang::CompilerInstance*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3fce953)
#26 0x0000000000bff6e6 cc1_main(llvm::ArrayRef<char const*>, char const*, void*) (/opt/compiler-explorer/clang-trunk/bin/clang+++0xbff6e6)
#27 0x0000000000bf816d ExecuteCC1Tool(llvm::SmallVectorImpl<char const*>&, llvm::ToolContext const&) driver.cpp:0:0
#28 0x0000000003cbb329 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
#29 0x0000000003391ce3 llvm::CrashRecoveryContext::RunSafely(llvm::function_ref<void ()>) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3391ce3)
#30 0x0000000003cbb549 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
#31 0x0000000003c834f7 clang::driver::Compilation::ExecuteCommand(clang::driver::Command const&, clang::driver::Command const*&, bool) const (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3c834f7)
#32 0x0000000003c83ead 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+++0x3c83ead)
#33 0x0000000003c8dc1c clang::driver::Driver::ExecuteCompilation(clang::driver::Compilation&, llvm::SmallVectorImpl<std::pair<int, clang::driver::Command const*>>&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0x3c8dc1c)
#34 0x0000000000bfcb01 clang_main(int, char**, llvm::ToolContext const&) (/opt/compiler-explorer/clang-trunk/bin/clang+++0xbfcb01)
#35 0x0000000000af8341 main (/opt/compiler-explorer/clang-trunk/bin/clang+++0xaf8341)
#36 0x00007f6deba27083 __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24083)
#37 0x0000000000bf796e _start (/opt/compiler-explorer/clang-trunk/bin/clang+++0xbf796e)
clang++: error: clang frontend command failed with exit code 139 (use -v to see invocation)
Compiler returned: 139
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzkW81y4ziSfhrWBUEFf_R78EElWT2erd6qbTt6fVOAQFLCGgQ4ACjLc5hn3wBASSRFya5udU1tbEW3LYNAIvPLD5kJEMJas40AuAtGn4PR8hOuzFaqu5UCCvefP2WSvt09oFesUcnxGxMbhJWsBEWvzGwRBVoR22i2TCMsKMrdQ7MFlEvO5at9WGKlQaGs2qAgmeZKFuh1iw16QJWgoLTBggbJLIiWQTT3PzeSZpIbxJl4CdI52hpT6iCdB8kqSFb104FUmyBZ_TNIVvezCY1nUuumkAdkFAOKjEQFE6xg_wTEDMIaFRXZ2t-l1JplHIJk4bR3ZjDt9C-kNohIQUFooAj2uCg5oAdEsEBEFoCq0qNgrDHaMM6RglJJWhHQiJlBrYZBW1yWIDR63YJA2ErVRlXESIVkjjDKsAZEONYabbEFEsG-5Iwwg2T2P0CMxRAXYECdVAVEQbEd0OZIVECRgUI7rBjOOHgNsUDBONKGWgjTeTCOkMAF6BITQP-oMGe5A-qtBMTZC7R6a6OY2NgxUvU8WO8YvAbjaNCE_j-_Pt1bvz1tARFJwYIqpEG6KkupvU-ILErmsd_KV9h52x4QlSJIJsZCYC3HiCist03pwTjy_5GyrFuSlAnCKwooSBe1xul9c5BHHD1tLSWDyWffihBCBoqSYwNBurAIWGTQI_DcqnNsGAwGaK42-ijVjnTCgmTqeOOHjINkjHQ92g3wTXY8dn_O7OwomCxr7SbLIP3c1NS78xHUDhSyKJZVxhnpU73jC-fV9UlcU_QBs-ZMjhyEY2vE5yD5jKRwxLJoWPbbJ8ioSrzYJ4dF-caAU6Co1yVHE8QG7UBpJgWKp4NoENnF31nHzGyrbEBkESQrzneHX2GppGX9YMMMmuCUZuPRlM6SNI_yKI5nZDKBNIfpcEZG41FEpuk4io8R5AmrDRiL2346Xo-HYSVehHwVIWei2ocbUdX9tgowRYWkwB3KUrN9vWSFNphzoEum7KMgWcnSBMmq5qwK7fqUylJ25WwNHUpBssqY8DJWLhISLCij2AD6ZbFAzMvFhknxrtwNIaEWuNRbabtwlvnGIFnVhp0MSlbx0GLsp34EDsQA_ZFzLo6GFhU3zI5M52hg-TeMivHwWq80qbulybVu-2O__aHj0dJrk1riMWFJRUDrI09QkCQfdWyYREkaR0lae_jwMJ4GSYJCQmIUGsVsgrhEOhQ-opAybaNymCsAFBIOWIVYmzCDXCoIM0xeQNBTP7cadqBsfFaumWBFwx3mFYQuhKOwwEyEOeO-4ZCoBqQsUVgo4JI434eO6KhkBIUlIyGHHXCU-D-YDksGKCxym2bCUjJhc026xJyjMC-w2YaglJAozPMyJFIYhYkJ0qUUKMyFDF1VwMQmtH1RWDRyXIg5w9qqmlfilQkaGmucDtJlgkLjlmtIyspCF46HKDSVANewAQHKKkwhqzYhE7kMX5igQbps5tCQvmKVh3W4CdLlsB6xAWWFuWSw3NAMhbmX5N3tcaF2jS-DZIUtYjsU5kTuQOENXOmmQMtKEbDNHw4PTRb5pVXH3lU8RaGDXGAeMv2mDRR_wUpNVoPB-Y86c9qJfBo4DvgpleoR9rPqadfzK1b0e_X7IGdO0_dPUGkrzAYA_l7XH4JVT_9zpWBvP5BzO05IX3F_z-jvnwKFrq5a1h5NUhc3SgUEG6BhgYmygRCUkirkrGAGxTMU5htRkWYUGiSD2EdHVvhy3gbhirtQSPb7EPYEShtdbEPrDyK5VCFleCOkNozYOG-TAQpDGyWxLkL9JgzeB-nS2mWjNKZUabZB4XK9_mWxWP9t_vv9evnf899WyXqxeljPH38N0mWMQol8GLN-r0xZmYFG4R7V5roK2gW3Y63ryzmX5jo1nd25UFSVUqAvX37_tW62dRuFHFfcIB_f36nF2EZIX8BKAXumDQiDKFNg4_vbu5n6h3DUKvFxZbuDmjuUJBnYuRKkASuyRdpgZTTaggJbG_fsaGz_9P5a_58h4P00ivQI-4l0O2SFj-j03ZngJLQ3-ncfXw6ql3q65ntBkcwPfORMHw47WrEjnY-CdB7Htih3wdJ-uHa4YbdLQhqEyxKwQqxzWHLa945QMFmgW23BnaCjxH-5f8Ho_l_v_fOjv325nz_eI11lNhFgd86loJTKICO7J1fv7HgtzlpXoINk5Y55DjHA7srdOQiy7LHFtzs4Kd2Bk93WAEU18PUBEdZaEmYTFlKVQJooVh689GgweUG0Kspj_IgGQTT7puRG4cKiVBUgjP4Dm98jLV0uCTe-Nh-icHMh8byX1x5RGNqlaaTkZIuZ8GX4x9Zxfyq1Kdmh2W4-y_q7nlwYW6A6NI-jIJ0nFixSKWXTQX3maeQLCBQkE7slTSZeQtIjYWqluFMIrLTNLZ7zdvUJW004VLVGmaQ2w0z86dBRJAqSNELRPjr8S4fD0XQ2RY5j_oToTfsP3xQTxjHgydNoeuqk8OtaaqMAF27RLBATxq2XZPpneBAkn6N9rVNzA57GHaXTGRn2Kb3ggEVVfhWPbCNsQJtWwp1cU8SlneVmKloNWiomLRXTWTzNpmhh2fMbuJ3im9fpb1hQbmea1pi1-iykMLA3dlsepPPI_X-cIq2nmORjClk-TYdJhNZrBdpIBWtlauN82O9JRpxlpXHnWQMtbZL5HO3j4TCJWpYMm5aMh3mWZTFaAq0IPNVnoPPDyl8pWSww54eGIJl6sJw7HqHANUEarQch3w7x_AvTJkjmttvRXQ6c1rD_qjB_eivhY833-1IdOIG1Zjnz5xt93fzUjVZt9W7p6sy34x9ELmuTTvx7LDDnv7vC7qEoeZAuGsI8crQLnV3Q3yXn8ajUV8U2TGBeA3-SlEnJ-1C8gupBrccSyPE87RG8P2bITnqGQT87Ry3ajJIEkwz16n-BS23urCrhJjvNTvi5p7pCLJW8i-ZtaOdK4bffIG9jenC_RbAl9zD7cdYuiT9GkYNDDr__HG9P1uS1emvlLLLiUStC95t7nNPaO_M_bxIQa3e3wsi4xYd0GI2GUT8f5vS4Or7uQHGJ6ZGKf4QUtnVObLnzDTP1gxhzprlbRL0s6GGDXcon18-XX2zDfzBB35vFBdGvivrXYl7yjXzqXdby6aTl0ySaxbNpv0-_SPlSlTaqMMx_dW8b265cPD_bpKdovw9PkhbPzx0xlxFt_74RDt7MFg7TJg4jyKMIMNJNLR_0wu5IwNHl_Zz4p9Dohvc-fj0_L047pPcmeRBbUMwAbYw5rhGfFKyIxfNzfyqYdeEZkvHhpAfo478Lp38rLraKjTq4TOIhuZQiCccKHuoDwYUs3xpzvreSbkP8WsHTnYskjeOOBVOSpxeD-kF7_labQ70v9JN0ye2HmWG1bJnRKtZHFI9H-FJuIuarWDHgtKPuI5E2eZ-Rxe3WvsjearPBr_fyzKHrWZ65OsHVh9_sZpPOjVEsqwzo3xm8-nMTt85uhLYHs4V22iENodnkKtqC6e3i-dmzxS3jUxl0Qx_8H0LVg9ZCtbVNG-EsJ-36yimmGp8_hOjNcKhj95Wtx63XuYeghdGojRGJIZ5dx8jGpRqfbsVi5EtdQsoXED3F2bu8s4LPc9qZEsdq2OaWBpdao3yB21C1N781ZR80qM8YPuK_W3nGAd_yzLjtmVlMx8OroPgU4pA9Gt0JyT8A4j8Obd3zi6_Za6gbJx-N_oe8-VTfKjtKvZU7HNotd0za7hgP4yl91x1f1WmbnD_Ur03bLrkQFb67BxOby94989OtcHIwtHCadnAaRWn-Udq24GKCnUffvwStLrv60RqUWJmBjZ7I29Bfwc469lOIk6v23-89LRo4_Bibb8YBa2KTA0nUwQByOrmKwZMsv8AOuE94TeO_lvgfFXwz6rz4-0XJqnRl4f25waeK6Vd3U-ChKKUyj8YdmNwwbjvbWsa3NwB4BOMhPjN-_vh0cTP3V2zRaz1airZK_OF4SEnaimgLSeEXEHNS33h0ZztAKgN1k9XrNurVs7fUa9XEKUAepXHrAFLZoC9oj3431KyeuKXZsK3ZmNIoawPn53K3XwWBfuwum3I7ftbKtbRvVXxpTmA2Stvnq07PkxE72VcHnxl5u5BSK9XSulUNRVmej2GMCInXBbYyLhzsbrE6lC7HjWKrLVmgnWT0hsp71Vq6Tzq6T-MxRQeYF_GTW-fTqy85zgzpvBexMuoiqLW1oortLmSqpJWpU5JlaTJzaFw-RndP_eryr1uDdE4w5xkmL-tctGO0n7tmyyJeyKLAgnYXaq_jjtfxpbvIhS0GDXzcHf068nuvHges12S_dzclgnSeYc3I-vAtBodiq7NtWBuFmdGHxx1xmLtrv1I1ntsu81OAdszxmLshQTLhuMgoDpLJCapkeni9-neZ9ftj1n0_SiBtuKLvLah_8lslHnEO_K0F53XX3WqpejWbdO-8PydZNhq2tpT_73jRqR4vEaDzDp9M02E-uQjc6UZ1N2w7NFuxujPQdri0o7vSdd6qTxq2_XkWeVtbLEq6YACm3wvG32WmLyPxd5nZ3WULiWtB-Oj8EjPr9_Pzmqvg1Qz5CyEE3Kqg0rQDISUxuaTusvG5VQH0pP5L0P9ACG8UvTwmLdCGnWRNsqguOw-lxkFpFzXmZ6fVl1LxbYoLq05L31Y5F-F8mg5jZDW9yYReXmvCceuODU4m0TRF6zVnmQ2pWJl1Y_ZrF23IQMvB2E2TDKNpO4l0a6bJbAzIy78Rklbiccrm4-YlS9eO8ro-R6RmZI4Zh_q7u7Bnxn83M06dlysNKNwhI5EGQKxRP9eTHUpnpMBUSoBdE3Zw5xuAn-hdSmfpDH-Cu3g8m0bTaTRKP23vIgownM7yyXg8zCfTySQeZXSaUSCUJJjGn9jd4YprPIsmaTpIomSWzqIRAIkpyUgwjKDAjA8sbQdSbT6525J349lsnHziOAOu3TeZk6RGJglGy0_qzt2xzKqNDoYRZ9rokwTDDIe7-4tXUg8X8rJqg5hoflvyU6X43R-_3-mU_t8AAAD__4-_JBg">