/*
*Copyright (c) Swadheen Islam Robi (SIR01)
*Created on Thu Sep 05 2024 8:30:43 PM
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define pie 2*(acos(0.0))
#define yes cout<<"YES\n"
#define no cout<<"NO\n"
#define pb push_back
#define endl "\n"
#define lcm(a,b) (a*b)/(__gcd<ll>(a,b))
#define mod 1000000007
#define srt(v) sort(v.begin(),v.end())
#define rsrt(v) sort(v.rbegin(),v.rend())
#define ALLAHU_AKBAR ios::sync_with_stdio(false); cin.tie(nullptr);
void sir()
{
// ll n,d,a,b; cin>>n>>d>>a>>b;
// ll ans;
// if(n<=d) ans = n*a;
// else ans = (d*a) + ((n-d)*b);
// cout<<ans<<endl;
string S;
cin >> S;
int Q;
cin >> Q;
bool rev = false;
for (int i = 0; i < Q; ++i) {
int qt;
cin >> qt;
if (qt == 1) {
rev = !rev;
}
else if (qt == 2) {
int D;
char C;
cin >> D >> C;
if (rev) {
D = 3 - D;
}
if (D == 1) {
S = C + S;
} else {
S += C;
}
}
}
if (rev) {
reverse(S.begin(), S.end());
}
cout << S << endl;
}
int main() {
ALLAHU_AKBAR
ll t = 1;
cin>>t;
while(t--)
{
sir();
}
return 0;
}