#define _STRINGIFY(...) #__VA_ARGS__
#define STRINGIFY(...) _STRINGIFY(__VA_ARGS__)
#define _COMBINE(x, y) x##y
#define COMBINE(x, y) _COMBINE(x, y)