#include <string>#include <sstream>
uint64 stringToUINT64(const std::string s){ std::stringstream a; a << s; UINT64 ret = 0; a >> ret; return ret;}