mips64: Tests for Cavium MIPS Octeon Atomic and Count Instructions.

Tests for instructions:
baddu, pop, dpop, saa, saad, laa, laad, lai, laid, lad, ladd, law, lawd,
las, lasd, lac, lacd


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13994 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/NEWS b/NEWS
index d94c4bd..c31caeb 100644
--- a/NEWS
+++ b/NEWS
@@ -90,6 +90,7 @@
 326921  coregrind fails to compile m_trampoline.S with MIPS/Linux port of V
 326983  Clear direction flag after tests on amd64.
 327212  Do not prepend the current directory to absolute path names.
+327223  Support for Cavium MIPS Octeon Atomic and Count Instructions
 327238  Callgrind Assertion 'passed <= last_bb->cjmp_count' failed
 327284  s390x: Fix translation of the risbg instruction
 327639  vex amd64->IR pcmpestri SSE4.2 instruction is unsupported 0x34
diff --git a/docs/internals/3_9_BUGSTATUS.txt b/docs/internals/3_9_BUGSTATUS.txt
index 9dd019f..06d1bd6 100644
--- a/docs/internals/3_9_BUGSTATUS.txt
+++ b/docs/internals/3_9_BUGSTATUS.txt
@@ -38,7 +38,6 @@
 
 === VEX/mips ===========================================================
 
-327223  Support for Cavium MIPS Octeon Atomic and Count Instructions
 328147  vex mips->IR: unhandled instruction bytes: 0x0 0x0 0x0 0xE
 
 === VEX/ppc ============================================================
diff --git a/none/tests/mips64/Makefile.am b/none/tests/mips64/Makefile.am
index 64d8b79..9175cba 100644
--- a/none/tests/mips64/Makefile.am
+++ b/none/tests/mips64/Makefile.am
@@ -15,6 +15,10 @@
 	cvm_lx_ins.stdout.exp-LE cvm_lx_ins.stdout.exp-BE \
 	cvm_lx_ins.stdout.exp-non-octeon \
 	cvm_lx_ins.stderr.exp cvm_lx_ins.vgtest \
+	cvm_atomic.stdout.exp-LE cvm_atomic.stdout.exp-non-octeon \
+	cvm_atomic.stderr.exp cvm_atomic.vgtest \
+	cvm_atomic_thread.stdout.exp-LE cvm_atomic_thread.stdout.exp-non-octeon \
+	cvm_atomic_thread.stderr.exp cvm_atomic_thread.vgtest \
 	extract_insert_bit_field.stdout.exp-mips64 \
 	extract_insert_bit_field.stdout.exp-mips64r2 \
 	extract_insert_bit_field.stderr.exp extract_insert_bit_field.vgtest \
@@ -61,6 +65,8 @@
 	branches \
 	cvm_ins \
 	cvm_lx_ins \
+	cvm_atomic \
+	cvm_atomic_thread \
 	extract_insert_bit_field \
 	fpu_arithmetic \
 	fpu_branches \
@@ -89,6 +95,8 @@
 
 cvm_ins_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON@
 cvm_lx_ins_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON2@
+cvm_atomic_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON2@
+cvm_atomic_thread_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON2@
 load_indexed_instructions_CFLAGS = $(AM_CFLAGS) -g -O0 @FLAG_OCTEON2@
 fpu_arithmetic_CFLAGS = $(AM_CFLAGS) -lm
 
diff --git a/none/tests/mips64/cvm_atomic.c b/none/tests/mips64/cvm_atomic.c
new file mode 100644
index 0000000..25e8eeb
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic.c
@@ -0,0 +1,298 @@
+#include <stdio.h>
+
+#define N 256
+
+unsigned long long reg_val_double[N];
+
+void init_reg_val_double()
+{
+   unsigned long c = 19650218UL;
+   int i;
+   reg_val_double[0]= c & 0xffffffffUL;
+   for (i = 1; i < N; i++) {
+      reg_val_double[i] = (1812433253UL * (reg_val_double[i - 1] ^
+                          (reg_val_double[i - 1] >> 30)) + i);
+   }
+}
+
+
+/* Make a copy of original array to prevent the unexpected changes by Atomic Add
+   Instructions */
+unsigned long long reg_val_double_copy[N]; 
+
+void copy_reg_val_double()
+{
+   int i;
+   for (i = 0; i < N; i++) {
+      reg_val_double_copy[i] = reg_val_double[i];
+   }
+}
+
+/* TEST1_32/64 macro is used in load atomic increment/decrement/set/clear
+   instructions. After executing each instruction we must check both memory
+   location and register value.
+
+   1: Move arguments (offset and base address) to registers 
+   2: Add offset and base address to make absolute address
+   3: Execute instruction
+   4: Move result from register ($t3)
+   5: Load memory data ('lw' for 32bit instruction and 'ld' for 64bit addresses)
+*/
+#define TEST1_32(instruction, offset,mem)                    \
+{                                                            \
+   unsigned long out = 0;                                    \
+   unsigned long res_mem = 0;                                \
+   __asm__ volatile(                                         \
+     "move         $t0, %2"        "\n\t"                    \
+     "move         $t1, %3"        "\n\t"                    \
+     "daddu        $t0, $t1, $t0"  "\n\t"                    \
+     instruction " $t3, ($t0)"     "\n\t"                    \
+     "move         %0,  $t3"       "\n\t"                    \
+     "lw           %1,  0($t0)"    "\n\t"                    \
+     : "=&r" (out), "=&r"(res_mem)                           \
+     : "r" (mem) , "r" (offset)                              \
+     : "$12", "$13", "cc", "memory"                          \
+     );                                                      \
+   printf("%s :: offset: 0x%x, out: 0x%lx, result:0x%lx\n",  \
+          instruction, offset, out, res_mem);                \
+}
+
+#define TEST1_64(instruction, offset,mem)                     \
+{                                                             \
+   unsigned long out = 0;                                     \
+   unsigned long res_mem = 0;                                 \
+   __asm__ volatile(                                          \
+     "move         $t0, %2"        "\n\t"                     \
+     "move         $t1, %3"        "\n\t"                     \
+     "daddu        $t0, $t1, $t0"  "\n\t"                     \
+     instruction " $t3, ($t0)"     "\n\t"                     \
+     "move         %0,  $t3"       "\n\t"                     \
+     "ld           %1,  0($t0)"    "\n\t"                     \
+     : "=&r" (out), "=&r"(res_mem)                            \
+     : "r" (mem) , "r" (offset)                               \
+     : "$12", "$13", "cc", "memory"                           \
+     );                                                       \
+   printf("%s :: offset: 0x%x, out: 0x%lx, result: 0x%lx\n",  \
+          instruction, offset, out, res_mem);                 \
+}
+
+/* Test 2 macro is used for pop/dpop/baddu instructions. After executing each
+   instructions the macro performs following operations:
+
+   1: Move arguments to registers
+   2: Execute instruction
+   3: Move result to register ($t3)
+*/
+#define TEST2(instruction, RSVal, RTVal)                            \
+{                                                                   \
+   unsigned long out;                                               \
+   __asm__ volatile(                                                \
+      "move $t1, %1"  "\n\t"                                        \
+      "move $t2, %2"  "\n\t"                                        \
+      instruction     "\n\t"                                        \
+      "move %0, $t3"  "\n\t"                                        \
+      : "=&r" (out)                                                 \
+      : "r" (RSVal), "r" (RTVal)                                    \
+      : "$12", "$13", "cc", "memory"                                \
+        );                                                          \
+   printf("%s :: rd 0x%lx, rs 0x%llx, rt 0x%llx\n",                 \
+          instruction, out, (long long) RSVal, (long long) RTVal);  \
+}
+
+/* TEST3 macro is used for store atomic add and store atomic add doubleword 
+   instructions. Following operations are performed by the test macro:
+
+   1: Move arguments to the register
+   2: Add offset and base address to make absolute address 
+   3: Execute instruction
+   4: Load memory data
+*/
+#define TEST3(instruction, offset, mem, value)                   \
+{                                                                \
+    unsigned long out = 0;                                       \
+    unsigned long outPre = 0;                                    \
+   __asm__ volatile(                                             \
+     "move         $t0, %2"        "\n\t"                        \
+     "move         $t1, %3"        "\n\t"                        \
+     "daddu        $t0, $t1, $t0"  "\n\t"                        \
+     "ld           %1,  0($t0)"    "\n\t"                        \
+     "move         $t2, %4"        "\n\t"                        \
+     instruction " $t2, ($t0)"     "\n\t"                        \
+     "ld           %0,  0($t0)"    "\n\t"                        \
+     : "=&r" (out), "=&r" (outPre)                               \
+     : "r" (mem) , "r" (offset), "r" (value)                     \
+     : "$12", "$13", "$14", "cc", "memory"                       \
+     );                                                          \
+     printf("%s :: value: 0x%llx, memPre: 0x%lx, mem: 0x%lx\n",  \
+            instruction, value, outPre, out);                    \
+}
+
+/* TEST4_32/64 is used for load atomic add/swap instructions. Following
+   operations are performed by macro after execution of each instruction:
+
+   1: Move arguments to register.
+   2: Add offset and base address to make absolute address.
+   3: Execute instruction.
+   4: Move result to register.
+   5: Load memory data ('lw' for 32bit instruction and 'ld' for 64bit).
+*/
+#define TEST4_32(instruction, offset, mem)                   \
+{                                                            \
+    unsigned long out = 0;                                   \
+    unsigned long res_mem = 0;                               \
+   __asm__ volatile(                                         \
+      "move         $t0, %2"          "\n\t"                 \
+      "move         $t1, %3"          "\n\t"                 \
+      "daddu        $t0, $t0, $t1"    "\n\t"                 \
+      instruction " $t3, ($t0), $t1"  "\n\t"                 \
+      "move         %0,  $t3"         "\n\t"                 \
+      "lw           %1,  0($t0)"      "\n\t"                 \
+      : "=&r" (out), "=&r"(res_mem)                          \
+      : "r" (mem) , "r" (offset)                             \
+      : "$12", "$13", "cc", "memory"                         \
+     );                                                      \
+   printf("%s :: offset: 0x%x, out: 0x%lx, result:0x%lx\n",  \
+          instruction, offset, out, res_mem);                \
+}
+
+#define TEST4_64(instruction, offset, mem)                    \
+{                                                             \
+    unsigned long out = 0;                                    \
+    unsigned long res_mem = 0;                                \
+   __asm__ volatile(                                          \
+      "move         $t0, %2"          "\n\t"                  \
+      "move         $t1, %3"          "\n\t"                  \
+      "daddu        $t0, $t0,   $t1"  "\n\t"                  \
+      instruction " $t3, ($t0), $t1"  "\n\t"                  \
+      "move         %0,  $t3"         "\n\t"                  \
+      "ld           %1,  0($t0)"      "\n\t"                  \
+     : "=&r" (out), "=&r"(res_mem)                            \
+     : "r" (mem) , "r" (offset)                               \
+     : "$12", "$13", "cc", "memory"                           \
+     );                                                       \
+   printf("%s :: offset: 0x%x, out: 0x%lx, result: 0x%lx\n",  \
+          instruction, offset, out, res_mem);                 \
+}
+
+typedef enum {
+   BADDU, POP, DPOP, SAA, SAAD, LAA, LAAD, LAW, LAWD, LAI, LAID, LAD, LADD,
+   LAS, LASD, LAC, LACD
+} cvm_op;
+
+int main()
+{
+#if (_MIPS_ARCH_OCTEON2)
+   init_reg_val_double();
+   int i,j;
+   cvm_op op;
+   for (op = BADDU; op <= LACD; op++) {
+      switch(op){
+         /* Unsigned Byte Add - BADDU rd, rs, rt; Cavium OCTEON */
+         case BADDU: {
+            for(i = 4; i < N; i += 4)
+               for(j = 4; j < N; j += 4)
+                  TEST2("baddu $t3, $t1, $t2", reg_val_double[i],
+                                               reg_val_double[j]);
+            break;
+         }
+         case POP: {  /* Count Ones in a Word - POP */
+            for(j = 4; j < N; j += 4)
+               TEST2("pop $t3, $t1", reg_val_double[j], 0);
+            break;
+         }
+         case DPOP: {  /* Count Ones in a Doubleword - DPOP */
+            for(j = 8; j < N; j += 8)
+               TEST2("dpop $t3, $t1", reg_val_double[j], 0);
+            break;
+         }
+         case SAA: {  /* Atomic Add Word - saa rt, (base). */
+            copy_reg_val_double();
+            for(j = 4; j < N; j += 4)
+               TEST3("saa", j, reg_val_double_copy, reg_val_double[j]);
+            break;
+         }
+         case SAAD: {  /* Atomic Add Double - saad rt, (base). */
+            copy_reg_val_double();
+            for(j = 8; j < N; j += 8)
+               TEST3("saad", j, reg_val_double_copy, reg_val_double[j]);
+            break;
+         }
+         case LAA: {  /* Load Atomic Add Word - laa rd, (base), rt. */
+            copy_reg_val_double();
+            for(j = 4; j < N; j += 4)
+               TEST4_32("laa", j, reg_val_double_copy);
+            break;
+         }
+         case LAAD: {  /* Load Atomic Add Double - laad rd, (base), rt */
+            copy_reg_val_double();
+            for(j = 8; j < N; j += 8)
+               TEST4_64("laad ", j, reg_val_double_copy);
+            break;
+         }
+         case LAW: {  /* Load Atomic Swap Word - law rd, (base), rt */
+            copy_reg_val_double();
+            for(j = 4; j < N; j += 4)
+               TEST4_32("law", j, reg_val_double_copy);
+            break;
+         }
+         case LAWD: {  /* Load Atomic Swap Double - lawd rd, (base), rt */
+            copy_reg_val_double();
+            for(j = 8; j < N; j += 8)
+               TEST4_64("lawd", j, reg_val_double_copy);
+            break;
+         }
+         case LAI: {  /* Load Atomic Increment Word - lai rd, (base) */
+            copy_reg_val_double();
+            for(i = 4; i < N; i += 4)
+               TEST1_32("lai", i, reg_val_double_copy);
+            break;
+         }
+         case LAID: {  /* Load Atomic Increment Double - laid rd, (base) */
+            copy_reg_val_double();
+            for(i = 8; i < N; i += 8)
+              TEST1_64("laid ", i, reg_val_double_copy);
+            break;
+         }
+         case LAD: {  /* Load Atomic Decrement Word - lad rd, (base) */
+            copy_reg_val_double();
+            for(i = 4; i < N; i += 4)
+               TEST1_32("lad", i, reg_val_double_copy);
+            break;
+         }
+         case LADD: {  /* Load Atomic Decrement Double - ladd rd, (base) */
+            copy_reg_val_double();
+            for(i = 8; i < N; i += 8)
+               TEST1_64("ladd",i, reg_val_double_copy);
+            break;
+         }
+         case LAS:{   /* Load Atomic Set Word - las rd, (base) */
+            copy_reg_val_double();
+            for(i = 4; i < N; i += 4)
+               TEST1_32("las",i, reg_val_double_copy);
+            break;
+         }
+         case LASD:{  /* Load Atomic Set Word - lasd rd, (base) */
+            copy_reg_val_double();
+            for(i = 8; i < N; i += 8)
+               TEST1_64("lasd",i, reg_val_double_copy);
+            break;
+         }
+         case LAC: {  /* Load Atomic Clear Word - lac rd, (base) */
+            copy_reg_val_double();
+            for(i = 4; i < N; i += 4)
+               TEST1_32("lac",i, reg_val_double_copy);
+            break;
+         }
+         case LACD: {  /* Load Atomic Clear Double - lacd rd, (base) */
+            copy_reg_val_double();
+            for(i = 8; i < N; i += 8)
+               TEST1_64("lacd",i, reg_val_double_copy);
+            break;
+         }
+         default:
+            printf("Nothing to be executed \n");
+      }
+   }
+#endif
+   return 0;
+}
diff --git a/none/tests/mips64/cvm_atomic.stderr.exp b/none/tests/mips64/cvm_atomic.stderr.exp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic.stderr.exp
diff --git a/none/tests/mips64/cvm_atomic.stdout.exp-LE b/none/tests/mips64/cvm_atomic.stdout.exp-LE
new file mode 100644
index 0000000..f47b0ac
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic.stdout.exp-LE
@@ -0,0 +1,4721 @@
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0x42b0c0a28677b502, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x42b0c0a28677b502, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x42b0c0a28677b502, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x42b0c0a28677b502, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x42b0c0a28677b502, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x42b0c0a28677b502, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x42b0c0a28677b502, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0x42b0c0a28677b502, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x42b0c0a28677b502, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x42b0c0a28677b502, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x42b0c0a28677b502, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x42b0c0a28677b502, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x42b0c0a28677b502, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x42b0c0a28677b502, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x42b0c0a28677b502, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x42b0c0a28677b502, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x42b0c0a28677b502, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x42b0c0a28677b502, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x42b0c0a28677b502, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x42b0c0a28677b502, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x42b0c0a28677b502, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x42b0c0a28677b502, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x42b0c0a28677b502, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x42b0c0a28677b502, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x42b0c0a28677b502, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x42b0c0a28677b502, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x42b0c0a28677b502, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x42b0c0a28677b502, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x42b0c0a28677b502, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x42b0c0a28677b502, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x42b0c0a28677b502, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x42b0c0a28677b502, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0x42b0c0a28677b502, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x42b0c0a28677b502, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x42b0c0a28677b502, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x42b0c0a28677b502, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x42b0c0a28677b502, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x42b0c0a28677b502, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x42b0c0a28677b502, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x42b0c0a28677b502, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x42b0c0a28677b502, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x42b0c0a28677b502, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x42b0c0a28677b502, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x42b0c0a28677b502, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x42b0c0a28677b502, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x42b0c0a28677b502, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x42b0c0a28677b502, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x42b0c0a28677b502, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x42b0c0a28677b502, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x42b0c0a28677b502, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x42b0c0a28677b502, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x42b0c0a28677b502, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x42b0c0a28677b502, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x42b0c0a28677b502, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x42b0c0a28677b502, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x42b0c0a28677b502, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x42b0c0a28677b502, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x42b0c0a28677b502, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x42b0c0a28677b502, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x42b0c0a28677b502, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x42b0c0a28677b502, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x42b0c0a28677b502, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x42b0c0a28677b502, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x9e705cc51ad8dca0, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x9e705cc51ad8dca0, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x9e705cc51ad8dca0, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x9e705cc51ad8dca0, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x9e705cc51ad8dca0, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x9e705cc51ad8dca0, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x9e705cc51ad8dca0, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x9e705cc51ad8dca0, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x9e705cc51ad8dca0, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x9e705cc51ad8dca0, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x9e705cc51ad8dca0, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x9e705cc51ad8dca0, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0x9e705cc51ad8dca0, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x9e705cc51ad8dca0, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x9e705cc51ad8dca0, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x9e705cc51ad8dca0, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x9e705cc51ad8dca0, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x9e705cc51ad8dca0, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x9e705cc51ad8dca0, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x9e705cc51ad8dca0, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x9e705cc51ad8dca0, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x9e705cc51ad8dca0, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x9e705cc51ad8dca0, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x9e705cc51ad8dca0, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x9e705cc51ad8dca0, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x9e705cc51ad8dca0, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x9e705cc51ad8dca0, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x9e705cc51ad8dca0, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x9e705cc51ad8dca0, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x9e705cc51ad8dca0, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x9e705cc51ad8dca0, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x9e705cc51ad8dca0, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x9e705cc51ad8dca0, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x9e705cc51ad8dca0, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x9e705cc51ad8dca0, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x9e705cc51ad8dca0, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x9e705cc51ad8dca0, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x9e705cc51ad8dca0, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x9e705cc51ad8dca0, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x9e705cc51ad8dca0, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x9e705cc51ad8dca0, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x9e705cc51ad8dca0, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x9e705cc51ad8dca0, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x9e705cc51ad8dca0, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x9e705cc51ad8dca0, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x9e705cc51ad8dca0, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x9e705cc51ad8dca0, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x9e705cc51ad8dca0, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x9e705cc51ad8dca0, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x9e705cc51ad8dca0, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x9e705cc51ad8dca0, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x9e705cc51ad8dca0, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x9e705cc51ad8dca0, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x9e705cc51ad8dca0, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x9e705cc51ad8dca0, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x9e705cc51ad8dca0, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x9e705cc51ad8dca0, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x9e705cc51ad8dca0, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x9e705cc51ad8dca0, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x9e705cc51ad8dca0, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x9e705cc51ad8dca0, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x9e705cc51ad8dca0, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x9e705cc51ad8dca0, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x47f505569a08a180, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x47f505569a08a180, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x47f505569a08a180, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x47f505569a08a180, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x47f505569a08a180, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x47f505569a08a180, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x47f505569a08a180, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x47f505569a08a180, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x47f505569a08a180, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x47f505569a08a180, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x47f505569a08a180, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x47f505569a08a180, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x47f505569a08a180, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x47f505569a08a180, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x47f505569a08a180, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0x47f505569a08a180, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x47f505569a08a180, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x47f505569a08a180, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x47f505569a08a180, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x47f505569a08a180, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x47f505569a08a180, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x47f505569a08a180, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x47f505569a08a180, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x47f505569a08a180, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x47f505569a08a180, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x47f505569a08a180, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0x47f505569a08a180, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x47f505569a08a180, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x47f505569a08a180, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x47f505569a08a180, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x47f505569a08a180, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x47f505569a08a180, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x47f505569a08a180, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x47f505569a08a180, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x47f505569a08a180, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x47f505569a08a180, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x47f505569a08a180, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x47f505569a08a180, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x47f505569a08a180, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x47f505569a08a180, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x47f505569a08a180, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x47f505569a08a180, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x47f505569a08a180, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x47f505569a08a180, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x47f505569a08a180, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x47f505569a08a180, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x47f505569a08a180, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x47f505569a08a180, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x47f505569a08a180, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x47f505569a08a180, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0x47f505569a08a180, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x47f505569a08a180, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x47f505569a08a180, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x47f505569a08a180, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x47f505569a08a180, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x47f505569a08a180, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x47f505569a08a180, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x47f505569a08a180, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x47f505569a08a180, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x47f505569a08a180, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x47f505569a08a180, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x47f505569a08a180, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x47f505569a08a180, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x94ff52fc81afa797, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x94ff52fc81afa797, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x94ff52fc81afa797, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x94ff52fc81afa797, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x94ff52fc81afa797, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x94ff52fc81afa797, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x94ff52fc81afa797, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x94ff52fc81afa797, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x94ff52fc81afa797, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x94ff52fc81afa797, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0x94ff52fc81afa797, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x94ff52fc81afa797, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x94ff52fc81afa797, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x94ff52fc81afa797, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x94ff52fc81afa797, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x94ff52fc81afa797, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x94ff52fc81afa797, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x94ff52fc81afa797, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x94ff52fc81afa797, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x94ff52fc81afa797, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x94ff52fc81afa797, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x94ff52fc81afa797, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x94ff52fc81afa797, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x94ff52fc81afa797, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x94ff52fc81afa797, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x94ff52fc81afa797, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x94ff52fc81afa797, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x94ff52fc81afa797, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x94ff52fc81afa797, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x94ff52fc81afa797, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x94ff52fc81afa797, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0x94ff52fc81afa797, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x94ff52fc81afa797, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x94ff52fc81afa797, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x94ff52fc81afa797, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x94ff52fc81afa797, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x94ff52fc81afa797, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x94ff52fc81afa797, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x94ff52fc81afa797, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x94ff52fc81afa797, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x94ff52fc81afa797, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x94ff52fc81afa797, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x94ff52fc81afa797, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x94ff52fc81afa797, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x94ff52fc81afa797, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0x94ff52fc81afa797, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x94ff52fc81afa797, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x94ff52fc81afa797, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x94ff52fc81afa797, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x94ff52fc81afa797, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x94ff52fc81afa797, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x94ff52fc81afa797, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x94ff52fc81afa797, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x94ff52fc81afa797, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x94ff52fc81afa797, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x94ff52fc81afa797, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x94ff52fc81afa797, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x94ff52fc81afa797, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x94ff52fc81afa797, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x94ff52fc81afa797, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xe9, rs 0x94ff52fc81afa797, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x94ff52fc81afa797, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x94ff52fc81afa797, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x556b3ecaccf17ac5, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x556b3ecaccf17ac5, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x556b3ecaccf17ac5, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x556b3ecaccf17ac5, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x556b3ecaccf17ac5, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x556b3ecaccf17ac5, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x556b3ecaccf17ac5, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x556b3ecaccf17ac5, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x556b3ecaccf17ac5, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0x556b3ecaccf17ac5, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x556b3ecaccf17ac5, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x556b3ecaccf17ac5, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x556b3ecaccf17ac5, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x556b3ecaccf17ac5, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x556b3ecaccf17ac5, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x556b3ecaccf17ac5, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x556b3ecaccf17ac5, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0x556b3ecaccf17ac5, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x556b3ecaccf17ac5, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x556b3ecaccf17ac5, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x556b3ecaccf17ac5, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x556b3ecaccf17ac5, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x556b3ecaccf17ac5, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x556b3ecaccf17ac5, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x556b3ecaccf17ac5, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x556b3ecaccf17ac5, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x556b3ecaccf17ac5, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x556b3ecaccf17ac5, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x556b3ecaccf17ac5, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x556b3ecaccf17ac5, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x556b3ecaccf17ac5, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x556b3ecaccf17ac5, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x556b3ecaccf17ac5, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x556b3ecaccf17ac5, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x556b3ecaccf17ac5, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x556b3ecaccf17ac5, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x556b3ecaccf17ac5, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0x556b3ecaccf17ac5, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x556b3ecaccf17ac5, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x556b3ecaccf17ac5, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x556b3ecaccf17ac5, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x556b3ecaccf17ac5, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x556b3ecaccf17ac5, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x556b3ecaccf17ac5, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x556b3ecaccf17ac5, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x556b3ecaccf17ac5, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x556b3ecaccf17ac5, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x556b3ecaccf17ac5, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0x556b3ecaccf17ac5, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x556b3ecaccf17ac5, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x556b3ecaccf17ac5, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x556b3ecaccf17ac5, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x556b3ecaccf17ac5, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x556b3ecaccf17ac5, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x556b3ecaccf17ac5, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x556b3ecaccf17ac5, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x556b3ecaccf17ac5, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x556b3ecaccf17ac5, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x556b3ecaccf17ac5, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x556b3ecaccf17ac5, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x556b3ecaccf17ac5, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x556b3ecaccf17ac5, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x556b3ecaccf17ac5, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x3c2cd9a9cda20766, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x3c2cd9a9cda20766, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x3c2cd9a9cda20766, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x3c2cd9a9cda20766, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x3c2cd9a9cda20766, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x3c2cd9a9cda20766, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x3c2cd9a9cda20766, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x3c2cd9a9cda20766, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x3c2cd9a9cda20766, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x3c2cd9a9cda20766, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x3c2cd9a9cda20766, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x3c2cd9a9cda20766, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x3c2cd9a9cda20766, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x3c2cd9a9cda20766, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x3c2cd9a9cda20766, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x3c2cd9a9cda20766, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x3c2cd9a9cda20766, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x3c2cd9a9cda20766, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x3c2cd9a9cda20766, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x3c2cd9a9cda20766, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x3c2cd9a9cda20766, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x3c2cd9a9cda20766, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x3c2cd9a9cda20766, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x3c2cd9a9cda20766, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x3c2cd9a9cda20766, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x3c2cd9a9cda20766, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x3c2cd9a9cda20766, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x3c2cd9a9cda20766, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x3c2cd9a9cda20766, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x3c2cd9a9cda20766, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x3c2cd9a9cda20766, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x3c2cd9a9cda20766, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x3c2cd9a9cda20766, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x3c2cd9a9cda20766, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x3c2cd9a9cda20766, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x3c2cd9a9cda20766, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x3c2cd9a9cda20766, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x3c2cd9a9cda20766, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x3c2cd9a9cda20766, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x3c2cd9a9cda20766, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x3c2cd9a9cda20766, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x3c2cd9a9cda20766, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x3c2cd9a9cda20766, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x3c2cd9a9cda20766, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x3c2cd9a9cda20766, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x3c2cd9a9cda20766, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x3c2cd9a9cda20766, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x3c2cd9a9cda20766, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x3c2cd9a9cda20766, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x3c2cd9a9cda20766, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x3c2cd9a9cda20766, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x3c2cd9a9cda20766, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x3c2cd9a9cda20766, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x3c2cd9a9cda20766, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x3c2cd9a9cda20766, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x3c2cd9a9cda20766, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x3c2cd9a9cda20766, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x3c2cd9a9cda20766, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0x3c2cd9a9cda20766, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x3c2cd9a9cda20766, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x3c2cd9a9cda20766, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x3c2cd9a9cda20766, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x3c2cd9a9cda20766, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0xd0d070db710cd036, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xd0d070db710cd036, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0xd0d070db710cd036, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0xd0d070db710cd036, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0xd0d070db710cd036, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0xd0d070db710cd036, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0xd0d070db710cd036, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0xd0d070db710cd036, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xd0d070db710cd036, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xd0d070db710cd036, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xd0d070db710cd036, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xd0d070db710cd036, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xd0d070db710cd036, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xd0d070db710cd036, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xd0d070db710cd036, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0xd0d070db710cd036, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0xd0d070db710cd036, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0xd0d070db710cd036, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xd0d070db710cd036, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xd0d070db710cd036, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0xd0d070db710cd036, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xd0d070db710cd036, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0xd0d070db710cd036, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xd0d070db710cd036, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xd0d070db710cd036, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xd0d070db710cd036, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xd0d070db710cd036, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xd0d070db710cd036, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0xd0d070db710cd036, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xd0d070db710cd036, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xd0d070db710cd036, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xd0d070db710cd036, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xd0d070db710cd036, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xd0d070db710cd036, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xd0d070db710cd036, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0xd0d070db710cd036, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0xd0d070db710cd036, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0xd0d070db710cd036, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xd0d070db710cd036, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xd0d070db710cd036, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0xd0d070db710cd036, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xd0d070db710cd036, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xd0d070db710cd036, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xd0d070db710cd036, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xd0d070db710cd036, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xd0d070db710cd036, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xd0d070db710cd036, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xd0d070db710cd036, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0xd0d070db710cd036, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xd0d070db710cd036, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xd0d070db710cd036, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xd0d070db710cd036, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xd0d070db710cd036, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xd0d070db710cd036, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0xd0d070db710cd036, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xd0d070db710cd036, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0xd0d070db710cd036, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0xd0d070db710cd036, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xd0d070db710cd036, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0xd0d070db710cd036, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0xd0d070db710cd036, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xd0d070db710cd036, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0xd0d070db710cd036, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0x2f39454412d6e4a7, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x2f39454412d6e4a7, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x2f39454412d6e4a7, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x2f39454412d6e4a7, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x2f39454412d6e4a7, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x2f39454412d6e4a7, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x2f39454412d6e4a7, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x2f39454412d6e4a7, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x2f39454412d6e4a7, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x2f39454412d6e4a7, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x2f39454412d6e4a7, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0x2f39454412d6e4a7, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x2f39454412d6e4a7, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x2f39454412d6e4a7, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x2f39454412d6e4a7, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x2f39454412d6e4a7, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x2f39454412d6e4a7, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x2f39454412d6e4a7, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x2f39454412d6e4a7, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x2f39454412d6e4a7, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x2f39454412d6e4a7, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x2f39454412d6e4a7, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x2f39454412d6e4a7, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x2f39454412d6e4a7, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x2f39454412d6e4a7, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x2f39454412d6e4a7, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x2f39454412d6e4a7, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x2f39454412d6e4a7, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x2f39454412d6e4a7, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x2f39454412d6e4a7, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x2f39454412d6e4a7, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x2f39454412d6e4a7, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x2f39454412d6e4a7, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x2f39454412d6e4a7, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x2f39454412d6e4a7, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x2f39454412d6e4a7, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x2f39454412d6e4a7, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x2f39454412d6e4a7, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x2f39454412d6e4a7, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x2f39454412d6e4a7, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x2f39454412d6e4a7, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x2f39454412d6e4a7, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x2f39454412d6e4a7, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x2f39454412d6e4a7, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0x2f39454412d6e4a7, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0x2f39454412d6e4a7, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x2f39454412d6e4a7, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x2f39454412d6e4a7, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x2f39454412d6e4a7, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x2f39454412d6e4a7, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x2f39454412d6e4a7, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x2f39454412d6e4a7, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x2f39454412d6e4a7, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x2f39454412d6e4a7, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x2f39454412d6e4a7, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x2f39454412d6e4a7, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x2f39454412d6e4a7, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x2f39454412d6e4a7, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x2f39454412d6e4a7, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x2f39454412d6e4a7, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x2f39454412d6e4a7, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x2f39454412d6e4a7, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x2f39454412d6e4a7, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0xed5005cbc8b0a214, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0xed5005cbc8b0a214, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xed5005cbc8b0a214, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0xed5005cbc8b0a214, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xed5005cbc8b0a214, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xed5005cbc8b0a214, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xed5005cbc8b0a214, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0xed5005cbc8b0a214, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0xed5005cbc8b0a214, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xed5005cbc8b0a214, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0xed5005cbc8b0a214, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0xed5005cbc8b0a214, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0xed5005cbc8b0a214, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xed5005cbc8b0a214, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0xed5005cbc8b0a214, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0xed5005cbc8b0a214, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xed5005cbc8b0a214, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xed5005cbc8b0a214, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xed5005cbc8b0a214, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0xed5005cbc8b0a214, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xed5005cbc8b0a214, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0xed5005cbc8b0a214, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0xed5005cbc8b0a214, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0xed5005cbc8b0a214, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xed5005cbc8b0a214, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xed5005cbc8b0a214, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0xed5005cbc8b0a214, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0xed5005cbc8b0a214, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xed5005cbc8b0a214, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xed5005cbc8b0a214, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0xed5005cbc8b0a214, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0xed5005cbc8b0a214, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0xed5005cbc8b0a214, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xed5005cbc8b0a214, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xed5005cbc8b0a214, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xed5005cbc8b0a214, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xed5005cbc8b0a214, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0xed5005cbc8b0a214, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xed5005cbc8b0a214, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xed5005cbc8b0a214, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0xed5005cbc8b0a214, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0xed5005cbc8b0a214, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xed5005cbc8b0a214, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xed5005cbc8b0a214, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0xed5005cbc8b0a214, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xed5005cbc8b0a214, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xed5005cbc8b0a214, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xed5005cbc8b0a214, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xed5005cbc8b0a214, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0xed5005cbc8b0a214, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0xed5005cbc8b0a214, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xed5005cbc8b0a214, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xed5005cbc8b0a214, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xed5005cbc8b0a214, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xed5005cbc8b0a214, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xed5005cbc8b0a214, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xed5005cbc8b0a214, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xed5005cbc8b0a214, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x6f, rs 0xed5005cbc8b0a214, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0xed5005cbc8b0a214, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0xed5005cbc8b0a214, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xed5005cbc8b0a214, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xed5005cbc8b0a214, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x87750a04ad765040, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x87750a04ad765040, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x87750a04ad765040, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x87750a04ad765040, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0x87750a04ad765040, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x87750a04ad765040, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x87750a04ad765040, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x87750a04ad765040, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x87750a04ad765040, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x87750a04ad765040, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x87750a04ad765040, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x87750a04ad765040, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x87750a04ad765040, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x87750a04ad765040, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x87750a04ad765040, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x87750a04ad765040, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x87750a04ad765040, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x87750a04ad765040, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x87750a04ad765040, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x87750a04ad765040, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x87750a04ad765040, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x87750a04ad765040, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x87750a04ad765040, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x87750a04ad765040, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x87750a04ad765040, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x87750a04ad765040, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x87750a04ad765040, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0x87750a04ad765040, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x87750a04ad765040, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x87750a04ad765040, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0x87750a04ad765040, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x87750a04ad765040, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0x87750a04ad765040, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x87750a04ad765040, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x87750a04ad765040, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x87750a04ad765040, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x87750a04ad765040, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x87750a04ad765040, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x87750a04ad765040, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x87750a04ad765040, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x87750a04ad765040, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x87750a04ad765040, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x87750a04ad765040, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x87750a04ad765040, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x87750a04ad765040, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x87750a04ad765040, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x87750a04ad765040, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x87750a04ad765040, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x87750a04ad765040, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x87750a04ad765040, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x87750a04ad765040, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x87750a04ad765040, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x87750a04ad765040, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x87750a04ad765040, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x87750a04ad765040, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x87750a04ad765040, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x87750a04ad765040, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x87750a04ad765040, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x87750a04ad765040, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x87750a04ad765040, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x87750a04ad765040, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x87750a04ad765040, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x87750a04ad765040, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xc4c770f630dcca5a, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0xc4c770f630dcca5a, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0xc4c770f630dcca5a, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xc4c770f630dcca5a, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0xc4c770f630dcca5a, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xc4c770f630dcca5a, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xc4c770f630dcca5a, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0xc4c770f630dcca5a, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0xc4c770f630dcca5a, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xc4c770f630dcca5a, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0xc4c770f630dcca5a, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xc4c770f630dcca5a, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0xc4c770f630dcca5a, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xc4c770f630dcca5a, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xc4c770f630dcca5a, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xc4c770f630dcca5a, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xc4c770f630dcca5a, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xc4c770f630dcca5a, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xc4c770f630dcca5a, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xc4c770f630dcca5a, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xc4c770f630dcca5a, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xe9, rs 0xc4c770f630dcca5a, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xc4c770f630dcca5a, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xc4c770f630dcca5a, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0xc4c770f630dcca5a, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0xc4c770f630dcca5a, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xc4c770f630dcca5a, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0xc4c770f630dcca5a, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0xc4c770f630dcca5a, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0xc4c770f630dcca5a, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xc4c770f630dcca5a, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xc4c770f630dcca5a, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xc4c770f630dcca5a, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0xc4c770f630dcca5a, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0xc4c770f630dcca5a, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xc4c770f630dcca5a, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0xc4c770f630dcca5a, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xc4c770f630dcca5a, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xc4c770f630dcca5a, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0xc4c770f630dcca5a, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xc4c770f630dcca5a, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xc4c770f630dcca5a, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xc4c770f630dcca5a, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0xc4c770f630dcca5a, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xc4c770f630dcca5a, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xc4c770f630dcca5a, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xc4c770f630dcca5a, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xc4c770f630dcca5a, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xc4c770f630dcca5a, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0xc4c770f630dcca5a, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xc4c770f630dcca5a, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xc4c770f630dcca5a, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xc4c770f630dcca5a, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xc4c770f630dcca5a, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xc4c770f630dcca5a, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xc4c770f630dcca5a, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0xc4c770f630dcca5a, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xc4c770f630dcca5a, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xc4c770f630dcca5a, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0xc4c770f630dcca5a, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xc4c770f630dcca5a, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0xc4c770f630dcca5a, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xc4c770f630dcca5a, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xbb8c035e0de0f0b8, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0xbb8c035e0de0f0b8, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0xbb8c035e0de0f0b8, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xbb8c035e0de0f0b8, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xbb8c035e0de0f0b8, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0xbb8c035e0de0f0b8, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xbb8c035e0de0f0b8, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0xbb8c035e0de0f0b8, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0xbb8c035e0de0f0b8, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xbb8c035e0de0f0b8, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xbb8c035e0de0f0b8, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xbb8c035e0de0f0b8, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xbb8c035e0de0f0b8, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xbb8c035e0de0f0b8, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0xbb8c035e0de0f0b8, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xbb8c035e0de0f0b8, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0xbb8c035e0de0f0b8, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xbb8c035e0de0f0b8, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xbb8c035e0de0f0b8, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xbb8c035e0de0f0b8, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xbb8c035e0de0f0b8, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xbb8c035e0de0f0b8, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0xbb8c035e0de0f0b8, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0xbb8c035e0de0f0b8, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0xbb8c035e0de0f0b8, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xbb8c035e0de0f0b8, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0xbb8c035e0de0f0b8, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xbb8c035e0de0f0b8, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0xbb8c035e0de0f0b8, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0xbb8c035e0de0f0b8, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xbb8c035e0de0f0b8, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0xbb8c035e0de0f0b8, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xbb8c035e0de0f0b8, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xbb8c035e0de0f0b8, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xbb8c035e0de0f0b8, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xbb8c035e0de0f0b8, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0xbb8c035e0de0f0b8, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xbb8c035e0de0f0b8, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0xbb8c035e0de0f0b8, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xbb8c035e0de0f0b8, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xbb8c035e0de0f0b8, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xbb8c035e0de0f0b8, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0xbb8c035e0de0f0b8, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xbb8c035e0de0f0b8, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xbb8c035e0de0f0b8, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xbb8c035e0de0f0b8, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xbb8c035e0de0f0b8, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xbb8c035e0de0f0b8, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0xbb8c035e0de0f0b8, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xbb8c035e0de0f0b8, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xbb8c035e0de0f0b8, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xbb8c035e0de0f0b8, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0xbb8c035e0de0f0b8, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xbb8c035e0de0f0b8, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xbb8c035e0de0f0b8, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xbb8c035e0de0f0b8, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0xbb8c035e0de0f0b8, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xbb8c035e0de0f0b8, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xbb8c035e0de0f0b8, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0xbb8c035e0de0f0b8, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0xbb8c035e0de0f0b8, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xbb8c035e0de0f0b8, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0xbb8c035e0de0f0b8, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x49fbf6a795b1a5ab, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0x49fbf6a795b1a5ab, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x49fbf6a795b1a5ab, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x49fbf6a795b1a5ab, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x49fbf6a795b1a5ab, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x49fbf6a795b1a5ab, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x49fbf6a795b1a5ab, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x49fbf6a795b1a5ab, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x49fbf6a795b1a5ab, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x49fbf6a795b1a5ab, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0x49fbf6a795b1a5ab, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x49fbf6a795b1a5ab, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x49fbf6a795b1a5ab, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x49fbf6a795b1a5ab, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x49fbf6a795b1a5ab, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x49fbf6a795b1a5ab, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x49fbf6a795b1a5ab, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x49fbf6a795b1a5ab, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x49fbf6a795b1a5ab, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x49fbf6a795b1a5ab, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x49fbf6a795b1a5ab, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x49fbf6a795b1a5ab, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x49fbf6a795b1a5ab, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x49fbf6a795b1a5ab, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x49fbf6a795b1a5ab, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x49fbf6a795b1a5ab, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x49fbf6a795b1a5ab, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x49fbf6a795b1a5ab, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x49fbf6a795b1a5ab, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x49fbf6a795b1a5ab, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x49fbf6a795b1a5ab, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x49fbf6a795b1a5ab, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x49fbf6a795b1a5ab, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x49fbf6a795b1a5ab, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x49fbf6a795b1a5ab, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x49fbf6a795b1a5ab, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x49fbf6a795b1a5ab, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x49fbf6a795b1a5ab, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x49fbf6a795b1a5ab, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0x49fbf6a795b1a5ab, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x49fbf6a795b1a5ab, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x49fbf6a795b1a5ab, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x49fbf6a795b1a5ab, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x49fbf6a795b1a5ab, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x49fbf6a795b1a5ab, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x49fbf6a795b1a5ab, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x49fbf6a795b1a5ab, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x49fbf6a795b1a5ab, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x49fbf6a795b1a5ab, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x49fbf6a795b1a5ab, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x49fbf6a795b1a5ab, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x49fbf6a795b1a5ab, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x49fbf6a795b1a5ab, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x49fbf6a795b1a5ab, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x49fbf6a795b1a5ab, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x49fbf6a795b1a5ab, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x49fbf6a795b1a5ab, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x49fbf6a795b1a5ab, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x49fbf6a795b1a5ab, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x49fbf6a795b1a5ab, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x49fbf6a795b1a5ab, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x49fbf6a795b1a5ab, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x49fbf6a795b1a5ab, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0xd685884e76558c4f, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0xd685884e76558c4f, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xd685884e76558c4f, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xd685884e76558c4f, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0xd685884e76558c4f, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xd685884e76558c4f, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xd685884e76558c4f, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xd685884e76558c4f, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xd685884e76558c4f, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0xd685884e76558c4f, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xd685884e76558c4f, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xd685884e76558c4f, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0xd685884e76558c4f, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xd685884e76558c4f, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xd685884e76558c4f, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xd685884e76558c4f, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xd685884e76558c4f, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xd685884e76558c4f, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xd685884e76558c4f, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xd685884e76558c4f, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xd685884e76558c4f, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xd685884e76558c4f, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xd685884e76558c4f, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xd685884e76558c4f, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0xd685884e76558c4f, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xd685884e76558c4f, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xd685884e76558c4f, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xd685884e76558c4f, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xd685884e76558c4f, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xd685884e76558c4f, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xd685884e76558c4f, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xd685884e76558c4f, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xd685884e76558c4f, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xd685884e76558c4f, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xd685884e76558c4f, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xd685884e76558c4f, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0xd685884e76558c4f, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0xd685884e76558c4f, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xd685884e76558c4f, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0xd685884e76558c4f, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xd685884e76558c4f, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xd685884e76558c4f, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xd685884e76558c4f, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xd685884e76558c4f, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xd685884e76558c4f, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xd685884e76558c4f, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xd685884e76558c4f, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xd685884e76558c4f, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0xd685884e76558c4f, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xd685884e76558c4f, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xd685884e76558c4f, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xd685884e76558c4f, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xd685884e76558c4f, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xd685884e76558c4f, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xd685884e76558c4f, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0xd685884e76558c4f, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0xd685884e76558c4f, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xd685884e76558c4f, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xd685884e76558c4f, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xd685884e76558c4f, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xd685884e76558c4f, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xd685884e76558c4f, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xd685884e76558c4f, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x58300f029cae393a, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x58300f029cae393a, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x58300f029cae393a, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x58300f029cae393a, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x58300f029cae393a, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x58300f029cae393a, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x58300f029cae393a, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x58300f029cae393a, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x58300f029cae393a, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x58300f029cae393a, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x58300f029cae393a, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x58300f029cae393a, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x58300f029cae393a, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x58300f029cae393a, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x58300f029cae393a, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x58300f029cae393a, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x58300f029cae393a, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x58300f029cae393a, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x58300f029cae393a, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x58300f029cae393a, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x58300f029cae393a, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x58300f029cae393a, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x58300f029cae393a, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0x58300f029cae393a, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x58300f029cae393a, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x58300f029cae393a, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0x58300f029cae393a, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x58300f029cae393a, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x58300f029cae393a, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x58300f029cae393a, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x58300f029cae393a, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x58300f029cae393a, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x58300f029cae393a, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x58300f029cae393a, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x58300f029cae393a, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x58300f029cae393a, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x58300f029cae393a, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x58300f029cae393a, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x58300f029cae393a, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x58300f029cae393a, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x58300f029cae393a, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x58300f029cae393a, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x58300f029cae393a, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x58300f029cae393a, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x58300f029cae393a, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x58300f029cae393a, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x58300f029cae393a, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x58300f029cae393a, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x58300f029cae393a, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x58300f029cae393a, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x58300f029cae393a, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x58300f029cae393a, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0x58300f029cae393a, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x58300f029cae393a, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x58300f029cae393a, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0x58300f029cae393a, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x58300f029cae393a, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x58300f029cae393a, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x58300f029cae393a, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x58300f029cae393a, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x58300f029cae393a, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x58300f029cae393a, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x58300f029cae393a, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xde230867a630f6ad, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xde230867a630f6ad, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0xde230867a630f6ad, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xde230867a630f6ad, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0xde230867a630f6ad, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xde230867a630f6ad, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0xde230867a630f6ad, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xde230867a630f6ad, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0xde230867a630f6ad, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xde230867a630f6ad, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xde230867a630f6ad, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xde230867a630f6ad, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0xde230867a630f6ad, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xde230867a630f6ad, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xde230867a630f6ad, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xde230867a630f6ad, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xde230867a630f6ad, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xde230867a630f6ad, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0xde230867a630f6ad, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xde230867a630f6ad, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xde230867a630f6ad, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0xde230867a630f6ad, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0xde230867a630f6ad, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xde230867a630f6ad, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xde230867a630f6ad, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xde230867a630f6ad, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0xde230867a630f6ad, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xde230867a630f6ad, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0xde230867a630f6ad, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0xde230867a630f6ad, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xde230867a630f6ad, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xde230867a630f6ad, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0xde230867a630f6ad, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xde230867a630f6ad, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xde230867a630f6ad, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0xde230867a630f6ad, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xde230867a630f6ad, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xde230867a630f6ad, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xde230867a630f6ad, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0xde230867a630f6ad, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xde230867a630f6ad, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0xde230867a630f6ad, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xde230867a630f6ad, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xde230867a630f6ad, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xde230867a630f6ad, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xde230867a630f6ad, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xde230867a630f6ad, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xde230867a630f6ad, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xde230867a630f6ad, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xde230867a630f6ad, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xde230867a630f6ad, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xde230867a630f6ad, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0xde230867a630f6ad, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0xde230867a630f6ad, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xde230867a630f6ad, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xde230867a630f6ad, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0xde230867a630f6ad, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xde230867a630f6ad, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xde230867a630f6ad, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0xde230867a630f6ad, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xde230867a630f6ad, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xde230867a630f6ad, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xde230867a630f6ad, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x81daf8200468319b, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x81daf8200468319b, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x81daf8200468319b, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x81daf8200468319b, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x81daf8200468319b, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x81daf8200468319b, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x81daf8200468319b, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x81daf8200468319b, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x81daf8200468319b, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x81daf8200468319b, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x81daf8200468319b, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0x81daf8200468319b, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x81daf8200468319b, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x81daf8200468319b, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x81daf8200468319b, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x81daf8200468319b, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x81daf8200468319b, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x81daf8200468319b, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x81daf8200468319b, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x81daf8200468319b, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x81daf8200468319b, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x81daf8200468319b, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x81daf8200468319b, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x81daf8200468319b, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x81daf8200468319b, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x81daf8200468319b, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x81daf8200468319b, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x81daf8200468319b, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x81daf8200468319b, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x81daf8200468319b, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x81daf8200468319b, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x81daf8200468319b, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x81daf8200468319b, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x81daf8200468319b, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0x81daf8200468319b, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x81daf8200468319b, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x81daf8200468319b, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x81daf8200468319b, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x81daf8200468319b, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x81daf8200468319b, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x81daf8200468319b, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0x81daf8200468319b, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x81daf8200468319b, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x81daf8200468319b, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x81daf8200468319b, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x81daf8200468319b, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x81daf8200468319b, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x81daf8200468319b, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x81daf8200468319b, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x81daf8200468319b, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x81daf8200468319b, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x81daf8200468319b, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x81daf8200468319b, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0x81daf8200468319b, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x81daf8200468319b, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x81daf8200468319b, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x81daf8200468319b, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x81daf8200468319b, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x81daf8200468319b, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x81daf8200468319b, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x81daf8200468319b, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x81daf8200468319b, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x81daf8200468319b, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x6778fdf3ba52a850, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x6778fdf3ba52a850, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x6778fdf3ba52a850, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x6778fdf3ba52a850, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0x6778fdf3ba52a850, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x6778fdf3ba52a850, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x6778fdf3ba52a850, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x6778fdf3ba52a850, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x6778fdf3ba52a850, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x6778fdf3ba52a850, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x6778fdf3ba52a850, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x6778fdf3ba52a850, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x6778fdf3ba52a850, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x6778fdf3ba52a850, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x6778fdf3ba52a850, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x6778fdf3ba52a850, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x6778fdf3ba52a850, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x6778fdf3ba52a850, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x6778fdf3ba52a850, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x6778fdf3ba52a850, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x6778fdf3ba52a850, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x6778fdf3ba52a850, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x6778fdf3ba52a850, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x6778fdf3ba52a850, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x6778fdf3ba52a850, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x6778fdf3ba52a850, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x6778fdf3ba52a850, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x6778fdf3ba52a850, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x6778fdf3ba52a850, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x6778fdf3ba52a850, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x6778fdf3ba52a850, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x6778fdf3ba52a850, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x6778fdf3ba52a850, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x6778fdf3ba52a850, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x6778fdf3ba52a850, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x6778fdf3ba52a850, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x6778fdf3ba52a850, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x6778fdf3ba52a850, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x6778fdf3ba52a850, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x6778fdf3ba52a850, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x6778fdf3ba52a850, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x6778fdf3ba52a850, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x6778fdf3ba52a850, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x6778fdf3ba52a850, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x6778fdf3ba52a850, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x6778fdf3ba52a850, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x6778fdf3ba52a850, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x6778fdf3ba52a850, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x6778fdf3ba52a850, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x6778fdf3ba52a850, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x6778fdf3ba52a850, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x6778fdf3ba52a850, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x6778fdf3ba52a850, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0x6778fdf3ba52a850, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x6778fdf3ba52a850, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x6778fdf3ba52a850, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x6778fdf3ba52a850, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x6778fdf3ba52a850, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x6778fdf3ba52a850, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x6778fdf3ba52a850, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x6778fdf3ba52a850, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x6778fdf3ba52a850, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x6778fdf3ba52a850, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xe4627f3fe5255fc0, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0xe4627f3fe5255fc0, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xe4627f3fe5255fc0, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0xe4627f3fe5255fc0, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xe4627f3fe5255fc0, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xe4627f3fe5255fc0, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xe4627f3fe5255fc0, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0xe4627f3fe5255fc0, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xe4627f3fe5255fc0, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xe4627f3fe5255fc0, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xe4627f3fe5255fc0, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xe4627f3fe5255fc0, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xe4627f3fe5255fc0, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xe4627f3fe5255fc0, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0xe4627f3fe5255fc0, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0xe4627f3fe5255fc0, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xe4627f3fe5255fc0, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xe4627f3fe5255fc0, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xe4627f3fe5255fc0, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xe4627f3fe5255fc0, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xe4627f3fe5255fc0, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xe4627f3fe5255fc0, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xe4627f3fe5255fc0, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xe4627f3fe5255fc0, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0xe4627f3fe5255fc0, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0xe4627f3fe5255fc0, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xe4627f3fe5255fc0, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0xe4627f3fe5255fc0, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xf3, rs 0xe4627f3fe5255fc0, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xe4627f3fe5255fc0, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0xe4627f3fe5255fc0, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0xe4627f3fe5255fc0, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0xe4627f3fe5255fc0, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xe4627f3fe5255fc0, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xe4627f3fe5255fc0, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xe4627f3fe5255fc0, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0xe4627f3fe5255fc0, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xe4627f3fe5255fc0, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xe4627f3fe5255fc0, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xe4627f3fe5255fc0, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xe4627f3fe5255fc0, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xe4627f3fe5255fc0, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xe4627f3fe5255fc0, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xe4627f3fe5255fc0, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0xe4627f3fe5255fc0, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0xe4627f3fe5255fc0, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xe4627f3fe5255fc0, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xe4627f3fe5255fc0, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0xe4627f3fe5255fc0, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xe4627f3fe5255fc0, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0xe4627f3fe5255fc0, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xe4627f3fe5255fc0, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0xe4627f3fe5255fc0, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0xe4627f3fe5255fc0, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xe4627f3fe5255fc0, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0xe4627f3fe5255fc0, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0xe4627f3fe5255fc0, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xe4627f3fe5255fc0, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xe4627f3fe5255fc0, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0xe4627f3fe5255fc0, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xe4627f3fe5255fc0, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xe4627f3fe5255fc0, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xe4627f3fe5255fc0, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x7caf83d2880ff344, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x7caf83d2880ff344, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x7caf83d2880ff344, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x7caf83d2880ff344, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x7caf83d2880ff344, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x7caf83d2880ff344, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x7caf83d2880ff344, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x7caf83d2880ff344, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x7caf83d2880ff344, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x7caf83d2880ff344, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x7caf83d2880ff344, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x7caf83d2880ff344, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x7caf83d2880ff344, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x7caf83d2880ff344, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x7caf83d2880ff344, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0x7caf83d2880ff344, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x7caf83d2880ff344, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x7caf83d2880ff344, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0x7caf83d2880ff344, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x7caf83d2880ff344, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x7caf83d2880ff344, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x7caf83d2880ff344, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x7caf83d2880ff344, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x7caf83d2880ff344, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x7caf83d2880ff344, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x7caf83d2880ff344, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x7caf83d2880ff344, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x7caf83d2880ff344, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x7caf83d2880ff344, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x7caf83d2880ff344, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x7caf83d2880ff344, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x7caf83d2880ff344, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x7caf83d2880ff344, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x7caf83d2880ff344, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x7caf83d2880ff344, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x7caf83d2880ff344, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x7caf83d2880ff344, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x7caf83d2880ff344, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x7caf83d2880ff344, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x7caf83d2880ff344, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x7caf83d2880ff344, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0x7caf83d2880ff344, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x7caf83d2880ff344, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x7caf83d2880ff344, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x7caf83d2880ff344, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0x7caf83d2880ff344, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x7caf83d2880ff344, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x7caf83d2880ff344, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x7caf83d2880ff344, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x7caf83d2880ff344, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x7caf83d2880ff344, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x7caf83d2880ff344, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x7caf83d2880ff344, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x7caf83d2880ff344, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x7caf83d2880ff344, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x7caf83d2880ff344, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x7caf83d2880ff344, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x7caf83d2880ff344, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x7caf83d2880ff344, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x7caf83d2880ff344, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x7caf83d2880ff344, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x7caf83d2880ff344, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x7caf83d2880ff344, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x24296b75a76fa427, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x24296b75a76fa427, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x24296b75a76fa427, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x24296b75a76fa427, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x24296b75a76fa427, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x24296b75a76fa427, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x24296b75a76fa427, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x24296b75a76fa427, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x24296b75a76fa427, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x24296b75a76fa427, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x24296b75a76fa427, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x24296b75a76fa427, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x24296b75a76fa427, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x24296b75a76fa427, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x24296b75a76fa427, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x24296b75a76fa427, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x24296b75a76fa427, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x24296b75a76fa427, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x24296b75a76fa427, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x24296b75a76fa427, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x24296b75a76fa427, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x24296b75a76fa427, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x24296b75a76fa427, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x24296b75a76fa427, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x24296b75a76fa427, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x24296b75a76fa427, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x24296b75a76fa427, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x24296b75a76fa427, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x24296b75a76fa427, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x24296b75a76fa427, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x24296b75a76fa427, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x24296b75a76fa427, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x24296b75a76fa427, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x24296b75a76fa427, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x24296b75a76fa427, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x24296b75a76fa427, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x24296b75a76fa427, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x24296b75a76fa427, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x24296b75a76fa427, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x24296b75a76fa427, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x24296b75a76fa427, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x24296b75a76fa427, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x24296b75a76fa427, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x24296b75a76fa427, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x24296b75a76fa427, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x24296b75a76fa427, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x24296b75a76fa427, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x24296b75a76fa427, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x24296b75a76fa427, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x24296b75a76fa427, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x24296b75a76fa427, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x24296b75a76fa427, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x24296b75a76fa427, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0x24296b75a76fa427, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x24296b75a76fa427, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x24296b75a76fa427, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x24296b75a76fa427, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x24296b75a76fa427, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x24296b75a76fa427, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x24296b75a76fa427, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0x24296b75a76fa427, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x24296b75a76fa427, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x24296b75a76fa427, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x70dc3454bfe348f, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x70dc3454bfe348f, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x70dc3454bfe348f, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x70dc3454bfe348f, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x70dc3454bfe348f, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x70dc3454bfe348f, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x70dc3454bfe348f, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x70dc3454bfe348f, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x70dc3454bfe348f, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x70dc3454bfe348f, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xe9, rs 0x70dc3454bfe348f, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x70dc3454bfe348f, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x70dc3454bfe348f, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x70dc3454bfe348f, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x70dc3454bfe348f, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x70dc3454bfe348f, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x70dc3454bfe348f, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x70dc3454bfe348f, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x70dc3454bfe348f, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x70dc3454bfe348f, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x70dc3454bfe348f, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x70dc3454bfe348f, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x70dc3454bfe348f, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x70dc3454bfe348f, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x70dc3454bfe348f, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x70dc3454bfe348f, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x70dc3454bfe348f, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x70dc3454bfe348f, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x70dc3454bfe348f, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x70dc3454bfe348f, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x70dc3454bfe348f, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x70dc3454bfe348f, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x70dc3454bfe348f, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x70dc3454bfe348f, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x70dc3454bfe348f, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x70dc3454bfe348f, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x70dc3454bfe348f, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x70dc3454bfe348f, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x70dc3454bfe348f, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x70dc3454bfe348f, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x70dc3454bfe348f, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x70dc3454bfe348f, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x70dc3454bfe348f, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x70dc3454bfe348f, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x70dc3454bfe348f, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x70dc3454bfe348f, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x70dc3454bfe348f, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x70dc3454bfe348f, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x70dc3454bfe348f, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x70dc3454bfe348f, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x70dc3454bfe348f, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x70dc3454bfe348f, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x70dc3454bfe348f, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x70dc3454bfe348f, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x70dc3454bfe348f, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x70dc3454bfe348f, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0x70dc3454bfe348f, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x70dc3454bfe348f, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x70dc3454bfe348f, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x70dc3454bfe348f, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x70dc3454bfe348f, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x70dc3454bfe348f, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x70dc3454bfe348f, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x3f63daa9afd199d7, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x3f63daa9afd199d7, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x3f63daa9afd199d7, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x3f63daa9afd199d7, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x3f63daa9afd199d7, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x3f63daa9afd199d7, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x3f63daa9afd199d7, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x3f63daa9afd199d7, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x3f63daa9afd199d7, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x3f63daa9afd199d7, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x3f63daa9afd199d7, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x3f63daa9afd199d7, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x3f63daa9afd199d7, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x3f63daa9afd199d7, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x3f63daa9afd199d7, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x3f63daa9afd199d7, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x3f63daa9afd199d7, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x3f63daa9afd199d7, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x3f63daa9afd199d7, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x3f63daa9afd199d7, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x3f63daa9afd199d7, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x3f63daa9afd199d7, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x3f63daa9afd199d7, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x3f63daa9afd199d7, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x3f63daa9afd199d7, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x3f63daa9afd199d7, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0x3f63daa9afd199d7, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0x3f63daa9afd199d7, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x3f63daa9afd199d7, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x3f63daa9afd199d7, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0x3f63daa9afd199d7, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x3f63daa9afd199d7, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x3f63daa9afd199d7, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x3f63daa9afd199d7, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x3f63daa9afd199d7, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x3f63daa9afd199d7, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x3f63daa9afd199d7, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x3f63daa9afd199d7, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x3f63daa9afd199d7, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x3f63daa9afd199d7, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x3f63daa9afd199d7, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x3f63daa9afd199d7, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x3f63daa9afd199d7, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x3f63daa9afd199d7, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x3f63daa9afd199d7, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x3f63daa9afd199d7, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x3f63daa9afd199d7, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x3f63daa9afd199d7, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x3f63daa9afd199d7, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x3f63daa9afd199d7, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x3f63daa9afd199d7, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x3f63daa9afd199d7, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x3f63daa9afd199d7, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x3f63daa9afd199d7, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x3f63daa9afd199d7, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x3f63daa9afd199d7, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x3f63daa9afd199d7, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x3f63daa9afd199d7, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x3f63daa9afd199d7, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x3f63daa9afd199d7, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x3f63daa9afd199d7, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x3f63daa9afd199d7, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x3f63daa9afd199d7, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0xe54750d5d9257f25, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xe54750d5d9257f25, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xe54750d5d9257f25, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0xe54750d5d9257f25, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xe54750d5d9257f25, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0xe54750d5d9257f25, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xe54750d5d9257f25, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0xe54750d5d9257f25, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0xe54750d5d9257f25, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xe54750d5d9257f25, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xe54750d5d9257f25, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0xe54750d5d9257f25, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0xe54750d5d9257f25, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xe54750d5d9257f25, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0xe54750d5d9257f25, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xe54750d5d9257f25, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xe54750d5d9257f25, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xe54750d5d9257f25, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xe54750d5d9257f25, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0xe54750d5d9257f25, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xe54750d5d9257f25, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0xe54750d5d9257f25, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xe54750d5d9257f25, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xe54750d5d9257f25, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xe54750d5d9257f25, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0xe54750d5d9257f25, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xe54750d5d9257f25, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xe54750d5d9257f25, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0xe54750d5d9257f25, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xe54750d5d9257f25, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0xe54750d5d9257f25, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xe54750d5d9257f25, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0xe54750d5d9257f25, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0xe54750d5d9257f25, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xe54750d5d9257f25, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xe54750d5d9257f25, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0xe54750d5d9257f25, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xe54750d5d9257f25, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xe54750d5d9257f25, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0xe54750d5d9257f25, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0xe54750d5d9257f25, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0xe54750d5d9257f25, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xe54750d5d9257f25, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0xe54750d5d9257f25, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x6f, rs 0xe54750d5d9257f25, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xe54750d5d9257f25, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xe54750d5d9257f25, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xe54750d5d9257f25, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xe54750d5d9257f25, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xe54750d5d9257f25, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0xe54750d5d9257f25, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xe54750d5d9257f25, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xe54750d5d9257f25, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xe54750d5d9257f25, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xe54750d5d9257f25, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xe54750d5d9257f25, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0xe54750d5d9257f25, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xe54750d5d9257f25, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xe54750d5d9257f25, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0xe54750d5d9257f25, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0xe54750d5d9257f25, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0xe54750d5d9257f25, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0xe54750d5d9257f25, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x3ce839a51cf929e3, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x3ce839a51cf929e3, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x3ce839a51cf929e3, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x3ce839a51cf929e3, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x3ce839a51cf929e3, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x3ce839a51cf929e3, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x3ce839a51cf929e3, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x3ce839a51cf929e3, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x3ce839a51cf929e3, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x3ce839a51cf929e3, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x3ce839a51cf929e3, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x3ce839a51cf929e3, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x3ce839a51cf929e3, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x3ce839a51cf929e3, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x3ce839a51cf929e3, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x3ce839a51cf929e3, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x3ce839a51cf929e3, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x3ce839a51cf929e3, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x3ce839a51cf929e3, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x3ce839a51cf929e3, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x3ce839a51cf929e3, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x3ce839a51cf929e3, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x3ce839a51cf929e3, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x3ce839a51cf929e3, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x3ce839a51cf929e3, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x3ce839a51cf929e3, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0x3ce839a51cf929e3, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x3ce839a51cf929e3, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x3ce839a51cf929e3, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x3ce839a51cf929e3, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x3ce839a51cf929e3, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x3ce839a51cf929e3, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x3ce839a51cf929e3, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x3ce839a51cf929e3, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x3ce839a51cf929e3, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x3ce839a51cf929e3, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x3ce839a51cf929e3, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x3ce839a51cf929e3, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x3ce839a51cf929e3, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x3ce839a51cf929e3, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x3ce839a51cf929e3, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x3ce839a51cf929e3, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x3ce839a51cf929e3, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x3ce839a51cf929e3, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0x3ce839a51cf929e3, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x3ce839a51cf929e3, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x3ce839a51cf929e3, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x3ce839a51cf929e3, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x3ce839a51cf929e3, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x3ce839a51cf929e3, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x3ce839a51cf929e3, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x3ce839a51cf929e3, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x3ce839a51cf929e3, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x3ce839a51cf929e3, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x3ce839a51cf929e3, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0x3ce839a51cf929e3, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x3ce839a51cf929e3, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x3ce839a51cf929e3, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x3ce839a51cf929e3, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x3ce839a51cf929e3, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x3ce839a51cf929e3, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x3ce839a51cf929e3, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x3ce839a51cf929e3, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x84785280dd301d0d, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x84785280dd301d0d, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x84785280dd301d0d, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x84785280dd301d0d, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x84785280dd301d0d, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x84785280dd301d0d, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x84785280dd301d0d, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x84785280dd301d0d, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x84785280dd301d0d, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x84785280dd301d0d, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x84785280dd301d0d, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x84785280dd301d0d, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x84785280dd301d0d, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x84785280dd301d0d, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x84785280dd301d0d, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x84785280dd301d0d, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x84785280dd301d0d, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x84785280dd301d0d, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x84785280dd301d0d, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x84785280dd301d0d, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x84785280dd301d0d, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x84785280dd301d0d, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x84785280dd301d0d, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x84785280dd301d0d, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x84785280dd301d0d, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x84785280dd301d0d, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x84785280dd301d0d, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x84785280dd301d0d, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x84785280dd301d0d, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x84785280dd301d0d, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x84785280dd301d0d, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x84785280dd301d0d, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x84785280dd301d0d, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x84785280dd301d0d, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x84785280dd301d0d, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x84785280dd301d0d, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x84785280dd301d0d, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x84785280dd301d0d, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0x84785280dd301d0d, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x84785280dd301d0d, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0x84785280dd301d0d, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x84785280dd301d0d, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0x84785280dd301d0d, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x84785280dd301d0d, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x84785280dd301d0d, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x84785280dd301d0d, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x84785280dd301d0d, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x84785280dd301d0d, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x84785280dd301d0d, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x84785280dd301d0d, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x84785280dd301d0d, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x84785280dd301d0d, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x84785280dd301d0d, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x84785280dd301d0d, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x84785280dd301d0d, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x84785280dd301d0d, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x84785280dd301d0d, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x84785280dd301d0d, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x84785280dd301d0d, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x84785280dd301d0d, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0x84785280dd301d0d, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x84785280dd301d0d, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x84785280dd301d0d, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x663d061055833287, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x663d061055833287, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0x663d061055833287, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x663d061055833287, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x663d061055833287, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x663d061055833287, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x663d061055833287, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x663d061055833287, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x663d061055833287, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x663d061055833287, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x663d061055833287, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x663d061055833287, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x663d061055833287, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x663d061055833287, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0x663d061055833287, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x663d061055833287, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x663d061055833287, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x663d061055833287, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x663d061055833287, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x663d061055833287, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x663d061055833287, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x663d061055833287, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0x663d061055833287, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x663d061055833287, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0x663d061055833287, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x663d061055833287, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x663d061055833287, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x663d061055833287, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x663d061055833287, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x663d061055833287, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x663d061055833287, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x663d061055833287, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x663d061055833287, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x663d061055833287, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x663d061055833287, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x663d061055833287, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x663d061055833287, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0x663d061055833287, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x663d061055833287, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x663d061055833287, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x663d061055833287, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x663d061055833287, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x663d061055833287, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x663d061055833287, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x663d061055833287, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x663d061055833287, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0x663d061055833287, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x663d061055833287, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x663d061055833287, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0x663d061055833287, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x663d061055833287, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0x663d061055833287, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x663d061055833287, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x663d061055833287, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x663d061055833287, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x663d061055833287, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x663d061055833287, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x663d061055833287, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0x663d061055833287, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x663d061055833287, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x663d061055833287, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x663d061055833287, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x663d061055833287, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x9ca4bdbd32be479, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x9ca4bdbd32be479, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x9ca4bdbd32be479, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x9ca4bdbd32be479, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x9ca4bdbd32be479, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x9ca4bdbd32be479, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x9ca4bdbd32be479, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x9ca4bdbd32be479, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x9ca4bdbd32be479, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0x9ca4bdbd32be479, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x9ca4bdbd32be479, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x9ca4bdbd32be479, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x9ca4bdbd32be479, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0x9ca4bdbd32be479, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x9ca4bdbd32be479, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x9ca4bdbd32be479, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x9ca4bdbd32be479, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x9ca4bdbd32be479, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x9ca4bdbd32be479, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x9ca4bdbd32be479, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x9ca4bdbd32be479, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x9ca4bdbd32be479, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0x9ca4bdbd32be479, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x9ca4bdbd32be479, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x9ca4bdbd32be479, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x9ca4bdbd32be479, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x9ca4bdbd32be479, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x9ca4bdbd32be479, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x9ca4bdbd32be479, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0x9ca4bdbd32be479, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x9ca4bdbd32be479, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x9ca4bdbd32be479, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x9ca4bdbd32be479, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x9ca4bdbd32be479, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x9ca4bdbd32be479, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x9ca4bdbd32be479, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x9ca4bdbd32be479, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x9ca4bdbd32be479, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x9ca4bdbd32be479, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x9ca4bdbd32be479, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x9ca4bdbd32be479, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x9ca4bdbd32be479, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x9ca4bdbd32be479, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x9ca4bdbd32be479, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x9ca4bdbd32be479, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x9ca4bdbd32be479, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x9ca4bdbd32be479, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0x9ca4bdbd32be479, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x9ca4bdbd32be479, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x9ca4bdbd32be479, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x9ca4bdbd32be479, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x9ca4bdbd32be479, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x9ca4bdbd32be479, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x9ca4bdbd32be479, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x9ca4bdbd32be479, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x9ca4bdbd32be479, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x9ca4bdbd32be479, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x9ca4bdbd32be479, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x9ca4bdbd32be479, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x9ca4bdbd32be479, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x9ca4bdbd32be479, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x9ca4bdbd32be479, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x9ca4bdbd32be479, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x36a6f7fa3c0c9f33, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x36a6f7fa3c0c9f33, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x36a6f7fa3c0c9f33, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x36a6f7fa3c0c9f33, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x36a6f7fa3c0c9f33, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x36a6f7fa3c0c9f33, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x36a6f7fa3c0c9f33, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x36a6f7fa3c0c9f33, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x36a6f7fa3c0c9f33, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x36a6f7fa3c0c9f33, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x36a6f7fa3c0c9f33, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x36a6f7fa3c0c9f33, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x36a6f7fa3c0c9f33, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x36a6f7fa3c0c9f33, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x36a6f7fa3c0c9f33, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x36a6f7fa3c0c9f33, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x36a6f7fa3c0c9f33, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x36a6f7fa3c0c9f33, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xf3, rs 0x36a6f7fa3c0c9f33, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x36a6f7fa3c0c9f33, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x36a6f7fa3c0c9f33, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x36a6f7fa3c0c9f33, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x36a6f7fa3c0c9f33, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x36a6f7fa3c0c9f33, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x36a6f7fa3c0c9f33, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x36a6f7fa3c0c9f33, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x36a6f7fa3c0c9f33, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x36a6f7fa3c0c9f33, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x36a6f7fa3c0c9f33, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x36a6f7fa3c0c9f33, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x36a6f7fa3c0c9f33, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x36a6f7fa3c0c9f33, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x36a6f7fa3c0c9f33, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x36a6f7fa3c0c9f33, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x36a6f7fa3c0c9f33, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x36a6f7fa3c0c9f33, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x36a6f7fa3c0c9f33, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0x36a6f7fa3c0c9f33, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x36a6f7fa3c0c9f33, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x36a6f7fa3c0c9f33, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x36a6f7fa3c0c9f33, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x36a6f7fa3c0c9f33, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x36a6f7fa3c0c9f33, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x36a6f7fa3c0c9f33, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x36a6f7fa3c0c9f33, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x36a6f7fa3c0c9f33, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x36a6f7fa3c0c9f33, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x36a6f7fa3c0c9f33, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x36a6f7fa3c0c9f33, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x36a6f7fa3c0c9f33, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x36a6f7fa3c0c9f33, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x36a6f7fa3c0c9f33, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x36a6f7fa3c0c9f33, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x36a6f7fa3c0c9f33, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x36a6f7fa3c0c9f33, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0x36a6f7fa3c0c9f33, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x36a6f7fa3c0c9f33, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x36a6f7fa3c0c9f33, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x36a6f7fa3c0c9f33, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x36a6f7fa3c0c9f33, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x36a6f7fa3c0c9f33, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x36a6f7fa3c0c9f33, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x36a6f7fa3c0c9f33, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0xa8b08fe67a8bc7da, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xa8b08fe67a8bc7da, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xa8b08fe67a8bc7da, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0xa8b08fe67a8bc7da, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xa8b08fe67a8bc7da, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xa8b08fe67a8bc7da, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xa8b08fe67a8bc7da, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xa8b08fe67a8bc7da, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xa8b08fe67a8bc7da, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xa8b08fe67a8bc7da, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0xa8b08fe67a8bc7da, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0xa8b08fe67a8bc7da, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xa8b08fe67a8bc7da, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xa8b08fe67a8bc7da, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0xa8b08fe67a8bc7da, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0xa8b08fe67a8bc7da, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xa8b08fe67a8bc7da, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0xa8b08fe67a8bc7da, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xa8b08fe67a8bc7da, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0xa8b08fe67a8bc7da, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0xa8b08fe67a8bc7da, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0xa8b08fe67a8bc7da, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xa8b08fe67a8bc7da, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xa8b08fe67a8bc7da, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xa8b08fe67a8bc7da, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xa8b08fe67a8bc7da, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xa8b08fe67a8bc7da, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0xa8b08fe67a8bc7da, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0xa8b08fe67a8bc7da, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0xa8b08fe67a8bc7da, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xa8b08fe67a8bc7da, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0xa8b08fe67a8bc7da, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0xa8b08fe67a8bc7da, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xa8b08fe67a8bc7da, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xa8b08fe67a8bc7da, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xa8b08fe67a8bc7da, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xa8b08fe67a8bc7da, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0xa8b08fe67a8bc7da, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xa8b08fe67a8bc7da, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xa8b08fe67a8bc7da, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xa8b08fe67a8bc7da, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xa8b08fe67a8bc7da, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xa8b08fe67a8bc7da, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xa8b08fe67a8bc7da, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0xa8b08fe67a8bc7da, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xa8b08fe67a8bc7da, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xa8b08fe67a8bc7da, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xa8b08fe67a8bc7da, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0xa8b08fe67a8bc7da, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0xa8b08fe67a8bc7da, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0xa8b08fe67a8bc7da, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xa8b08fe67a8bc7da, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0xa8b08fe67a8bc7da, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0xa8b08fe67a8bc7da, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0xa8b08fe67a8bc7da, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xa8b08fe67a8bc7da, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xa8b08fe67a8bc7da, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xa8b08fe67a8bc7da, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0xa8b08fe67a8bc7da, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xa8b08fe67a8bc7da, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xa8b08fe67a8bc7da, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xa8b08fe67a8bc7da, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xa8b08fe67a8bc7da, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xb665ed5e7f89e9a2, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xb665ed5e7f89e9a2, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xb665ed5e7f89e9a2, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0xb665ed5e7f89e9a2, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0xb665ed5e7f89e9a2, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xb665ed5e7f89e9a2, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xb665ed5e7f89e9a2, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0xb665ed5e7f89e9a2, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0xb665ed5e7f89e9a2, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0xb665ed5e7f89e9a2, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xb665ed5e7f89e9a2, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xb665ed5e7f89e9a2, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xb665ed5e7f89e9a2, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xb665ed5e7f89e9a2, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0xb665ed5e7f89e9a2, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xb665ed5e7f89e9a2, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0xb665ed5e7f89e9a2, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0xb665ed5e7f89e9a2, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0xb665ed5e7f89e9a2, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xb665ed5e7f89e9a2, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xb665ed5e7f89e9a2, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xb665ed5e7f89e9a2, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0xb665ed5e7f89e9a2, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0xb665ed5e7f89e9a2, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xb665ed5e7f89e9a2, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xb665ed5e7f89e9a2, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xb665ed5e7f89e9a2, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xb665ed5e7f89e9a2, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0xb665ed5e7f89e9a2, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xb665ed5e7f89e9a2, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xb665ed5e7f89e9a2, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xb665ed5e7f89e9a2, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xb665ed5e7f89e9a2, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xb665ed5e7f89e9a2, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xb665ed5e7f89e9a2, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xb665ed5e7f89e9a2, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0xb665ed5e7f89e9a2, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xb665ed5e7f89e9a2, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0xb665ed5e7f89e9a2, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0xb665ed5e7f89e9a2, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xb665ed5e7f89e9a2, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xb665ed5e7f89e9a2, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0xb665ed5e7f89e9a2, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xb665ed5e7f89e9a2, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0xb665ed5e7f89e9a2, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xb665ed5e7f89e9a2, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xb665ed5e7f89e9a2, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xb665ed5e7f89e9a2, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0xb665ed5e7f89e9a2, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xb665ed5e7f89e9a2, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0xb665ed5e7f89e9a2, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xb665ed5e7f89e9a2, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xb665ed5e7f89e9a2, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xb665ed5e7f89e9a2, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xb665ed5e7f89e9a2, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xb665ed5e7f89e9a2, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xb665ed5e7f89e9a2, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0xb665ed5e7f89e9a2, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xb665ed5e7f89e9a2, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xb665ed5e7f89e9a2, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0xb665ed5e7f89e9a2, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xb665ed5e7f89e9a2, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xb665ed5e7f89e9a2, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x420b34f533734a4b, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x420b34f533734a4b, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x420b34f533734a4b, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0x420b34f533734a4b, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x420b34f533734a4b, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x420b34f533734a4b, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x420b34f533734a4b, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x420b34f533734a4b, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0x420b34f533734a4b, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x420b34f533734a4b, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x420b34f533734a4b, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x420b34f533734a4b, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x420b34f533734a4b, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x420b34f533734a4b, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x420b34f533734a4b, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x420b34f533734a4b, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x420b34f533734a4b, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x420b34f533734a4b, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x420b34f533734a4b, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x420b34f533734a4b, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x420b34f533734a4b, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x420b34f533734a4b, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x420b34f533734a4b, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x420b34f533734a4b, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x420b34f533734a4b, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x420b34f533734a4b, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x420b34f533734a4b, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x420b34f533734a4b, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x420b34f533734a4b, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0x420b34f533734a4b, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x420b34f533734a4b, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x420b34f533734a4b, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0x420b34f533734a4b, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x420b34f533734a4b, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x420b34f533734a4b, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x420b34f533734a4b, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x420b34f533734a4b, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x420b34f533734a4b, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x420b34f533734a4b, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x420b34f533734a4b, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x420b34f533734a4b, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x420b34f533734a4b, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x420b34f533734a4b, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x420b34f533734a4b, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x420b34f533734a4b, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0x420b34f533734a4b, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x420b34f533734a4b, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x420b34f533734a4b, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x420b34f533734a4b, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x420b34f533734a4b, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x420b34f533734a4b, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x420b34f533734a4b, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x420b34f533734a4b, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x420b34f533734a4b, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x420b34f533734a4b, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x420b34f533734a4b, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x420b34f533734a4b, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x420b34f533734a4b, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x420b34f533734a4b, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x420b34f533734a4b, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x420b34f533734a4b, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x420b34f533734a4b, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x420b34f533734a4b, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0xeaded5c53dad020a, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xeaded5c53dad020a, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0xeaded5c53dad020a, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xeaded5c53dad020a, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xeaded5c53dad020a, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xeaded5c53dad020a, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xeaded5c53dad020a, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xeaded5c53dad020a, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0xeaded5c53dad020a, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xeaded5c53dad020a, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xeaded5c53dad020a, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xeaded5c53dad020a, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xeaded5c53dad020a, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xeaded5c53dad020a, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xeaded5c53dad020a, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0xeaded5c53dad020a, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xeaded5c53dad020a, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xeaded5c53dad020a, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0xeaded5c53dad020a, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0xeaded5c53dad020a, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xeaded5c53dad020a, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xeaded5c53dad020a, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xeaded5c53dad020a, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0xeaded5c53dad020a, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xeaded5c53dad020a, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xeaded5c53dad020a, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xeaded5c53dad020a, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0xeaded5c53dad020a, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0xeaded5c53dad020a, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0xeaded5c53dad020a, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xeaded5c53dad020a, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0xeaded5c53dad020a, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0xeaded5c53dad020a, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xeaded5c53dad020a, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xeaded5c53dad020a, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xeaded5c53dad020a, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0xeaded5c53dad020a, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xeaded5c53dad020a, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xeaded5c53dad020a, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xeaded5c53dad020a, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xeaded5c53dad020a, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0xeaded5c53dad020a, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xeaded5c53dad020a, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xeaded5c53dad020a, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xeaded5c53dad020a, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xeaded5c53dad020a, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xeaded5c53dad020a, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xeaded5c53dad020a, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0xeaded5c53dad020a, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0xeaded5c53dad020a, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0xeaded5c53dad020a, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xeaded5c53dad020a, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xeaded5c53dad020a, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xeaded5c53dad020a, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xeaded5c53dad020a, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xeaded5c53dad020a, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0xeaded5c53dad020a, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xeaded5c53dad020a, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xeaded5c53dad020a, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xeaded5c53dad020a, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xeaded5c53dad020a, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xeaded5c53dad020a, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xeaded5c53dad020a, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x2299b0e01d5e68ec, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x2299b0e01d5e68ec, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x2299b0e01d5e68ec, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x2299b0e01d5e68ec, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x2299b0e01d5e68ec, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x2299b0e01d5e68ec, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x2299b0e01d5e68ec, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x2299b0e01d5e68ec, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x2299b0e01d5e68ec, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x2299b0e01d5e68ec, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x2299b0e01d5e68ec, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x2299b0e01d5e68ec, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x2299b0e01d5e68ec, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x2299b0e01d5e68ec, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x2299b0e01d5e68ec, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x2299b0e01d5e68ec, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x2299b0e01d5e68ec, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x2299b0e01d5e68ec, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x2299b0e01d5e68ec, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x2299b0e01d5e68ec, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x2299b0e01d5e68ec, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x2299b0e01d5e68ec, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x2299b0e01d5e68ec, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x2299b0e01d5e68ec, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x2299b0e01d5e68ec, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x2299b0e01d5e68ec, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x2299b0e01d5e68ec, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x2299b0e01d5e68ec, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x2299b0e01d5e68ec, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x2299b0e01d5e68ec, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x2299b0e01d5e68ec, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x2299b0e01d5e68ec, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x2299b0e01d5e68ec, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x2299b0e01d5e68ec, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x2299b0e01d5e68ec, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x2299b0e01d5e68ec, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x2299b0e01d5e68ec, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x2299b0e01d5e68ec, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x2299b0e01d5e68ec, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x2299b0e01d5e68ec, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x2299b0e01d5e68ec, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x2299b0e01d5e68ec, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x2299b0e01d5e68ec, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x2299b0e01d5e68ec, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x2299b0e01d5e68ec, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x2299b0e01d5e68ec, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x2299b0e01d5e68ec, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x2299b0e01d5e68ec, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x2299b0e01d5e68ec, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x2299b0e01d5e68ec, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x2299b0e01d5e68ec, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x2299b0e01d5e68ec, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x2299b0e01d5e68ec, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x2299b0e01d5e68ec, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x2299b0e01d5e68ec, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x2299b0e01d5e68ec, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x2299b0e01d5e68ec, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x2299b0e01d5e68ec, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x2299b0e01d5e68ec, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x2299b0e01d5e68ec, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x2299b0e01d5e68ec, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x2299b0e01d5e68ec, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x2299b0e01d5e68ec, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xe5e9a314be7fa08a, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0xe5e9a314be7fa08a, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0xe5e9a314be7fa08a, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xe5e9a314be7fa08a, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xe5e9a314be7fa08a, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0xe5e9a314be7fa08a, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xe5e9a314be7fa08a, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xe5e9a314be7fa08a, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xe5e9a314be7fa08a, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0xe5e9a314be7fa08a, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0xe5e9a314be7fa08a, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xe5e9a314be7fa08a, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0xe5e9a314be7fa08a, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xe5e9a314be7fa08a, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0xe5e9a314be7fa08a, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xe5e9a314be7fa08a, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0xe5e9a314be7fa08a, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0xe5e9a314be7fa08a, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xe5e9a314be7fa08a, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0xe5e9a314be7fa08a, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xe5e9a314be7fa08a, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xe5e9a314be7fa08a, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xe5e9a314be7fa08a, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xe5e9a314be7fa08a, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0xe5e9a314be7fa08a, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xe5e9a314be7fa08a, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0xe5e9a314be7fa08a, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0xe5e9a314be7fa08a, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xe5e9a314be7fa08a, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xe5e9a314be7fa08a, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xe5e9a314be7fa08a, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0xe5e9a314be7fa08a, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xe5e9a314be7fa08a, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xe5e9a314be7fa08a, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0xe5e9a314be7fa08a, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xe5e9a314be7fa08a, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xe5e9a314be7fa08a, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xe5e9a314be7fa08a, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xe5e9a314be7fa08a, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0xe5e9a314be7fa08a, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0xe5e9a314be7fa08a, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0xe5e9a314be7fa08a, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xe5e9a314be7fa08a, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xe5e9a314be7fa08a, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xe5e9a314be7fa08a, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xe5e9a314be7fa08a, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xe5e9a314be7fa08a, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xe5e9a314be7fa08a, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0xe5e9a314be7fa08a, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0xe5e9a314be7fa08a, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xe5e9a314be7fa08a, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xe5e9a314be7fa08a, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xe5e9a314be7fa08a, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0xe5e9a314be7fa08a, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xe5e9a314be7fa08a, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xe5e9a314be7fa08a, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0xe5e9a314be7fa08a, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xe5e9a314be7fa08a, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xe5e9a314be7fa08a, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xe5e9a314be7fa08a, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0xe5e9a314be7fa08a, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xe5e9a314be7fa08a, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0xe5e9a314be7fa08a, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x4aeb6ca0e3459e36, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x4aeb6ca0e3459e36, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x4aeb6ca0e3459e36, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x4aeb6ca0e3459e36, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0x4aeb6ca0e3459e36, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x4aeb6ca0e3459e36, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x4aeb6ca0e3459e36, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x4aeb6ca0e3459e36, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0x4aeb6ca0e3459e36, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x4aeb6ca0e3459e36, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x4aeb6ca0e3459e36, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x4aeb6ca0e3459e36, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x4aeb6ca0e3459e36, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x4aeb6ca0e3459e36, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x4aeb6ca0e3459e36, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0x4aeb6ca0e3459e36, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x4aeb6ca0e3459e36, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x4aeb6ca0e3459e36, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x4aeb6ca0e3459e36, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x4aeb6ca0e3459e36, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x4aeb6ca0e3459e36, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x4aeb6ca0e3459e36, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x4aeb6ca0e3459e36, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x4aeb6ca0e3459e36, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x4aeb6ca0e3459e36, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x4aeb6ca0e3459e36, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x4aeb6ca0e3459e36, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x4aeb6ca0e3459e36, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x4aeb6ca0e3459e36, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x4aeb6ca0e3459e36, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x4aeb6ca0e3459e36, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x4aeb6ca0e3459e36, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x4aeb6ca0e3459e36, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x4aeb6ca0e3459e36, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x4aeb6ca0e3459e36, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x4aeb6ca0e3459e36, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x4aeb6ca0e3459e36, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x4aeb6ca0e3459e36, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x4aeb6ca0e3459e36, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x4aeb6ca0e3459e36, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x4aeb6ca0e3459e36, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0x4aeb6ca0e3459e36, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x4aeb6ca0e3459e36, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x4aeb6ca0e3459e36, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x4aeb6ca0e3459e36, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x4aeb6ca0e3459e36, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x4aeb6ca0e3459e36, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0x4aeb6ca0e3459e36, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x4aeb6ca0e3459e36, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x4aeb6ca0e3459e36, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x4aeb6ca0e3459e36, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x4aeb6ca0e3459e36, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x4aeb6ca0e3459e36, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x4aeb6ca0e3459e36, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x4aeb6ca0e3459e36, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x4aeb6ca0e3459e36, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x4aeb6ca0e3459e36, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x4aeb6ca0e3459e36, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x4aeb6ca0e3459e36, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x4aeb6ca0e3459e36, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x4aeb6ca0e3459e36, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x4aeb6ca0e3459e36, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x4aeb6ca0e3459e36, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x993138f16cfde991, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x993138f16cfde991, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x993138f16cfde991, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x993138f16cfde991, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x993138f16cfde991, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x993138f16cfde991, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x993138f16cfde991, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x993138f16cfde991, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x993138f16cfde991, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x993138f16cfde991, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x993138f16cfde991, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x993138f16cfde991, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x993138f16cfde991, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x993138f16cfde991, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x993138f16cfde991, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x993138f16cfde991, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x993138f16cfde991, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x993138f16cfde991, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x993138f16cfde991, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x993138f16cfde991, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x993138f16cfde991, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x993138f16cfde991, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x993138f16cfde991, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x993138f16cfde991, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x993138f16cfde991, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x993138f16cfde991, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x993138f16cfde991, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x993138f16cfde991, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x993138f16cfde991, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x993138f16cfde991, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0x993138f16cfde991, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x993138f16cfde991, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x993138f16cfde991, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x993138f16cfde991, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x993138f16cfde991, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x993138f16cfde991, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x993138f16cfde991, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x993138f16cfde991, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x993138f16cfde991, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x993138f16cfde991, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x993138f16cfde991, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0x993138f16cfde991, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x993138f16cfde991, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x993138f16cfde991, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x993138f16cfde991, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x993138f16cfde991, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x993138f16cfde991, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x993138f16cfde991, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x993138f16cfde991, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x993138f16cfde991, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x993138f16cfde991, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x993138f16cfde991, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x993138f16cfde991, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x993138f16cfde991, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x993138f16cfde991, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x993138f16cfde991, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x993138f16cfde991, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x993138f16cfde991, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x993138f16cfde991, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x993138f16cfde991, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0x993138f16cfde991, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x993138f16cfde991, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x993138f16cfde991, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x8cff404aede292f2, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x8cff404aede292f2, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x8cff404aede292f2, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x8cff404aede292f2, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0x8cff404aede292f2, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x8cff404aede292f2, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x8cff404aede292f2, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x8cff404aede292f2, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x8cff404aede292f2, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x8cff404aede292f2, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x8cff404aede292f2, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x8cff404aede292f2, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x8cff404aede292f2, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0x8cff404aede292f2, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x8cff404aede292f2, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x8cff404aede292f2, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x8cff404aede292f2, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x8cff404aede292f2, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0x8cff404aede292f2, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x8cff404aede292f2, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x8cff404aede292f2, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x8cff404aede292f2, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x8cff404aede292f2, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x8cff404aede292f2, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xd5, rs 0x8cff404aede292f2, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x8cff404aede292f2, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0x8cff404aede292f2, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x8cff404aede292f2, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x25, rs 0x8cff404aede292f2, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x8cff404aede292f2, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x8cff404aede292f2, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x8cff404aede292f2, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x8cff404aede292f2, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x8cff404aede292f2, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0x8cff404aede292f2, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x8cff404aede292f2, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x8cff404aede292f2, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x8cff404aede292f2, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x8cff404aede292f2, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0x8cff404aede292f2, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x8cff404aede292f2, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x8cff404aede292f2, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x8cff404aede292f2, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x8cff404aede292f2, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x8cff404aede292f2, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x8cff404aede292f2, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x8cff404aede292f2, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0x8cff404aede292f2, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x8cff404aede292f2, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x8cff404aede292f2, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0x8cff404aede292f2, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x8cff404aede292f2, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x8cff404aede292f2, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x8cff404aede292f2, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x8cff404aede292f2, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x8cff404aede292f2, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x8cff404aede292f2, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x8cff404aede292f2, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x8cff404aede292f2, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x8cff404aede292f2, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x8cff404aede292f2, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x8cff404aede292f2, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x8cff404aede292f2, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x42e9f8548b739b6b, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x42e9f8548b739b6b, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x42e9f8548b739b6b, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x42e9f8548b739b6b, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x42e9f8548b739b6b, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x42e9f8548b739b6b, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x42e9f8548b739b6b, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x42e9f8548b739b6b, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0x42e9f8548b739b6b, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x42e9f8548b739b6b, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x42e9f8548b739b6b, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x42e9f8548b739b6b, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x42e9f8548b739b6b, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x42e9f8548b739b6b, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x42e9f8548b739b6b, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x42e9f8548b739b6b, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x42e9f8548b739b6b, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x42e9f8548b739b6b, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x42e9f8548b739b6b, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x42e9f8548b739b6b, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x42e9f8548b739b6b, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x42e9f8548b739b6b, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x42e9f8548b739b6b, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x42e9f8548b739b6b, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x42e9f8548b739b6b, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0x42e9f8548b739b6b, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x42e9f8548b739b6b, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x42e9f8548b739b6b, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x42e9f8548b739b6b, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x42e9f8548b739b6b, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x42e9f8548b739b6b, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x42e9f8548b739b6b, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x42e9f8548b739b6b, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x42e9f8548b739b6b, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x42e9f8548b739b6b, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x42e9f8548b739b6b, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x42e9f8548b739b6b, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x42e9f8548b739b6b, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x42e9f8548b739b6b, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x42e9f8548b739b6b, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x42e9f8548b739b6b, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x42e9f8548b739b6b, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x42e9f8548b739b6b, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x42e9f8548b739b6b, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x42e9f8548b739b6b, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x42e9f8548b739b6b, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x42e9f8548b739b6b, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x42e9f8548b739b6b, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x42e9f8548b739b6b, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x42e9f8548b739b6b, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x42e9f8548b739b6b, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x42e9f8548b739b6b, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0x42e9f8548b739b6b, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x42e9f8548b739b6b, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x42e9f8548b739b6b, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x42e9f8548b739b6b, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x42e9f8548b739b6b, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x42e9f8548b739b6b, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x42e9f8548b739b6b, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x42e9f8548b739b6b, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x42e9f8548b739b6b, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x42e9f8548b739b6b, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x42e9f8548b739b6b, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x276af70a0e128561, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x276af70a0e128561, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x276af70a0e128561, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x276af70a0e128561, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x276af70a0e128561, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x276af70a0e128561, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x276af70a0e128561, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x276af70a0e128561, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x276af70a0e128561, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x276af70a0e128561, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x276af70a0e128561, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x276af70a0e128561, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0x276af70a0e128561, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x276af70a0e128561, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0x276af70a0e128561, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x276af70a0e128561, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x276af70a0e128561, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x276af70a0e128561, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x276af70a0e128561, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x276af70a0e128561, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x276af70a0e128561, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x276af70a0e128561, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x276af70a0e128561, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x276af70a0e128561, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x276af70a0e128561, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x276af70a0e128561, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x276af70a0e128561, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x276af70a0e128561, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x276af70a0e128561, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x276af70a0e128561, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x276af70a0e128561, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x276af70a0e128561, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x276af70a0e128561, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x276af70a0e128561, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x276af70a0e128561, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x276af70a0e128561, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x276af70a0e128561, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0x276af70a0e128561, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x276af70a0e128561, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x276af70a0e128561, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x276af70a0e128561, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x276af70a0e128561, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x276af70a0e128561, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x276af70a0e128561, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x276af70a0e128561, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x276af70a0e128561, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x276af70a0e128561, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x276af70a0e128561, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x276af70a0e128561, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x276af70a0e128561, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x276af70a0e128561, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x276af70a0e128561, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x276af70a0e128561, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x276af70a0e128561, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x276af70a0e128561, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x276af70a0e128561, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x276af70a0e128561, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x276af70a0e128561, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x276af70a0e128561, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x276af70a0e128561, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x276af70a0e128561, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x276af70a0e128561, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x276af70a0e128561, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x1f9720f946923c3d, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x1f9720f946923c3d, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x1f9720f946923c3d, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x1f9720f946923c3d, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x1f9720f946923c3d, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x1f9720f946923c3d, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x1f9720f946923c3d, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x1f9720f946923c3d, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0x1f9720f946923c3d, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x1f9720f946923c3d, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x1f9720f946923c3d, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x1f9720f946923c3d, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x1f9720f946923c3d, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x1f9720f946923c3d, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x1f9720f946923c3d, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x1f9720f946923c3d, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x1f9720f946923c3d, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x1f9720f946923c3d, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x1f9720f946923c3d, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x1f9720f946923c3d, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x1f9720f946923c3d, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x1f9720f946923c3d, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x1f9720f946923c3d, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0x1f9720f946923c3d, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x1f9720f946923c3d, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0x1f9720f946923c3d, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x1f9720f946923c3d, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x1f9720f946923c3d, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x1f9720f946923c3d, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0x1f9720f946923c3d, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x1f9720f946923c3d, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x1f9720f946923c3d, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x1f9720f946923c3d, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x1f9720f946923c3d, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x1f9720f946923c3d, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x1f9720f946923c3d, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x1f9720f946923c3d, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x1f9720f946923c3d, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x1f9720f946923c3d, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x1f9720f946923c3d, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x1f9720f946923c3d, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x1f9720f946923c3d, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x1f9720f946923c3d, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x1f9720f946923c3d, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x1f9720f946923c3d, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x1f9720f946923c3d, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x1f9720f946923c3d, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x1f9720f946923c3d, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x1f9720f946923c3d, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x1f9720f946923c3d, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x1f9720f946923c3d, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x1f9720f946923c3d, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x1f9720f946923c3d, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x1f9720f946923c3d, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x1f9720f946923c3d, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x1f9720f946923c3d, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x1f9720f946923c3d, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x1f9720f946923c3d, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x98, rs 0x1f9720f946923c3d, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x1f9720f946923c3d, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x1f9720f946923c3d, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x1f9720f946923c3d, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x1f9720f946923c3d, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0xc7a59be7800f3d26, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xc7a59be7800f3d26, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xc7a59be7800f3d26, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xc7a59be7800f3d26, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0xc7a59be7800f3d26, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xc7a59be7800f3d26, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xc7a59be7800f3d26, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0xc7a59be7800f3d26, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0xc7a59be7800f3d26, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0xc7a59be7800f3d26, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xc7a59be7800f3d26, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xc7a59be7800f3d26, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0xc7a59be7800f3d26, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xc7a59be7800f3d26, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0xc7a59be7800f3d26, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0xc7a59be7800f3d26, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0xc7a59be7800f3d26, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xc7a59be7800f3d26, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xc7a59be7800f3d26, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0xc7a59be7800f3d26, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xc7a59be7800f3d26, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xc7a59be7800f3d26, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xc7a59be7800f3d26, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0xc7a59be7800f3d26, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xc7a59be7800f3d26, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0xc7a59be7800f3d26, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xc7a59be7800f3d26, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xc7a59be7800f3d26, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xc7a59be7800f3d26, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xc7a59be7800f3d26, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xc7a59be7800f3d26, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0xc7a59be7800f3d26, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0xc7a59be7800f3d26, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xc7a59be7800f3d26, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0xc7a59be7800f3d26, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xc7a59be7800f3d26, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0xc7a59be7800f3d26, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xc7a59be7800f3d26, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xc7a59be7800f3d26, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0xc7a59be7800f3d26, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xc7a59be7800f3d26, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xc7a59be7800f3d26, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xc7a59be7800f3d26, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xc7a59be7800f3d26, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xc7a59be7800f3d26, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xc7a59be7800f3d26, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xc7a59be7800f3d26, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xc7a59be7800f3d26, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0xc7a59be7800f3d26, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0xc7a59be7800f3d26, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xc7a59be7800f3d26, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xc7a59be7800f3d26, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xc7a59be7800f3d26, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0xc7a59be7800f3d26, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xc7a59be7800f3d26, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xc7a59be7800f3d26, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xc7a59be7800f3d26, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xc7a59be7800f3d26, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xc7a59be7800f3d26, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0xc7a59be7800f3d26, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xc7a59be7800f3d26, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xc7a59be7800f3d26, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xc7a59be7800f3d26, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x743e568d2fcf486b, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x743e568d2fcf486b, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xeb, rs 0x743e568d2fcf486b, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x743e568d2fcf486b, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x743e568d2fcf486b, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x743e568d2fcf486b, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x743e568d2fcf486b, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x743e568d2fcf486b, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0x743e568d2fcf486b, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x743e568d2fcf486b, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0x743e568d2fcf486b, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x743e568d2fcf486b, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x743e568d2fcf486b, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x743e568d2fcf486b, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x743e568d2fcf486b, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x743e568d2fcf486b, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x743e568d2fcf486b, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x743e568d2fcf486b, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x743e568d2fcf486b, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x743e568d2fcf486b, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x743e568d2fcf486b, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x743e568d2fcf486b, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x743e568d2fcf486b, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x743e568d2fcf486b, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x743e568d2fcf486b, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0x743e568d2fcf486b, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x743e568d2fcf486b, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x743e568d2fcf486b, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x743e568d2fcf486b, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x743e568d2fcf486b, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x743e568d2fcf486b, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x743e568d2fcf486b, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x743e568d2fcf486b, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x743e568d2fcf486b, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x743e568d2fcf486b, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x743e568d2fcf486b, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x743e568d2fcf486b, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x743e568d2fcf486b, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x743e568d2fcf486b, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x743e568d2fcf486b, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0x743e568d2fcf486b, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0x743e568d2fcf486b, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x743e568d2fcf486b, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x743e568d2fcf486b, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x743e568d2fcf486b, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x743e568d2fcf486b, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x743e568d2fcf486b, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x743e568d2fcf486b, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x743e568d2fcf486b, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x743e568d2fcf486b, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x743e568d2fcf486b, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x743e568d2fcf486b, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0x743e568d2fcf486b, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x743e568d2fcf486b, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x743e568d2fcf486b, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x743e568d2fcf486b, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x743e568d2fcf486b, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x743e568d2fcf486b, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x743e568d2fcf486b, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x743e568d2fcf486b, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x743e568d2fcf486b, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x743e568d2fcf486b, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x743e568d2fcf486b, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xdfb254da422346ec, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xdfb254da422346ec, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0xdfb254da422346ec, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0xdfb254da422346ec, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xdfb254da422346ec, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0xdfb254da422346ec, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xdfb254da422346ec, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xdfb254da422346ec, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xdfb254da422346ec, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xdfb254da422346ec, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0xdfb254da422346ec, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xdfb254da422346ec, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xdfb254da422346ec, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xdfb254da422346ec, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xdfb254da422346ec, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xdfb254da422346ec, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0xdfb254da422346ec, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0xdfb254da422346ec, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xdfb254da422346ec, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0xdfb254da422346ec, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xdfb254da422346ec, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0xdfb254da422346ec, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0xdfb254da422346ec, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0xdfb254da422346ec, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xdfb254da422346ec, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0xdfb254da422346ec, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0xdfb254da422346ec, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xdfb254da422346ec, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0xdfb254da422346ec, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xdfb254da422346ec, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xdfb254da422346ec, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xdfb254da422346ec, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xdfb254da422346ec, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xdfb254da422346ec, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xdfb254da422346ec, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0xdfb254da422346ec, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xdfb254da422346ec, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xdfb254da422346ec, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0xdfb254da422346ec, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xdfb254da422346ec, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xdfb254da422346ec, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xdfb254da422346ec, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0xdfb254da422346ec, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xdfb254da422346ec, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0xdfb254da422346ec, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xdfb254da422346ec, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xdfb254da422346ec, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xdfb254da422346ec, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xdfb254da422346ec, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xdfb254da422346ec, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xdfb254da422346ec, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xdfb254da422346ec, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xdfb254da422346ec, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xdfb254da422346ec, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xdfb254da422346ec, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xdfb254da422346ec, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xdfb254da422346ec, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xdfb254da422346ec, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xdfb254da422346ec, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xdfb254da422346ec, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xdfb254da422346ec, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xdfb254da422346ec, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0xdfb254da422346ec, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x3c07af97fba6704a, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x3c07af97fba6704a, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0x3c07af97fba6704a, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x3c07af97fba6704a, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0x3c07af97fba6704a, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x3c07af97fba6704a, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x3c07af97fba6704a, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0x3c07af97fba6704a, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0x3c07af97fba6704a, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x3c07af97fba6704a, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x3c07af97fba6704a, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x3c07af97fba6704a, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x3c07af97fba6704a, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x3c07af97fba6704a, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x3c07af97fba6704a, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x3c07af97fba6704a, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x3c07af97fba6704a, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0x3c07af97fba6704a, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x3c07af97fba6704a, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x3c07af97fba6704a, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x3c07af97fba6704a, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x3c07af97fba6704a, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0x3c07af97fba6704a, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x6f, rs 0x3c07af97fba6704a, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0x3c07af97fba6704a, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x3c07af97fba6704a, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x3c07af97fba6704a, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x3c07af97fba6704a, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x3c07af97fba6704a, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x3c07af97fba6704a, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x3c07af97fba6704a, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x3c07af97fba6704a, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x3c07af97fba6704a, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x3c07af97fba6704a, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x3c07af97fba6704a, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x3c07af97fba6704a, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x3c07af97fba6704a, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x3c07af97fba6704a, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x3c07af97fba6704a, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0x3c07af97fba6704a, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x3c07af97fba6704a, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x3c07af97fba6704a, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x3c07af97fba6704a, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x3c07af97fba6704a, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0x3c07af97fba6704a, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x3c07af97fba6704a, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x3c07af97fba6704a, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x3c07af97fba6704a, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x3c07af97fba6704a, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x3c07af97fba6704a, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x3c07af97fba6704a, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x3c07af97fba6704a, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x3c07af97fba6704a, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x3c07af97fba6704a, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x3c07af97fba6704a, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x3c07af97fba6704a, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x3c07af97fba6704a, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0x3c07af97fba6704a, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x3c07af97fba6704a, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x3c07af97fba6704a, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x3c07af97fba6704a, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x3c07af97fba6704a, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x3c07af97fba6704a, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0xd5b2120c6f52416e, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0xd5b2120c6f52416e, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xd5b2120c6f52416e, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0xd5b2120c6f52416e, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0xd5b2120c6f52416e, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xd5b2120c6f52416e, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xd5b2120c6f52416e, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0xd5b2120c6f52416e, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xd5b2120c6f52416e, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0xd5b2120c6f52416e, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xd5b2120c6f52416e, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xd5b2120c6f52416e, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xd5b2120c6f52416e, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xd5b2120c6f52416e, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xa8, rs 0xd5b2120c6f52416e, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xd5b2120c6f52416e, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xd5b2120c6f52416e, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0xd5b2120c6f52416e, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0xd5b2120c6f52416e, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xd5b2120c6f52416e, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xd5b2120c6f52416e, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xd5b2120c6f52416e, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xd5b2120c6f52416e, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xd5b2120c6f52416e, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0xd5b2120c6f52416e, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0xd5b2120c6f52416e, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xd5b2120c6f52416e, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xd5b2120c6f52416e, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xd5b2120c6f52416e, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xd5b2120c6f52416e, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xd5b2120c6f52416e, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0xd5b2120c6f52416e, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xd5b2120c6f52416e, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xd5b2120c6f52416e, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xd5b2120c6f52416e, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xd5b2120c6f52416e, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xd5b2120c6f52416e, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0xd5b2120c6f52416e, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xd5b2120c6f52416e, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xd5b2120c6f52416e, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0xd5b2120c6f52416e, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xd5b2120c6f52416e, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xd5b2120c6f52416e, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xd5b2120c6f52416e, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0xd5b2120c6f52416e, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0xd5b2120c6f52416e, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xd5b2120c6f52416e, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xd5b2120c6f52416e, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0xd5b2120c6f52416e, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xd5b2120c6f52416e, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0xd5b2120c6f52416e, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xd5b2120c6f52416e, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xd5b2120c6f52416e, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0xd5b2120c6f52416e, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xd5b2120c6f52416e, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xd5b2120c6f52416e, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0xd5b2120c6f52416e, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xd5b2120c6f52416e, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xd5b2120c6f52416e, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xd5b2120c6f52416e, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xd5b2120c6f52416e, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0xd5b2120c6f52416e, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xd5b2120c6f52416e, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xa388c16272f1f8f5, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xa388c16272f1f8f5, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xa388c16272f1f8f5, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xa388c16272f1f8f5, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xa388c16272f1f8f5, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xa388c16272f1f8f5, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xa388c16272f1f8f5, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0xa388c16272f1f8f5, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xa388c16272f1f8f5, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0xa388c16272f1f8f5, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0xa388c16272f1f8f5, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xa388c16272f1f8f5, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0xa388c16272f1f8f5, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xa388c16272f1f8f5, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0xa388c16272f1f8f5, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xa388c16272f1f8f5, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xa388c16272f1f8f5, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xa388c16272f1f8f5, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xa388c16272f1f8f5, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0xa388c16272f1f8f5, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0xa388c16272f1f8f5, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0xa388c16272f1f8f5, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0xa388c16272f1f8f5, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xa388c16272f1f8f5, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xa388c16272f1f8f5, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xa388c16272f1f8f5, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xa388c16272f1f8f5, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0xa388c16272f1f8f5, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0xa388c16272f1f8f5, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xa388c16272f1f8f5, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xa388c16272f1f8f5, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xa388c16272f1f8f5, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xa388c16272f1f8f5, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xa388c16272f1f8f5, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xa388c16272f1f8f5, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0xa388c16272f1f8f5, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0xa388c16272f1f8f5, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xa388c16272f1f8f5, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0xa388c16272f1f8f5, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0xa388c16272f1f8f5, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0xa388c16272f1f8f5, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xa388c16272f1f8f5, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0xa388c16272f1f8f5, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xa388c16272f1f8f5, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0xa388c16272f1f8f5, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xa388c16272f1f8f5, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xa388c16272f1f8f5, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xa388c16272f1f8f5, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0xa388c16272f1f8f5, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0xa388c16272f1f8f5, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0xa388c16272f1f8f5, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xa388c16272f1f8f5, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0xa388c16272f1f8f5, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xa388c16272f1f8f5, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0xa388c16272f1f8f5, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xa388c16272f1f8f5, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0xa388c16272f1f8f5, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xa388c16272f1f8f5, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0xa388c16272f1f8f5, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0xa388c16272f1f8f5, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xa388c16272f1f8f5, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xa388c16272f1f8f5, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0xa388c16272f1f8f5, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x51, rs 0xb42ad6e659a7b04f, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0xb42ad6e659a7b04f, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xb42ad6e659a7b04f, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xb42ad6e659a7b04f, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0xb42ad6e659a7b04f, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xb42ad6e659a7b04f, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xb42ad6e659a7b04f, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xb42ad6e659a7b04f, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0xb42ad6e659a7b04f, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0xb42ad6e659a7b04f, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xb42ad6e659a7b04f, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xb42ad6e659a7b04f, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0xb42ad6e659a7b04f, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xb42ad6e659a7b04f, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xb42ad6e659a7b04f, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0xb42ad6e659a7b04f, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xb42ad6e659a7b04f, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xb42ad6e659a7b04f, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xb42ad6e659a7b04f, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xb42ad6e659a7b04f, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xb42ad6e659a7b04f, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xb42ad6e659a7b04f, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xb42ad6e659a7b04f, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xb42ad6e659a7b04f, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0xb42ad6e659a7b04f, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xb42ad6e659a7b04f, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xb42ad6e659a7b04f, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xc8, rs 0xb42ad6e659a7b04f, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xb42ad6e659a7b04f, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xb42ad6e659a7b04f, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xb42ad6e659a7b04f, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xb42ad6e659a7b04f, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xb42ad6e659a7b04f, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xb42ad6e659a7b04f, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xb42ad6e659a7b04f, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xb42ad6e659a7b04f, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0xb42ad6e659a7b04f, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0xb42ad6e659a7b04f, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xb42ad6e659a7b04f, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0xb42ad6e659a7b04f, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xb42ad6e659a7b04f, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0xb42ad6e659a7b04f, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xb42ad6e659a7b04f, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xb42ad6e659a7b04f, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0xb42ad6e659a7b04f, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xb42ad6e659a7b04f, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xb42ad6e659a7b04f, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xb42ad6e659a7b04f, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0xb42ad6e659a7b04f, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xb42ad6e659a7b04f, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xb42ad6e659a7b04f, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xb42ad6e659a7b04f, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xb42ad6e659a7b04f, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xb42ad6e659a7b04f, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0xb42ad6e659a7b04f, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0xb42ad6e659a7b04f, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0xb42ad6e659a7b04f, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xb42ad6e659a7b04f, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xb42ad6e659a7b04f, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0xb42ad6e659a7b04f, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xb42ad6e659a7b04f, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0xb42ad6e659a7b04f, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xb42ad6e659a7b04f, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0x53606bb4bf0c999d, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x53606bb4bf0c999d, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x53606bb4bf0c999d, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x53606bb4bf0c999d, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0x53606bb4bf0c999d, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x53606bb4bf0c999d, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x53606bb4bf0c999d, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x53606bb4bf0c999d, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x53606bb4bf0c999d, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x53606bb4bf0c999d, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x53606bb4bf0c999d, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0x53606bb4bf0c999d, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x53606bb4bf0c999d, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x53606bb4bf0c999d, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x53606bb4bf0c999d, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0x53606bb4bf0c999d, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0x53606bb4bf0c999d, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x53606bb4bf0c999d, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x53606bb4bf0c999d, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x53606bb4bf0c999d, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x53606bb4bf0c999d, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x53606bb4bf0c999d, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x53606bb4bf0c999d, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x53606bb4bf0c999d, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0x53606bb4bf0c999d, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x53606bb4bf0c999d, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x53606bb4bf0c999d, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0x53606bb4bf0c999d, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0x53606bb4bf0c999d, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x53606bb4bf0c999d, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x53606bb4bf0c999d, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x53606bb4bf0c999d, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x53606bb4bf0c999d, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x53606bb4bf0c999d, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0x53606bb4bf0c999d, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x53606bb4bf0c999d, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0x53606bb4bf0c999d, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x53606bb4bf0c999d, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x53606bb4bf0c999d, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x53606bb4bf0c999d, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0x53606bb4bf0c999d, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x53606bb4bf0c999d, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x53606bb4bf0c999d, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x53606bb4bf0c999d, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x53606bb4bf0c999d, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xb, rs 0x53606bb4bf0c999d, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x53606bb4bf0c999d, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x53606bb4bf0c999d, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x53606bb4bf0c999d, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x53606bb4bf0c999d, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x53606bb4bf0c999d, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x53606bb4bf0c999d, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x53606bb4bf0c999d, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x53606bb4bf0c999d, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x53606bb4bf0c999d, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x53606bb4bf0c999d, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x53606bb4bf0c999d, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x53606bb4bf0c999d, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0x53606bb4bf0c999d, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x53606bb4bf0c999d, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x53606bb4bf0c999d, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x53606bb4bf0c999d, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x53606bb4bf0c999d, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0x15ebf6121dca77c9, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x69, rs 0x15ebf6121dca77c9, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x15ebf6121dca77c9, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x15ebf6121dca77c9, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x15ebf6121dca77c9, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x15ebf6121dca77c9, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x15ebf6121dca77c9, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x15ebf6121dca77c9, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xdd, rs 0x15ebf6121dca77c9, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x15ebf6121dca77c9, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x15ebf6121dca77c9, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x15ebf6121dca77c9, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x15ebf6121dca77c9, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x15ebf6121dca77c9, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x15ebf6121dca77c9, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x15ebf6121dca77c9, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x15ebf6121dca77c9, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x15ebf6121dca77c9, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x15ebf6121dca77c9, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x15ebf6121dca77c9, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x15ebf6121dca77c9, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x15ebf6121dca77c9, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x15ebf6121dca77c9, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x15ebf6121dca77c9, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x15ebf6121dca77c9, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0x15ebf6121dca77c9, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0x15ebf6121dca77c9, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0x15ebf6121dca77c9, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x15ebf6121dca77c9, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x15ebf6121dca77c9, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x15ebf6121dca77c9, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x14, rs 0x15ebf6121dca77c9, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x15ebf6121dca77c9, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x15ebf6121dca77c9, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x53, rs 0x15ebf6121dca77c9, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x15ebf6121dca77c9, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x15ebf6121dca77c9, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xbb, rs 0x15ebf6121dca77c9, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x15ebf6121dca77c9, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0x15ebf6121dca77c9, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x15ebf6121dca77c9, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x15ebf6121dca77c9, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x15ebf6121dca77c9, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x15ebf6121dca77c9, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x15ebf6121dca77c9, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x15ebf6121dca77c9, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x15ebf6121dca77c9, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x15ebf6121dca77c9, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x15ebf6121dca77c9, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x15ebf6121dca77c9, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x15ebf6121dca77c9, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x15ebf6121dca77c9, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x15ebf6121dca77c9, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x15ebf6121dca77c9, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x15ebf6121dca77c9, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0x15ebf6121dca77c9, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x15ebf6121dca77c9, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x15ebf6121dca77c9, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x15ebf6121dca77c9, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x15ebf6121dca77c9, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x15ebf6121dca77c9, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x15ebf6121dca77c9, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x15ebf6121dca77c9, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x14abf36419fb9e63, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x14abf36419fb9e63, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0x14abf36419fb9e63, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xfa, rs 0x14abf36419fb9e63, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x14abf36419fb9e63, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x14abf36419fb9e63, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x14abf36419fb9e63, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x14abf36419fb9e63, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x14abf36419fb9e63, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x14abf36419fb9e63, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x14abf36419fb9e63, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x14abf36419fb9e63, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0x14abf36419fb9e63, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0x14abf36419fb9e63, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x14abf36419fb9e63, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x14abf36419fb9e63, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x14abf36419fb9e63, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0x14abf36419fb9e63, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x23, rs 0x14abf36419fb9e63, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x14abf36419fb9e63, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x14abf36419fb9e63, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x14abf36419fb9e63, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0x14abf36419fb9e63, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x14abf36419fb9e63, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x14abf36419fb9e63, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x14abf36419fb9e63, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x14abf36419fb9e63, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0x14abf36419fb9e63, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x14abf36419fb9e63, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x14abf36419fb9e63, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x5, rs 0x14abf36419fb9e63, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x14abf36419fb9e63, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x6d, rs 0x14abf36419fb9e63, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x14abf36419fb9e63, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x14abf36419fb9e63, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x14abf36419fb9e63, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x14abf36419fb9e63, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x55, rs 0x14abf36419fb9e63, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x14abf36419fb9e63, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x14abf36419fb9e63, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x14abf36419fb9e63, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x14abf36419fb9e63, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x14abf36419fb9e63, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x14abf36419fb9e63, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x14abf36419fb9e63, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x14abf36419fb9e63, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x14abf36419fb9e63, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0x14abf36419fb9e63, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x14abf36419fb9e63, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x14abf36419fb9e63, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x14abf36419fb9e63, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x14abf36419fb9e63, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x14abf36419fb9e63, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x14abf36419fb9e63, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x14abf36419fb9e63, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0x14abf36419fb9e63, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0x14abf36419fb9e63, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x14abf36419fb9e63, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x14abf36419fb9e63, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x14abf36419fb9e63, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x14abf36419fb9e63, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x14abf36419fb9e63, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x14abf36419fb9e63, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x7e35ce6d56e670f5, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x7e35ce6d56e670f5, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x7e35ce6d56e670f5, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x7e35ce6d56e670f5, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0x7e35ce6d56e670f5, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x7e35ce6d56e670f5, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x7e35ce6d56e670f5, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x7e35ce6d56e670f5, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x7e35ce6d56e670f5, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0x7e35ce6d56e670f5, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x7e35ce6d56e670f5, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0x7e35ce6d56e670f5, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x7e35ce6d56e670f5, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x7e35ce6d56e670f5, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x7e35ce6d56e670f5, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0x7e35ce6d56e670f5, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0x7e35ce6d56e670f5, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0x7e35ce6d56e670f5, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x7e35ce6d56e670f5, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x7e35ce6d56e670f5, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x7e35ce6d56e670f5, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0x7e35ce6d56e670f5, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x7e35ce6d56e670f5, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x7e35ce6d56e670f5, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x7e35ce6d56e670f5, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x7e35ce6d56e670f5, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0x7e35ce6d56e670f5, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0x7e35ce6d56e670f5, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0x7e35ce6d56e670f5, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x7e35ce6d56e670f5, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x7e35ce6d56e670f5, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x7e35ce6d56e670f5, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0x7e35ce6d56e670f5, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x7e35ce6d56e670f5, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0x7e35ce6d56e670f5, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x7e35ce6d56e670f5, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x86, rs 0x7e35ce6d56e670f5, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x7e35ce6d56e670f5, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x7e35ce6d56e670f5, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0x7e35ce6d56e670f5, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x7e35ce6d56e670f5, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0x7e35ce6d56e670f5, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x7e35ce6d56e670f5, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x7e35ce6d56e670f5, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0x7e35ce6d56e670f5, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x7e35ce6d56e670f5, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x7e35ce6d56e670f5, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0x7e35ce6d56e670f5, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x7e35ce6d56e670f5, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x7e35ce6d56e670f5, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x7e35ce6d56e670f5, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x7e35ce6d56e670f5, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x7e35ce6d56e670f5, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x7e35ce6d56e670f5, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x7e35ce6d56e670f5, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0x7e35ce6d56e670f5, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x7e35ce6d56e670f5, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x7e35ce6d56e670f5, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0x7e35ce6d56e670f5, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x7e35ce6d56e670f5, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x7e35ce6d56e670f5, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x7e35ce6d56e670f5, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x7e35ce6d56e670f5, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0xf2e7a490978058f3, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xf2e7a490978058f3, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0xf2e7a490978058f3, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0xf2e7a490978058f3, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0xf2e7a490978058f3, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xf2e7a490978058f3, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xf2e7a490978058f3, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x9a, rs 0xf2e7a490978058f3, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x7, rs 0xf2e7a490978058f3, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x33, rs 0xf2e7a490978058f3, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xf2e7a490978058f3, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0xf2e7a490978058f3, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0xf2e7a490978058f3, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xf2e7a490978058f3, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0xf2e7a490978058f3, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0xf2e7a490978058f3, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xf2e7a490978058f3, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xf2e7a490978058f3, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0xf2e7a490978058f3, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xf2e7a490978058f3, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xf2e7a490978058f3, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xf2e7a490978058f3, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0xf2e7a490978058f3, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0xf2e7a490978058f3, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xf2e7a490978058f3, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0xf2e7a490978058f3, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xf2e7a490978058f3, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0xf2e7a490978058f3, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xf2e7a490978058f3, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0xf2e7a490978058f3, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xf2e7a490978058f3, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xf2e7a490978058f3, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xf2e7a490978058f3, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xf2e7a490978058f3, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xf2e7a490978058f3, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xf2e7a490978058f3, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0xf2e7a490978058f3, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xf2e7a490978058f3, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0xf2e7a490978058f3, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xf2e7a490978058f3, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0xf2e7a490978058f3, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0xf2e7a490978058f3, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x5e, rs 0xf2e7a490978058f3, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xf2e7a490978058f3, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0xf2e7a490978058f3, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xf2e7a490978058f3, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0xf2e7a490978058f3, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x42, rs 0xf2e7a490978058f3, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x90, rs 0xf2e7a490978058f3, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0xf2e7a490978058f3, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0xf2e7a490978058f3, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0xf2e7a490978058f3, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xf2e7a490978058f3, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0xf2e7a490978058f3, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xf2e7a490978058f3, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0xf2e7a490978058f3, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xf2e7a490978058f3, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xf2e7a490978058f3, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0xf2e7a490978058f3, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xf2e7a490978058f3, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xf2e7a490978058f3, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xf2e7a490978058f3, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xf2e7a490978058f3, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0xa3d991b79941dedd, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xa3d991b79941dedd, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0xa3d991b79941dedd, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xa3d991b79941dedd, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xa3d991b79941dedd, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xa3d991b79941dedd, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xa3d991b79941dedd, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x84, rs 0xa3d991b79941dedd, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xf1, rs 0xa3d991b79941dedd, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0xa3d991b79941dedd, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xa3d991b79941dedd, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xa3d991b79941dedd, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0xa3d991b79941dedd, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xa3d991b79941dedd, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xa3d991b79941dedd, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0xa3d991b79941dedd, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xa3d991b79941dedd, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x2d, rs 0xa3d991b79941dedd, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0xa3d991b79941dedd, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xa3d991b79941dedd, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xa3d991b79941dedd, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0xa3d991b79941dedd, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0xa3d991b79941dedd, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xa3d991b79941dedd, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xa3d991b79941dedd, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xa3d991b79941dedd, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xa3d991b79941dedd, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0xa3d991b79941dedd, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xa3d991b79941dedd, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xb7, rs 0xa3d991b79941dedd, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x7f, rs 0xa3d991b79941dedd, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x28, rs 0xa3d991b79941dedd, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0xa3d991b79941dedd, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xa3d991b79941dedd, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0xa3d991b79941dedd, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xa3d991b79941dedd, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x6e, rs 0xa3d991b79941dedd, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xa3d991b79941dedd, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xa3d991b79941dedd, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xa3d991b79941dedd, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xa3d991b79941dedd, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0xa3d991b79941dedd, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xa3d991b79941dedd, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xa3d991b79941dedd, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x27, rs 0xa3d991b79941dedd, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x4b, rs 0xa3d991b79941dedd, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xa3d991b79941dedd, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xa3d991b79941dedd, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0xa3d991b79941dedd, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xa3d991b79941dedd, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0xa3d991b79941dedd, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xa3d991b79941dedd, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0xa3d991b79941dedd, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xa3d991b79941dedd, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xa3d991b79941dedd, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xa3d991b79941dedd, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0xa3d991b79941dedd, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0xa3d991b79941dedd, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0xa3d991b79941dedd, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0xa3d991b79941dedd, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0xa3d991b79941dedd, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xa3d991b79941dedd, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xa3d991b79941dedd, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x185b88e0db8d7d27, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x185b88e0db8d7d27, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x185b88e0db8d7d27, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0x185b88e0db8d7d27, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x185b88e0db8d7d27, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x185b88e0db8d7d27, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x185b88e0db8d7d27, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0x185b88e0db8d7d27, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x185b88e0db8d7d27, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x67, rs 0x185b88e0db8d7d27, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0x185b88e0db8d7d27, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x185b88e0db8d7d27, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0x185b88e0db8d7d27, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x185b88e0db8d7d27, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0x185b88e0db8d7d27, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x185b88e0db8d7d27, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0x185b88e0db8d7d27, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x185b88e0db8d7d27, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xe7, rs 0x185b88e0db8d7d27, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x185b88e0db8d7d27, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x185b88e0db8d7d27, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x185b88e0db8d7d27, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0x185b88e0db8d7d27, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0x185b88e0db8d7d27, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0x185b88e0db8d7d27, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x185b88e0db8d7d27, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x185b88e0db8d7d27, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x185b88e0db8d7d27, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x185b88e0db8d7d27, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x185b88e0db8d7d27, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x185b88e0db8d7d27, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x185b88e0db8d7d27, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x185b88e0db8d7d27, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x185b88e0db8d7d27, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x185b88e0db8d7d27, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x185b88e0db8d7d27, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x185b88e0db8d7d27, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x19, rs 0x185b88e0db8d7d27, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x185b88e0db8d7d27, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0x185b88e0db8d7d27, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x185b88e0db8d7d27, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x185b88e0db8d7d27, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0x185b88e0db8d7d27, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x185b88e0db8d7d27, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0x185b88e0db8d7d27, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x185b88e0db8d7d27, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x185b88e0db8d7d27, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x185b88e0db8d7d27, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xc4, rs 0x185b88e0db8d7d27, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x185b88e0db8d7d27, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0x185b88e0db8d7d27, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0x185b88e0db8d7d27, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x185b88e0db8d7d27, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0x185b88e0db8d7d27, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x185b88e0db8d7d27, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x185b88e0db8d7d27, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x185b88e0db8d7d27, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x185b88e0db8d7d27, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0x185b88e0db8d7d27, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x185b88e0db8d7d27, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0x185b88e0db8d7d27, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x185b88e0db8d7d27, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x185b88e0db8d7d27, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xd58ecbabde35697f, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0xd58ecbabde35697f, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xd58ecbabde35697f, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x16, rs 0xd58ecbabde35697f, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xd58ecbabde35697f, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xd58ecbabde35697f, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xd58ecbabde35697f, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0xd58ecbabde35697f, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0xd58ecbabde35697f, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0xd58ecbabde35697f, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xd58ecbabde35697f, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0xd58ecbabde35697f, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x2a, rs 0xd58ecbabde35697f, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0xd58ecbabde35697f, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xb9, rs 0xd58ecbabde35697f, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xd58ecbabde35697f, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0xd58ecbabde35697f, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0xd58ecbabde35697f, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x3f, rs 0xd58ecbabde35697f, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0xd58ecbabde35697f, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xd58ecbabde35697f, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xe, rs 0xd58ecbabde35697f, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x56, rs 0xd58ecbabde35697f, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xd58ecbabde35697f, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x62, rs 0xd58ecbabde35697f, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xd58ecbabde35697f, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0xd58ecbabde35697f, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xd58ecbabde35697f, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xd58ecbabde35697f, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xd58ecbabde35697f, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x21, rs 0xd58ecbabde35697f, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xca, rs 0xd58ecbabde35697f, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0xd58ecbabde35697f, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xd58ecbabde35697f, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xd58ecbabde35697f, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xd58ecbabde35697f, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0xd58ecbabde35697f, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x71, rs 0xd58ecbabde35697f, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xd58ecbabde35697f, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0xd58ecbabde35697f, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0xd58ecbabde35697f, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xd58ecbabde35697f, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xd58ecbabde35697f, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xd58ecbabde35697f, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xd58ecbabde35697f, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xd58ecbabde35697f, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xd58ecbabde35697f, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xce, rs 0xd58ecbabde35697f, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0xd58ecbabde35697f, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x48, rs 0xd58ecbabde35697f, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0xd58ecbabde35697f, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x74, rs 0xd58ecbabde35697f, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0xd58ecbabde35697f, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xd58ecbabde35697f, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xd58ecbabde35697f, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0xd58ecbabde35697f, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xd58ecbabde35697f, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xd58ecbabde35697f, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0xd58ecbabde35697f, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xd58ecbabde35697f, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0xd58ecbabde35697f, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xd58ecbabde35697f, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xd58ecbabde35697f, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xb4, rs 0x2f7e224a1c170ab2, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x2f7e224a1c170ab2, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0x2f7e224a1c170ab2, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x2f7e224a1c170ab2, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0x2f7e224a1c170ab2, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x2f7e224a1c170ab2, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x2f7e224a1c170ab2, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x2f7e224a1c170ab2, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x2f7e224a1c170ab2, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0x2f7e224a1c170ab2, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc, rs 0x2f7e224a1c170ab2, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x6a, rs 0x2f7e224a1c170ab2, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0x2f7e224a1c170ab2, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x2f7e224a1c170ab2, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x2f7e224a1c170ab2, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0x2f7e224a1c170ab2, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x2f7e224a1c170ab2, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x2f7e224a1c170ab2, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x72, rs 0x2f7e224a1c170ab2, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x2f7e224a1c170ab2, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x2f7e224a1c170ab2, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0x2f7e224a1c170ab2, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x2f7e224a1c170ab2, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0x2f7e224a1c170ab2, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0x2f7e224a1c170ab2, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x2f7e224a1c170ab2, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x39, rs 0x2f7e224a1c170ab2, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x2f7e224a1c170ab2, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x2f7e224a1c170ab2, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x2f7e224a1c170ab2, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0x2f7e224a1c170ab2, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x2f7e224a1c170ab2, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x2f7e224a1c170ab2, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x2f7e224a1c170ab2, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x2f7e224a1c170ab2, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0x2f7e224a1c170ab2, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x2f7e224a1c170ab2, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x2f7e224a1c170ab2, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x2f7e224a1c170ab2, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x2f7e224a1c170ab2, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x2f7e224a1c170ab2, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x2f7e224a1c170ab2, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x1d, rs 0x2f7e224a1c170ab2, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x2f7e224a1c170ab2, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xfc, rs 0x2f7e224a1c170ab2, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x2f7e224a1c170ab2, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x2f7e224a1c170ab2, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x2f7e224a1c170ab2, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x2f7e224a1c170ab2, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x2f7e224a1c170ab2, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x15, rs 0x2f7e224a1c170ab2, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0x2f7e224a1c170ab2, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0x2f7e224a1c170ab2, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0x2f7e224a1c170ab2, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x2f7e224a1c170ab2, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0x2f7e224a1c170ab2, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0x2f7e224a1c170ab2, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x2f7e224a1c170ab2, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x2f7e224a1c170ab2, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x2f7e224a1c170ab2, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0x2f7e224a1c170ab2, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x2f7e224a1c170ab2, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x2f7e224a1c170ab2, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0xfe71fca06c0eb657, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0xfe71fca06c0eb657, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xd7, rs 0xfe71fca06c0eb657, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0xfe71fca06c0eb657, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x1c, rs 0xfe71fca06c0eb657, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xfe71fca06c0eb657, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0xfe71fca06c0eb657, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xfe, rs 0xfe71fca06c0eb657, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0xfe71fca06c0eb657, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0xfe71fca06c0eb657, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0xfe71fca06c0eb657, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xf, rs 0xfe71fca06c0eb657, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xfe71fca06c0eb657, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xfe71fca06c0eb657, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xfe71fca06c0eb657, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xfe71fca06c0eb657, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0xfe71fca06c0eb657, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xa7, rs 0xfe71fca06c0eb657, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xfe71fca06c0eb657, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0xfe71fca06c0eb657, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0xfe71fca06c0eb657, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0xfe71fca06c0eb657, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x2e, rs 0xfe71fca06c0eb657, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0xfe71fca06c0eb657, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x3a, rs 0xfe71fca06c0eb657, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x64, rs 0xfe71fca06c0eb657, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0xfe71fca06c0eb657, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xd0, rs 0xfe71fca06c0eb657, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x8a, rs 0xfe71fca06c0eb657, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x31, rs 0xfe71fca06c0eb657, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0xfe71fca06c0eb657, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xfe71fca06c0eb657, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x61, rs 0xfe71fca06c0eb657, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xfe71fca06c0eb657, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xfe71fca06c0eb657, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0xfe71fca06c0eb657, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xe8, rs 0xfe71fca06c0eb657, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0xfe71fca06c0eb657, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xfe71fca06c0eb657, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0xfe71fca06c0eb657, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x94, rs 0xfe71fca06c0eb657, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0xfe71fca06c0eb657, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xc2, rs 0xfe71fca06c0eb657, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xfe71fca06c0eb657, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xfe71fca06c0eb657, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xc5, rs 0xfe71fca06c0eb657, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xfe71fca06c0eb657, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xfe71fca06c0eb657, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0xfe71fca06c0eb657, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0xfe71fca06c0eb657, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xba, rs 0xfe71fca06c0eb657, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x4c, rs 0xfe71fca06c0eb657, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x4a, rs 0xfe71fca06c0eb657, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0xfe71fca06c0eb657, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0xfe71fca06c0eb657, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xd6, rs 0xfe71fca06c0eb657, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0xfe71fca06c0eb657, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0xfe71fca06c0eb657, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xfe71fca06c0eb657, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0xfe71fca06c0eb657, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xfe71fca06c0eb657, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0xfe71fca06c0eb657, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xfe71fca06c0eb657, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x5d, rs 0xeed8f3518102315b, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xfb, rs 0xeed8f3518102315b, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0xeed8f3518102315b, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0xeed8f3518102315b, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0xeed8f3518102315b, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0xeed8f3518102315b, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xeed8f3518102315b, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0xeed8f3518102315b, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x6f, rs 0xeed8f3518102315b, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x9b, rs 0xeed8f3518102315b, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xeed8f3518102315b, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0xeed8f3518102315b, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0xeed8f3518102315b, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xeed8f3518102315b, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x95, rs 0xeed8f3518102315b, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0xeed8f3518102315b, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0xeed8f3518102315b, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xab, rs 0xeed8f3518102315b, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xeed8f3518102315b, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x9f, rs 0xeed8f3518102315b, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xeed8f3518102315b, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0xeed8f3518102315b, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x32, rs 0xeed8f3518102315b, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x80, rs 0xeed8f3518102315b, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xeed8f3518102315b, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0xeed8f3518102315b, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xe2, rs 0xeed8f3518102315b, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0xeed8f3518102315b, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0xeed8f3518102315b, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0xeed8f3518102315b, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xeed8f3518102315b, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0xeed8f3518102315b, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0xeed8f3518102315b, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xeed8f3518102315b, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0xeed8f3518102315b, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x91, rs 0xeed8f3518102315b, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0xeed8f3518102315b, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0xeed8f3518102315b, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xeed8f3518102315b, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0xeed8f3518102315b, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x98, rs 0xeed8f3518102315b, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x81, rs 0xeed8f3518102315b, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0xeed8f3518102315b, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xeed8f3518102315b, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xa5, rs 0xeed8f3518102315b, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0xeed8f3518102315b, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0xeed8f3518102315b, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0xeed8f3518102315b, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xf8, rs 0xeed8f3518102315b, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0xeed8f3518102315b, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xbe, rs 0xeed8f3518102315b, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x50, rs 0xeed8f3518102315b, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0xeed8f3518102315b, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x38, rs 0xeed8f3518102315b, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x82, rs 0xeed8f3518102315b, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xda, rs 0xeed8f3518102315b, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0xeed8f3518102315b, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xb2, rs 0xeed8f3518102315b, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0xeed8f3518102315b, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0xeed8f3518102315b, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xeed8f3518102315b, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xeed8f3518102315b, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0xeed8f3518102315b, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x34fdfc9a9302be89, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x34fdfc9a9302be89, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x9, rs 0x34fdfc9a9302be89, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x20, rs 0x34fdfc9a9302be89, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x4e, rs 0x34fdfc9a9302be89, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x34fdfc9a9302be89, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x34fdfc9a9302be89, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x34fdfc9a9302be89, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0x34fdfc9a9302be89, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x34fdfc9a9302be89, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0x34fdfc9a9302be89, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x41, rs 0x34fdfc9a9302be89, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x34, rs 0x34fdfc9a9302be89, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x34fdfc9a9302be89, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x34fdfc9a9302be89, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x34fdfc9a9302be89, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x24, rs 0x34fdfc9a9302be89, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0x34fdfc9a9302be89, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x34fdfc9a9302be89, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xcd, rs 0x34fdfc9a9302be89, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x34fdfc9a9302be89, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x34fdfc9a9302be89, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x60, rs 0x34fdfc9a9302be89, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0xae, rs 0x34fdfc9a9302be89, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x34fdfc9a9302be89, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0x34fdfc9a9302be89, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x10, rs 0x34fdfc9a9302be89, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x2, rs 0x34fdfc9a9302be89, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0xbc, rs 0x34fdfc9a9302be89, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x63, rs 0x34fdfc9a9302be89, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x34fdfc9a9302be89, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x34fdfc9a9302be89, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x34fdfc9a9302be89, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x34fdfc9a9302be89, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x34fdfc9a9302be89, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0xbf, rs 0x34fdfc9a9302be89, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x1a, rs 0x34fdfc9a9302be89, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x34fdfc9a9302be89, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x34fdfc9a9302be89, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xea, rs 0x34fdfc9a9302be89, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x34fdfc9a9302be89, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0xaf, rs 0x34fdfc9a9302be89, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0x34fdfc9a9302be89, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x34fdfc9a9302be89, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xd3, rs 0x34fdfc9a9302be89, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x34fdfc9a9302be89, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x34fdfc9a9302be89, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x34fdfc9a9302be89, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x34fdfc9a9302be89, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x34fdfc9a9302be89, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xec, rs 0x34fdfc9a9302be89, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x7e, rs 0x34fdfc9a9302be89, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x7c, rs 0x34fdfc9a9302be89, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0x34fdfc9a9302be89, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x34fdfc9a9302be89, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x34fdfc9a9302be89, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x34fdfc9a9302be89, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xe0, rs 0x34fdfc9a9302be89, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xe4, rs 0x34fdfc9a9302be89, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x34fdfc9a9302be89, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0x34fdfc9a9302be89, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x34fdfc9a9302be89, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x34fdfc9a9302be89, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x54, rs 0xc49ee3ad81b5af52, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0xf2, rs 0xc49ee3ad81b5af52, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xd2, rs 0xc49ee3ad81b5af52, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xe9, rs 0xc49ee3ad81b5af52, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x17, rs 0xc49ee3ad81b5af52, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0xc49ee3ad81b5af52, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0xc49ee3ad81b5af52, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0xc49ee3ad81b5af52, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x66, rs 0xc49ee3ad81b5af52, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x92, rs 0xc49ee3ad81b5af52, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0xc49ee3ad81b5af52, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xa, rs 0xc49ee3ad81b5af52, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0xc49ee3ad81b5af52, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xc49ee3ad81b5af52, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0xc49ee3ad81b5af52, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0xff, rs 0xc49ee3ad81b5af52, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0xc49ee3ad81b5af52, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xa2, rs 0xc49ee3ad81b5af52, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0xc49ee3ad81b5af52, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x96, rs 0xc49ee3ad81b5af52, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0xc49ee3ad81b5af52, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0xc49ee3ad81b5af52, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0xc49ee3ad81b5af52, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x77, rs 0xc49ee3ad81b5af52, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x35, rs 0xc49ee3ad81b5af52, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x5f, rs 0xc49ee3ad81b5af52, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xd9, rs 0xc49ee3ad81b5af52, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xcb, rs 0xc49ee3ad81b5af52, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x85, rs 0xc49ee3ad81b5af52, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0xc49ee3ad81b5af52, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0xf4, rs 0xc49ee3ad81b5af52, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x9d, rs 0xc49ee3ad81b5af52, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x5c, rs 0xc49ee3ad81b5af52, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xc49ee3ad81b5af52, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xdc, rs 0xc49ee3ad81b5af52, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x88, rs 0xc49ee3ad81b5af52, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xe3, rs 0xc49ee3ad81b5af52, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x44, rs 0xc49ee3ad81b5af52, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xc49ee3ad81b5af52, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xb3, rs 0xc49ee3ad81b5af52, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x8f, rs 0xc49ee3ad81b5af52, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x78, rs 0xc49ee3ad81b5af52, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0xc49ee3ad81b5af52, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xc49ee3ad81b5af52, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0xc49ee3ad81b5af52, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0xc49ee3ad81b5af52, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xc49ee3ad81b5af52, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xa1, rs 0xc49ee3ad81b5af52, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0xc49ee3ad81b5af52, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x1b, rs 0xc49ee3ad81b5af52, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0xc49ee3ad81b5af52, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0xc49ee3ad81b5af52, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x45, rs 0xc49ee3ad81b5af52, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0xc49ee3ad81b5af52, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x79, rs 0xc49ee3ad81b5af52, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0xc49ee3ad81b5af52, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x4, rs 0xc49ee3ad81b5af52, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xa9, rs 0xc49ee3ad81b5af52, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xad, rs 0xc49ee3ad81b5af52, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xdb, rs 0xc49ee3ad81b5af52, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0xc49ee3ad81b5af52, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0xc49ee3ad81b5af52, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0xc49ee3ad81b5af52, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0xee, rs 0x9e02de4b678930ec, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x9e02de4b678930ec, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0x6c, rs 0x9e02de4b678930ec, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0x83, rs 0x9e02de4b678930ec, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x9e02de4b678930ec, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x9e02de4b678930ec, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x9e02de4b678930ec, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0x93, rs 0x9e02de4b678930ec, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x0, rs 0x9e02de4b678930ec, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0x2c, rs 0x9e02de4b678930ec, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0x46, rs 0x9e02de4b678930ec, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0xa4, rs 0x9e02de4b678930ec, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x97, rs 0x9e02de4b678930ec, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x9e02de4b678930ec, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x9e02de4b678930ec, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x9e02de4b678930ec, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x87, rs 0x9e02de4b678930ec, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0x3c, rs 0x9e02de4b678930ec, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0xac, rs 0x9e02de4b678930ec, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0x30, rs 0x9e02de4b678930ec, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x9e02de4b678930ec, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0x7b, rs 0x9e02de4b678930ec, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0xc3, rs 0x9e02de4b678930ec, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x9e02de4b678930ec, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0xcf, rs 0x9e02de4b678930ec, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0xf9, rs 0x9e02de4b678930ec, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x9e02de4b678930ec, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0x65, rs 0x9e02de4b678930ec, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x1f, rs 0x9e02de4b678930ec, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0xc6, rs 0x9e02de4b678930ec, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x8e, rs 0x9e02de4b678930ec, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0x37, rs 0x9e02de4b678930ec, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0xf6, rs 0x9e02de4b678930ec, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x9e02de4b678930ec, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0x76, rs 0x9e02de4b678930ec, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x22, rs 0x9e02de4b678930ec, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0x7d, rs 0x9e02de4b678930ec, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0xde, rs 0x9e02de4b678930ec, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x9e02de4b678930ec, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0x4d, rs 0x9e02de4b678930ec, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0x29, rs 0x9e02de4b678930ec, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x12, rs 0x9e02de4b678930ec, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0x57, rs 0x9e02de4b678930ec, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x9e02de4b678930ec, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0x36, rs 0x9e02de4b678930ec, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0x5a, rs 0x9e02de4b678930ec, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x9e02de4b678930ec, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0x3b, rs 0x9e02de4b678930ec, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x89, rs 0x9e02de4b678930ec, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x9e02de4b678930ec, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0x4f, rs 0x9e02de4b678930ec, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0xe1, rs 0x9e02de4b678930ec, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x9e02de4b678930ec, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x9e02de4b678930ec, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x9e02de4b678930ec, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0x6b, rs 0x9e02de4b678930ec, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x9e, rs 0x9e02de4b678930ec, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x9e02de4b678930ec, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0x47, rs 0x9e02de4b678930ec, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0x75, rs 0x9e02de4b678930ec, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0x3e, rs 0x9e02de4b678930ec, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0xd8, rs 0x9e02de4b678930ec, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x9e02de4b678930ec, rt 0x680cce5fb236b666
+baddu $t3, $t1, $t2 :: rd 0x68, rs 0x680cce5fb236b666, rt 0x42b0c0a28677b502
+baddu $t3, $t1, $t2 :: rd 0x6, rs 0x680cce5fb236b666, rt 0x9e705cc51ad8dca0
+baddu $t3, $t1, $t2 :: rd 0xe6, rs 0x680cce5fb236b666, rt 0x47f505569a08a180
+baddu $t3, $t1, $t2 :: rd 0xfd, rs 0x680cce5fb236b666, rt 0x94ff52fc81afa797
+baddu $t3, $t1, $t2 :: rd 0x2b, rs 0x680cce5fb236b666, rt 0x556b3ecaccf17ac5
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x680cce5fb236b666, rt 0x3c2cd9a9cda20766
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x680cce5fb236b666, rt 0xd0d070db710cd036
+baddu $t3, $t1, $t2 :: rd 0xd, rs 0x680cce5fb236b666, rt 0x2f39454412d6e4a7
+baddu $t3, $t1, $t2 :: rd 0x7a, rs 0x680cce5fb236b666, rt 0xed5005cbc8b0a214
+baddu $t3, $t1, $t2 :: rd 0xa6, rs 0x680cce5fb236b666, rt 0x87750a04ad765040
+baddu $t3, $t1, $t2 :: rd 0xc0, rs 0x680cce5fb236b666, rt 0xc4c770f630dcca5a
+baddu $t3, $t1, $t2 :: rd 0x1e, rs 0x680cce5fb236b666, rt 0xbb8c035e0de0f0b8
+baddu $t3, $t1, $t2 :: rd 0x11, rs 0x680cce5fb236b666, rt 0x49fbf6a795b1a5ab
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x680cce5fb236b666, rt 0xd685884e76558c4f
+baddu $t3, $t1, $t2 :: rd 0xa0, rs 0x680cce5fb236b666, rt 0x58300f029cae393a
+baddu $t3, $t1, $t2 :: rd 0x13, rs 0x680cce5fb236b666, rt 0xde230867a630f6ad
+baddu $t3, $t1, $t2 :: rd 0x1, rs 0x680cce5fb236b666, rt 0x81daf8200468319b
+baddu $t3, $t1, $t2 :: rd 0xb6, rs 0x680cce5fb236b666, rt 0x6778fdf3ba52a850
+baddu $t3, $t1, $t2 :: rd 0x26, rs 0x680cce5fb236b666, rt 0xe4627f3fe5255fc0
+baddu $t3, $t1, $t2 :: rd 0xaa, rs 0x680cce5fb236b666, rt 0x7caf83d2880ff344
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x680cce5fb236b666, rt 0x24296b75a76fa427
+baddu $t3, $t1, $t2 :: rd 0xf5, rs 0x680cce5fb236b666, rt 0x70dc3454bfe348f
+baddu $t3, $t1, $t2 :: rd 0x3d, rs 0x680cce5fb236b666, rt 0x3f63daa9afd199d7
+baddu $t3, $t1, $t2 :: rd 0x8b, rs 0x680cce5fb236b666, rt 0xe54750d5d9257f25
+baddu $t3, $t1, $t2 :: rd 0x49, rs 0x680cce5fb236b666, rt 0x3ce839a51cf929e3
+baddu $t3, $t1, $t2 :: rd 0x73, rs 0x680cce5fb236b666, rt 0x84785280dd301d0d
+baddu $t3, $t1, $t2 :: rd 0xed, rs 0x680cce5fb236b666, rt 0x663d061055833287
+baddu $t3, $t1, $t2 :: rd 0xdf, rs 0x680cce5fb236b666, rt 0x9ca4bdbd32be479
+baddu $t3, $t1, $t2 :: rd 0x99, rs 0x680cce5fb236b666, rt 0x36a6f7fa3c0c9f33
+baddu $t3, $t1, $t2 :: rd 0x40, rs 0x680cce5fb236b666, rt 0xa8b08fe67a8bc7da
+baddu $t3, $t1, $t2 :: rd 0x8, rs 0x680cce5fb236b666, rt 0xb665ed5e7f89e9a2
+baddu $t3, $t1, $t2 :: rd 0xb1, rs 0x680cce5fb236b666, rt 0x420b34f533734a4b
+baddu $t3, $t1, $t2 :: rd 0x70, rs 0x680cce5fb236b666, rt 0xeaded5c53dad020a
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x680cce5fb236b666, rt 0x2299b0e01d5e68ec
+baddu $t3, $t1, $t2 :: rd 0xf0, rs 0x680cce5fb236b666, rt 0xe5e9a314be7fa08a
+baddu $t3, $t1, $t2 :: rd 0x9c, rs 0x680cce5fb236b666, rt 0x4aeb6ca0e3459e36
+baddu $t3, $t1, $t2 :: rd 0xf7, rs 0x680cce5fb236b666, rt 0x993138f16cfde991
+baddu $t3, $t1, $t2 :: rd 0x58, rs 0x680cce5fb236b666, rt 0x8cff404aede292f2
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x680cce5fb236b666, rt 0x42e9f8548b739b6b
+baddu $t3, $t1, $t2 :: rd 0xc7, rs 0x680cce5fb236b666, rt 0x276af70a0e128561
+baddu $t3, $t1, $t2 :: rd 0xa3, rs 0x680cce5fb236b666, rt 0x1f9720f946923c3d
+baddu $t3, $t1, $t2 :: rd 0x8c, rs 0x680cce5fb236b666, rt 0xc7a59be7800f3d26
+baddu $t3, $t1, $t2 :: rd 0xd1, rs 0x680cce5fb236b666, rt 0x743e568d2fcf486b
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x680cce5fb236b666, rt 0xdfb254da422346ec
+baddu $t3, $t1, $t2 :: rd 0xb0, rs 0x680cce5fb236b666, rt 0x3c07af97fba6704a
+baddu $t3, $t1, $t2 :: rd 0xd4, rs 0x680cce5fb236b666, rt 0xd5b2120c6f52416e
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x680cce5fb236b666, rt 0xa388c16272f1f8f5
+baddu $t3, $t1, $t2 :: rd 0xb5, rs 0x680cce5fb236b666, rt 0xb42ad6e659a7b04f
+baddu $t3, $t1, $t2 :: rd 0x3, rs 0x680cce5fb236b666, rt 0x53606bb4bf0c999d
+baddu $t3, $t1, $t2 :: rd 0x2f, rs 0x680cce5fb236b666, rt 0x15ebf6121dca77c9
+baddu $t3, $t1, $t2 :: rd 0xc9, rs 0x680cce5fb236b666, rt 0x14abf36419fb9e63
+baddu $t3, $t1, $t2 :: rd 0x5b, rs 0x680cce5fb236b666, rt 0x7e35ce6d56e670f5
+baddu $t3, $t1, $t2 :: rd 0x59, rs 0x680cce5fb236b666, rt 0xf2e7a490978058f3
+baddu $t3, $t1, $t2 :: rd 0x43, rs 0x680cce5fb236b666, rt 0xa3d991b79941dedd
+baddu $t3, $t1, $t2 :: rd 0x8d, rs 0x680cce5fb236b666, rt 0x185b88e0db8d7d27
+baddu $t3, $t1, $t2 :: rd 0xe5, rs 0x680cce5fb236b666, rt 0xd58ecbabde35697f
+baddu $t3, $t1, $t2 :: rd 0x18, rs 0x680cce5fb236b666, rt 0x2f7e224a1c170ab2
+baddu $t3, $t1, $t2 :: rd 0xbd, rs 0x680cce5fb236b666, rt 0xfe71fca06c0eb657
+baddu $t3, $t1, $t2 :: rd 0xc1, rs 0x680cce5fb236b666, rt 0xeed8f3518102315b
+baddu $t3, $t1, $t2 :: rd 0xef, rs 0x680cce5fb236b666, rt 0x34fdfc9a9302be89
+baddu $t3, $t1, $t2 :: rd 0xb8, rs 0x680cce5fb236b666, rt 0xc49ee3ad81b5af52
+baddu $t3, $t1, $t2 :: rd 0x52, rs 0x680cce5fb236b666, rt 0x9e02de4b678930ec
+baddu $t3, $t1, $t2 :: rd 0xcc, rs 0x680cce5fb236b666, rt 0x680cce5fb236b666
+pop $t3, $t1 :: rd 0xf, rs 0x42b0c0a28677b502, rt 0x0
+pop $t3, $t1 :: rd 0xe, rs 0x9e705cc51ad8dca0, rt 0x0
+pop $t3, $t1 :: rd 0x9, rs 0x47f505569a08a180, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x94ff52fc81afa797, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x556b3ecaccf17ac5, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0x3c2cd9a9cda20766, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0xd0d070db710cd036, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0x2f39454412d6e4a7, rt 0x0
+pop $t3, $t1 :: rd 0xb, rs 0xed5005cbc8b0a214, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0x87750a04ad765040, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0xc4c770f630dcca5a, rt 0x0
+pop $t3, $t1 :: rd 0xe, rs 0xbb8c035e0de0f0b8, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x49fbf6a795b1a5ab, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0xd685884e76558c4f, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x58300f029cae393a, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0xde230867a630f6ad, rt 0x0
+pop $t3, $t1 :: rd 0xc, rs 0x81daf8200468319b, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0x6778fdf3ba52a850, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0xe4627f3fe5255fc0, rt 0x0
+pop $t3, $t1 :: rd 0xe, rs 0x7caf83d2880ff344, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x24296b75a76fa427, rt 0x0
+pop $t3, $t1 :: rd 0x13, rs 0x70dc3454bfe348f, rt 0x0
+pop $t3, $t1 :: rd 0x14, rs 0x3f63daa9afd199d7, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0xe54750d5d9257f25, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x3ce839a51cf929e3, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0x84785280dd301d0d, rt 0x0
+pop $t3, $t1 :: rd 0xe, rs 0x663d061055833287, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x9ca4bdbd32be479, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0x36a6f7fa3c0c9f33, rt 0x0
+pop $t3, $t1 :: rd 0x13, rs 0xa8b08fe67a8bc7da, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0xb665ed5e7f89e9a2, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0x420b34f533734a4b, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0xeaded5c53dad020a, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x2299b0e01d5e68ec, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0xe5e9a314be7fa08a, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x4aeb6ca0e3459e36, rt 0x0
+pop $t3, $t1 :: rd 0x13, rs 0x993138f16cfde991, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x8cff404aede292f2, rt 0x0
+pop $t3, $t1 :: rd 0x13, rs 0x42e9f8548b739b6b, rt 0x0
+pop $t3, $t1 :: rd 0xb, rs 0x276af70a0e128561, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0x1f9720f946923c3d, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0xc7a59be7800f3d26, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x743e568d2fcf486b, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0xdfb254da422346ec, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x3c07af97fba6704a, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0xd5b2120c6f52416e, rt 0x0
+pop $t3, $t1 :: rd 0x14, rs 0xa388c16272f1f8f5, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0xb42ad6e659a7b04f, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x53606bb4bf0c999d, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x15ebf6121dca77c9, rt 0x0
+pop $t3, $t1 :: rd 0x13, rs 0x14abf36419fb9e63, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0x7e35ce6d56e670f5, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0xf2e7a490978058f3, rt 0x0
+pop $t3, $t1 :: rd 0x12, rs 0xa3d991b79941dedd, rt 0x0
+pop $t3, $t1 :: rd 0x14, rs 0x185b88e0db8d7d27, rt 0x0
+pop $t3, $t1 :: rd 0x15, rs 0xd58ecbabde35697f, rt 0x0
+pop $t3, $t1 :: rd 0xd, rs 0x2f7e224a1c170ab2, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0xfe71fca06c0eb657, rt 0x0
+pop $t3, $t1 :: rd 0xb, rs 0xeed8f3518102315b, rt 0x0
+pop $t3, $t1 :: rd 0xe, rs 0x34fdfc9a9302be89, rt 0x0
+pop $t3, $t1 :: rd 0x10, rs 0xc49ee3ad81b5af52, rt 0x0
+pop $t3, $t1 :: rd 0xf, rs 0x9e02de4b678930ec, rt 0x0
+pop $t3, $t1 :: rd 0x11, rs 0x680cce5fb236b666, rt 0x0
+dpop $t3, $t1 :: rd 0x1e, rs 0x9e705cc51ad8dca0, rt 0x0
+dpop $t3, $t1 :: rd 0x26, rs 0x94ff52fc81afa797, rt 0x0
+dpop $t3, $t1 :: rd 0x1f, rs 0x3c2cd9a9cda20766, rt 0x0
+dpop $t3, $t1 :: rd 0x1e, rs 0x2f39454412d6e4a7, rt 0x0
+dpop $t3, $t1 :: rd 0x19, rs 0x87750a04ad765040, rt 0x0
+dpop $t3, $t1 :: rd 0x1e, rs 0xbb8c035e0de0f0b8, rt 0x0
+dpop $t3, $t1 :: rd 0x1f, rs 0xd685884e76558c4f, rt 0x0
+dpop $t3, $t1 :: rd 0x20, rs 0xde230867a630f6ad, rt 0x0
+dpop $t3, $t1 :: rd 0x23, rs 0x6778fdf3ba52a850, rt 0x0
+dpop $t3, $t1 :: rd 0x20, rs 0x7caf83d2880ff344, rt 0x0
+dpop $t3, $t1 :: rd 0x20, rs 0x70dc3454bfe348f, rt 0x0
+dpop $t3, $t1 :: rd 0x22, rs 0xe54750d5d9257f25, rt 0x0
+dpop $t3, $t1 :: rd 0x19, rs 0x84785280dd301d0d, rt 0x0
+dpop $t3, $t1 :: rd 0x22, rs 0x9ca4bdbd32be479, rt 0x0
+dpop $t3, $t1 :: rd 0x23, rs 0xa8b08fe67a8bc7da, rt 0x0
+dpop $t3, $t1 :: rd 0x1e, rs 0x420b34f533734a4b, rt 0x0
+dpop $t3, $t1 :: rd 0x1d, rs 0x2299b0e01d5e68ec, rt 0x0
+dpop $t3, $t1 :: rd 0x20, rs 0x4aeb6ca0e3459e36, rt 0x0
+dpop $t3, $t1 :: rd 0x21, rs 0x8cff404aede292f2, rt 0x0
+dpop $t3, $t1 :: rd 0x1c, rs 0x276af70a0e128561, rt 0x0
+dpop $t3, $t1 :: rd 0x21, rs 0xc7a59be7800f3d26, rt 0x0
+dpop $t3, $t1 :: rd 0x20, rs 0xdfb254da422346ec, rt 0x0
+dpop $t3, $t1 :: rd 0x1d, rs 0xd5b2120c6f52416e, rt 0x0
+dpop $t3, $t1 :: rd 0x22, rs 0xb42ad6e659a7b04f, rt 0x0
+dpop $t3, $t1 :: rd 0x23, rs 0x15ebf6121dca77c9, rt 0x0
+dpop $t3, $t1 :: rd 0x26, rs 0x7e35ce6d56e670f5, rt 0x0
+dpop $t3, $t1 :: rd 0x24, rs 0xa3d991b79941dedd, rt 0x0
+dpop $t3, $t1 :: rd 0x28, rs 0xd58ecbabde35697f, rt 0x0
+dpop $t3, $t1 :: rd 0x24, rs 0xfe71fca06c0eb657, rt 0x0
+dpop $t3, $t1 :: rd 0x22, rs 0x34fdfc9a9302be89, rt 0x0
+dpop $t3, $t1 :: rd 0x1f, rs 0x9e02de4b678930ec, rt 0x0
+saa :: value: 0x42b0c0a28677b502, memPre: 0x82d2ab1300000000, mem: 0x82d2ab138677b502
+saa :: value: 0x9e705cc51ad8dca0, memPre: 0x7e876382d2ab13, mem: 0x7e87639dab87b3
+saa :: value: 0x47f505569a08a180, memPre: 0xc31510f3007e8763, mem: 0xc31510f39a8728e3
+saa :: value: 0x94ff52fc81afa797, memPre: 0x976d6e9ac31510f3, mem: 0x976d6e9a44c4b88a
+saa :: value: 0x556b3ecaccf17ac5, memPre: 0x5ad6a5fb976d6e9a, mem: 0x5ad6a5fb645ee95f
+saa :: value: 0x3c2cd9a9cda20766, memPre: 0xb7746d775ad6a5fb, mem: 0xb7746d772878ad61
+saa :: value: 0xd0d070db710cd036, memPre: 0x8677b502b7746d77, mem: 0x8677b50228813dad
+saa :: value: 0x2f39454412d6e4a7, memPre: 0x42b0c0a28677b502, mem: 0x42b0c0a2994e99a9
+saa :: value: 0xed5005cbc8b0a214, memPre: 0x9e3c30ad42b0c0a2, mem: 0x9e3c30ad0b6162b6
+saa :: value: 0x87750a04ad765040, memPre: 0x2aa89d319e3c30ad, mem: 0x2aa89d314bb280ed
+saa :: value: 0xc4c770f630dcca5a, memPre: 0x77fb413d2aa89d31, mem: 0x77fb413d5b85678b
+saa :: value: 0xbb8c035e0de0f0b8, memPre: 0x1f308ec377fb413d, mem: 0x1f308ec385dc31f5
+saa :: value: 0x49fbf6a795b1a5ab, memPre: 0xc760e4f71f308ec3, mem: 0xc760e4f7b4e2346e
+saa :: value: 0xd685884e76558c4f, memPre: 0x7aa04213c760e4f7, mem: 0x7aa042133db67146
+saa :: value: 0x58300f029cae393a, memPre: 0x1ad8dca07aa04213, mem: 0x1ad8dca0174e7b4d
+saa :: value: 0xde230867a630f6ad, memPre: 0x9e705cc51ad8dca0, mem: 0x9e705cc5c109d34d
+saa :: value: 0x81daf8200468319b, memPre: 0x9615a60d9e705cc5, mem: 0x9615a60da2d88e60
+saa :: value: 0x6778fdf3ba52a850, memPre: 0x4b3dda869615a60d, mem: 0x4b3dda8650684e5d
+saa :: value: 0xe4627f3fe5255fc0, memPre: 0x6353d41d4b3dda86, mem: 0x6353d41d30633a46
+saa :: value: 0x7caf83d2880ff344, memPre: 0x5e7a4dd6353d41d, mem: 0x5e7a4ddeb63c761
+saa :: value: 0x24296b75a76fa427, memPre: 0xc40bd41305e7a4dd, mem: 0xc40bd413ad574904
+saa :: value: 0x70dc3454bfe348f, memPre: 0x3af35a9dc40bd413, mem: 0x3af35a9d100a08a2
+saa :: value: 0x3f63daa9afd199d7, memPre: 0x9a08a1803af35a9d, mem: 0x9a08a180eac4f474
+saa :: value: 0xe54750d5d9257f25, memPre: 0x47f505569a08a180, mem: 0x47f50556732e20a5
+saa :: value: 0x3ce839a51cf929e3, memPre: 0xd6d2040f47f50556, mem: 0xd6d2040f64ee2f39
+saa :: value: 0x84785280dd301d0d, memPre: 0x9564b77fd6d2040f, mem: 0x9564b77fb402211c
+saa :: value: 0x663d061055833287, memPre: 0xb2c76bbe9564b77f, mem: 0xb2c76bbeeae7ea06
+saa :: value: 0x9ca4bdbd32be479, memPre: 0xcebc8279b2c76bbe, mem: 0xcebc827985f35037
+saa :: value: 0x36a6f7fa3c0c9f33, memPre: 0x1f18e4c7cebc8279, mem: 0x1f18e4c70ac921ac
+saa :: value: 0xa8b08fe67a8bc7da, memPre: 0xb5034c2f1f18e4c7, mem: 0xb5034c2f99a4aca1
+saa :: value: 0xb665ed5e7f89e9a2, memPre: 0x81afa797b5034c2f, mem: 0x81afa797348d35d1
+saa :: value: 0x420b34f533734a4b, memPre: 0x94ff52fc81afa797, mem: 0x94ff52fcb522f1e2
+saa :: value: 0xeaded5c53dad020a, memPre: 0x6dfc50ea94ff52fc, mem: 0x6dfc50ead2ac5506
+saa :: value: 0x2299b0e01d5e68ec, memPre: 0x31d8d9166dfc50ea, mem: 0x31d8d9168b5ab9d6
+saa :: value: 0xe5e9a314be7fa08a, memPre: 0x78e895b131d8d916, mem: 0x78e895b1f05879a0
+saa :: value: 0x4aeb6ca0e3459e36, memPre: 0x36549bd678e895b1, mem: 0x36549bd65c2e33e7
+saa :: value: 0x993138f16cfde991, memPre: 0x9b63259b36549bd6, mem: 0x9b63259ba3528567
+saa :: value: 0x8cff404aede292f2, memPre: 0x85e0a6319b63259b, mem: 0x85e0a6318945b88d
+saa :: value: 0x42e9f8548b739b6b, memPre: 0xccf17ac585e0a631, mem: 0xccf17ac51154419c
+saa :: value: 0x276af70a0e128561, memPre: 0x556b3ecaccf17ac5, mem: 0x556b3ecadb040026
+saa :: value: 0x1f9720f946923c3d, memPre: 0x81eea0fb556b3eca, mem: 0x81eea0fb9bfd7b07
+saa :: value: 0xc7a59be7800f3d26, memPre: 0xb42f5fc581eea0fb, mem: 0xb42f5fc501fdde21
+saa :: value: 0x743e568d2fcf486b, memPre: 0x14682d97b42f5fc5, mem: 0x14682d97e3fea830
+saa :: value: 0xdfb254da422346ec, memPre: 0x25b50fec14682d97, mem: 0x25b50fec568b7483
+saa :: value: 0x3c07af97fba6704a, memPre: 0x2cfb087a25b50fec, mem: 0x2cfb087a215b8036
+saa :: value: 0xd5b2120c6f52416e, memPre: 0xfc93c5132cfb087a, mem: 0xfc93c5139c4d49e8
+saa :: value: 0xa388c16272f1f8f5, memPre: 0xcda20766fc93c513, mem: 0xcda207666f85be08
+saa :: value: 0xb42ad6e659a7b04f, memPre: 0x3c2cd9a9cda20766, mem: 0x3c2cd9a92749b7b5
+saa :: value: 0x53606bb4bf0c999d, memPre: 0x7d72da3e3c2cd9a9, mem: 0x7d72da3efb397346
+saa :: value: 0x15ebf6121dca77c9, memPre: 0x1791722a7d72da3e, mem: 0x1791722a9b3d5207
+saa :: value: 0x14abf36419fb9e63, memPre: 0x93ce24ad1791722a, mem: 0x93ce24ad318d108d
+saa :: value: 0x7e35ce6d56e670f5, memPre: 0x87cc9d193ce24ad, mem: 0x87cc9d1eab495a2
+saa :: value: 0xf2e7a490978058f3, memPre: 0x38984ed2087cc9d1, mem: 0x38984ed29ffd22c4
+saa :: value: 0xa3d991b79941dedd, memPre: 0x1d2a757038984ed2, mem: 0x1d2a7570d1da2daf
+saa :: value: 0x185b88e0db8d7d27, memPre: 0x710cd0361d2a7570, mem: 0x710cd036f8b7f297
+saa :: value: 0xd58ecbabde35697f, memPre: 0xd0d070db710cd036, mem: 0xd0d070db4f4239b5
+saa :: value: 0x2f7e224a1c170ab2, memPre: 0x3415604d0d070db, mem: 0x3415604ece77b8d
+saa :: value: 0xfe71fca06c0eb657, memPre: 0x39c21c7d03415604, mem: 0x39c21c7d6f500c5b
+saa :: value: 0xeed8f3518102315b, memPre: 0x8ecc31ce39c21c7d, mem: 0x8ecc31cebac44dd8
+saa :: value: 0x34fdfc9a9302be89, memPre: 0x8e94b7af8ecc31ce, mem: 0x8e94b7af21cef057
+saa :: value: 0xc49ee3ad81b5af52, memPre: 0x1ce7674f8e94b7af, mem: 0x1ce7674f104a6701
+saa :: value: 0x9e02de4b678930ec, memPre: 0x24eb6a8d1ce7674f, mem: 0x24eb6a8d8470983b
+saa :: value: 0x680cce5fb236b666, memPre: 0x12d6e4a724eb6a8d, mem: 0x12d6e4a7d72220f3
+saad :: value: 0x9e705cc51ad8dca0, memPre: 0x7e876382d2ab13, mem: 0x9eeee4289dab87b3
+saad :: value: 0x94ff52fc81afa797, memPre: 0x976d6e9ac31510f3, mem: 0x2c6cc19744c4b88a
+saad :: value: 0x3c2cd9a9cda20766, memPre: 0xb7746d775ad6a5fb, mem: 0xf3a147212878ad61
+saad :: value: 0x2f39454412d6e4a7, memPre: 0x42b0c0a28677b502, mem: 0x71ea05e6994e99a9
+saad :: value: 0x87750a04ad765040, memPre: 0x2aa89d319e3c30ad, mem: 0xb21da7364bb280ed
+saad :: value: 0xbb8c035e0de0f0b8, memPre: 0x1f308ec377fb413d, mem: 0xdabc922185dc31f5
+saad :: value: 0xd685884e76558c4f, memPre: 0x7aa04213c760e4f7, mem: 0x5125ca623db67146
+saad :: value: 0xde230867a630f6ad, memPre: 0x9e705cc51ad8dca0, mem: 0x7c93652cc109d34d
+saad :: value: 0x6778fdf3ba52a850, memPre: 0x4b3dda869615a60d, mem: 0xb2b6d87a50684e5d
+saad :: value: 0x7caf83d2880ff344, memPre: 0x5e7a4dd6353d41d, mem: 0x829728afeb63c761
+saad :: value: 0x70dc3454bfe348f, memPre: 0x3af35a9dc40bd413, mem: 0x42011de3100a08a2
+saad :: value: 0xe54750d5d9257f25, memPre: 0x47f505569a08a180, mem: 0x2d3c562c732e20a5
+saad :: value: 0x84785280dd301d0d, memPre: 0x9564b77fd6d2040f, mem: 0x19dd0a00b402211c
+saad :: value: 0x9ca4bdbd32be479, memPre: 0xcebc8279b2c76bbe, mem: 0xd886ce5585f35037
+saad :: value: 0xa8b08fe67a8bc7da, memPre: 0xb5034c2f1f18e4c7, mem: 0x5db3dc1599a4aca1
+saad :: value: 0x420b34f533734a4b, memPre: 0x94ff52fc81afa797, mem: 0xd70a87f1b522f1e2
+saad :: value: 0x2299b0e01d5e68ec, memPre: 0x31d8d9166dfc50ea, mem: 0x547289f68b5ab9d6
+saad :: value: 0x4aeb6ca0e3459e36, memPre: 0x36549bd678e895b1, mem: 0x814008775c2e33e7
+saad :: value: 0x8cff404aede292f2, memPre: 0x85e0a6319b63259b, mem: 0x12dfe67c8945b88d
+saad :: value: 0x276af70a0e128561, memPre: 0x556b3ecaccf17ac5, mem: 0x7cd635d4db040026
+saad :: value: 0xc7a59be7800f3d26, memPre: 0xb42f5fc581eea0fb, mem: 0x7bd4fbad01fdde21
+saad :: value: 0xdfb254da422346ec, memPre: 0x25b50fec14682d97, mem: 0x56764c6568b7483
+saad :: value: 0xd5b2120c6f52416e, memPre: 0xfc93c5132cfb087a, mem: 0xd245d71f9c4d49e8
+saad :: value: 0xb42ad6e659a7b04f, memPre: 0x3c2cd9a9cda20766, mem: 0xf057b0902749b7b5
+saad :: value: 0x15ebf6121dca77c9, memPre: 0x1791722a7d72da3e, mem: 0x2d7d683c9b3d5207
+saad :: value: 0x7e35ce6d56e670f5, memPre: 0x87cc9d193ce24ad, mem: 0x86b2983eeab495a2
+saad :: value: 0xa3d991b79941dedd, memPre: 0x1d2a757038984ed2, mem: 0xc1040727d1da2daf
+saad :: value: 0xd58ecbabde35697f, memPre: 0xd0d070db710cd036, mem: 0xa65f3c874f4239b5
+saad :: value: 0xfe71fca06c0eb657, memPre: 0x39c21c7d03415604, mem: 0x3834191d6f500c5b
+saad :: value: 0x34fdfc9a9302be89, memPre: 0x8e94b7af8ecc31ce, mem: 0xc392b44a21cef057
+saad :: value: 0x9e02de4b678930ec, memPre: 0x24eb6a8d1ce7674f, mem: 0xc2ee48d88470983b
+laa :: offset: 0x4, out: 0x0, result:0x4
+laa :: offset: 0x8, out: 0xffffffff82d2ab13, result:0xffffffff82d2ab1b
+laa :: offset: 0xc, out: 0x7e8763, result:0x7e876f
+laa :: offset: 0x10, out: 0xffffffffc31510f3, result:0xffffffffc3151103
+laa :: offset: 0x14, out: 0xffffffff976d6e9a, result:0xffffffff976d6eae
+laa :: offset: 0x18, out: 0x5ad6a5fb, result:0x5ad6a613
+laa :: offset: 0x1c, out: 0xffffffffb7746d77, result:0xffffffffb7746d93
+laa :: offset: 0x20, out: 0xffffffff8677b502, result:0xffffffff8677b522
+laa :: offset: 0x24, out: 0x42b0c0a2, result:0x42b0c0c6
+laa :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0xffffffff9e3c30d5
+laa :: offset: 0x2c, out: 0x2aa89d31, result:0x2aa89d5d
+laa :: offset: 0x30, out: 0x77fb413d, result:0x77fb416d
+laa :: offset: 0x34, out: 0x1f308ec3, result:0x1f308ef7
+laa :: offset: 0x38, out: 0xffffffffc760e4f7, result:0xffffffffc760e52f
+laa :: offset: 0x3c, out: 0x7aa04213, result:0x7aa0424f
+laa :: offset: 0x40, out: 0x1ad8dca0, result:0x1ad8dce0
+laa :: offset: 0x44, out: 0xffffffff9e705cc5, result:0xffffffff9e705d09
+laa :: offset: 0x48, out: 0xffffffff9615a60d, result:0xffffffff9615a655
+laa :: offset: 0x4c, out: 0x4b3dda86, result:0x4b3ddad2
+laa :: offset: 0x50, out: 0x6353d41d, result:0x6353d46d
+laa :: offset: 0x54, out: 0x5e7a4dd, result:0x5e7a531
+laa :: offset: 0x58, out: 0xffffffffc40bd413, result:0xffffffffc40bd46b
+laa :: offset: 0x5c, out: 0x3af35a9d, result:0x3af35af9
+laa :: offset: 0x60, out: 0xffffffff9a08a180, result:0xffffffff9a08a1e0
+laa :: offset: 0x64, out: 0x47f50556, result:0x47f505ba
+laa :: offset: 0x68, out: 0xffffffffd6d2040f, result:0xffffffffd6d20477
+laa :: offset: 0x6c, out: 0xffffffff9564b77f, result:0xffffffff9564b7eb
+laa :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0xffffffffb2c76c2e
+laa :: offset: 0x74, out: 0xffffffffcebc8279, result:0xffffffffcebc82ed
+laa :: offset: 0x78, out: 0x1f18e4c7, result:0x1f18e53f
+laa :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0xffffffffb5034cab
+laa :: offset: 0x80, out: 0xffffffff81afa797, result:0xffffffff81afa817
+laa :: offset: 0x84, out: 0xffffffff94ff52fc, result:0xffffffff94ff5380
+laa :: offset: 0x88, out: 0x6dfc50ea, result:0x6dfc5172
+laa :: offset: 0x8c, out: 0x31d8d916, result:0x31d8d9a2
+laa :: offset: 0x90, out: 0x78e895b1, result:0x78e89641
+laa :: offset: 0x94, out: 0x36549bd6, result:0x36549c6a
+laa :: offset: 0x98, out: 0xffffffff9b63259b, result:0xffffffff9b632633
+laa :: offset: 0x9c, out: 0xffffffff85e0a631, result:0xffffffff85e0a6cd
+laa :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0xffffffffccf17b65
+laa :: offset: 0xa4, out: 0x556b3eca, result:0x556b3f6e
+laa :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0xffffffff81eea1a3
+laa :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0xffffffffb42f6071
+laa :: offset: 0xb0, out: 0x14682d97, result:0x14682e47
+laa :: offset: 0xb4, out: 0x25b50fec, result:0x25b510a0
+laa :: offset: 0xb8, out: 0x2cfb087a, result:0x2cfb0932
+laa :: offset: 0xbc, out: 0xfffffffffc93c513, result:0xfffffffffc93c5cf
+laa :: offset: 0xc0, out: 0xffffffffcda20766, result:0xffffffffcda20826
+laa :: offset: 0xc4, out: 0x3c2cd9a9, result:0x3c2cda6d
+laa :: offset: 0xc8, out: 0x7d72da3e, result:0x7d72db06
+laa :: offset: 0xcc, out: 0x1791722a, result:0x179172f6
+laa :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0xffffffff93ce257d
+laa :: offset: 0xd4, out: 0x87cc9d1, result:0x87ccaa5
+laa :: offset: 0xd8, out: 0x38984ed2, result:0x38984faa
+laa :: offset: 0xdc, out: 0x1d2a7570, result:0x1d2a764c
+laa :: offset: 0xe0, out: 0x710cd036, result:0x710cd116
+laa :: offset: 0xe4, out: 0xffffffffd0d070db, result:0xffffffffd0d071bf
+laa :: offset: 0xe8, out: 0x3415604, result:0x34156ec
+laa :: offset: 0xec, out: 0x39c21c7d, result:0x39c21d69
+laa :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0xffffffff8ecc32be
+laa :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0xffffffff8e94b8a3
+laa :: offset: 0xf8, out: 0x1ce7674f, result:0x1ce76847
+laa :: offset: 0xfc, out: 0x24eb6a8d, result:0x24eb6b89
+laad  :: offset: 0x8, out: 0x7e876382d2ab13, result: 0x7e876382d2ab1b
+laad  :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0x976d6e9ac3151103
+laad  :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0xb7746d775ad6a613
+laad  :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0x42b0c0a28677b522
+laad  :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0x2aa89d319e3c30d5
+laad  :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0x1f308ec377fb416d
+laad  :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0x7aa04213c760e52f
+laad  :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0x9e705cc51ad8dce0
+laad  :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0x4b3dda869615a655
+laad  :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0x5e7a4dd6353d46d
+laad  :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0x3af35a9dc40bd46b
+laad  :: offset: 0x60, out: 0x47f505569a08a180, result: 0x47f505569a08a1e0
+laad  :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0x9564b77fd6d20477
+laad  :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0xcebc8279b2c76c2e
+laad  :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0xb5034c2f1f18e53f
+laad  :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0x94ff52fc81afa817
+laad  :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0x31d8d9166dfc5172
+laad  :: offset: 0x90, out: 0x36549bd678e895b1, result: 0x36549bd678e89641
+laad  :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0x85e0a6319b632633
+laad  :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0x556b3ecaccf17b65
+laad  :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0xb42f5fc581eea1a3
+laad  :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0x25b50fec14682e47
+laad  :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0xfc93c5132cfb0932
+laad  :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0x3c2cd9a9cda20826
+laad  :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0x1791722a7d72db06
+laad  :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0x87cc9d193ce257d
+laad  :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0x1d2a757038984faa
+laad  :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0xd0d070db710cd116
+laad  :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0x39c21c7d034156ec
+laad  :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0x8e94b7af8ecc32be
+laad  :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0x24eb6a8d1ce76847
+law :: offset: 0x4, out: 0x0, result:0x4
+law :: offset: 0x8, out: 0xffffffff82d2ab13, result:0x8
+law :: offset: 0xc, out: 0x7e8763, result:0xc
+law :: offset: 0x10, out: 0xffffffffc31510f3, result:0x10
+law :: offset: 0x14, out: 0xffffffff976d6e9a, result:0x14
+law :: offset: 0x18, out: 0x5ad6a5fb, result:0x18
+law :: offset: 0x1c, out: 0xffffffffb7746d77, result:0x1c
+law :: offset: 0x20, out: 0xffffffff8677b502, result:0x20
+law :: offset: 0x24, out: 0x42b0c0a2, result:0x24
+law :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0x28
+law :: offset: 0x2c, out: 0x2aa89d31, result:0x2c
+law :: offset: 0x30, out: 0x77fb413d, result:0x30
+law :: offset: 0x34, out: 0x1f308ec3, result:0x34
+law :: offset: 0x38, out: 0xffffffffc760e4f7, result:0x38
+law :: offset: 0x3c, out: 0x7aa04213, result:0x3c
+law :: offset: 0x40, out: 0x1ad8dca0, result:0x40
+law :: offset: 0x44, out: 0xffffffff9e705cc5, result:0x44
+law :: offset: 0x48, out: 0xffffffff9615a60d, result:0x48
+law :: offset: 0x4c, out: 0x4b3dda86, result:0x4c
+law :: offset: 0x50, out: 0x6353d41d, result:0x50
+law :: offset: 0x54, out: 0x5e7a4dd, result:0x54
+law :: offset: 0x58, out: 0xffffffffc40bd413, result:0x58
+law :: offset: 0x5c, out: 0x3af35a9d, result:0x5c
+law :: offset: 0x60, out: 0xffffffff9a08a180, result:0x60
+law :: offset: 0x64, out: 0x47f50556, result:0x64
+law :: offset: 0x68, out: 0xffffffffd6d2040f, result:0x68
+law :: offset: 0x6c, out: 0xffffffff9564b77f, result:0x6c
+law :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0x70
+law :: offset: 0x74, out: 0xffffffffcebc8279, result:0x74
+law :: offset: 0x78, out: 0x1f18e4c7, result:0x78
+law :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0x7c
+law :: offset: 0x80, out: 0xffffffff81afa797, result:0x80
+law :: offset: 0x84, out: 0xffffffff94ff52fc, result:0x84
+law :: offset: 0x88, out: 0x6dfc50ea, result:0x88
+law :: offset: 0x8c, out: 0x31d8d916, result:0x8c
+law :: offset: 0x90, out: 0x78e895b1, result:0x90
+law :: offset: 0x94, out: 0x36549bd6, result:0x94
+law :: offset: 0x98, out: 0xffffffff9b63259b, result:0x98
+law :: offset: 0x9c, out: 0xffffffff85e0a631, result:0x9c
+law :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0xa0
+law :: offset: 0xa4, out: 0x556b3eca, result:0xa4
+law :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0xa8
+law :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0xac
+law :: offset: 0xb0, out: 0x14682d97, result:0xb0
+law :: offset: 0xb4, out: 0x25b50fec, result:0xb4
+law :: offset: 0xb8, out: 0x2cfb087a, result:0xb8
+law :: offset: 0xbc, out: 0xfffffffffc93c513, result:0xbc
+law :: offset: 0xc0, out: 0xffffffffcda20766, result:0xc0
+law :: offset: 0xc4, out: 0x3c2cd9a9, result:0xc4
+law :: offset: 0xc8, out: 0x7d72da3e, result:0xc8
+law :: offset: 0xcc, out: 0x1791722a, result:0xcc
+law :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0xd0
+law :: offset: 0xd4, out: 0x87cc9d1, result:0xd4
+law :: offset: 0xd8, out: 0x38984ed2, result:0xd8
+law :: offset: 0xdc, out: 0x1d2a7570, result:0xdc
+law :: offset: 0xe0, out: 0x710cd036, result:0xe0
+law :: offset: 0xe4, out: 0xffffffffd0d070db, result:0xe4
+law :: offset: 0xe8, out: 0x3415604, result:0xe8
+law :: offset: 0xec, out: 0x39c21c7d, result:0xec
+law :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0xf0
+law :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0xf4
+law :: offset: 0xf8, out: 0x1ce7674f, result:0xf8
+law :: offset: 0xfc, out: 0x24eb6a8d, result:0xfc
+lawd :: offset: 0x8, out: 0x7e876382d2ab13, result: 0x8
+lawd :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0x10
+lawd :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0x18
+lawd :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0x20
+lawd :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0x28
+lawd :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0x30
+lawd :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0x38
+lawd :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0x40
+lawd :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0x48
+lawd :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0x50
+lawd :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0x58
+lawd :: offset: 0x60, out: 0x47f505569a08a180, result: 0x60
+lawd :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0x68
+lawd :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0x70
+lawd :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0x78
+lawd :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0x80
+lawd :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0x88
+lawd :: offset: 0x90, out: 0x36549bd678e895b1, result: 0x90
+lawd :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0x98
+lawd :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0xa0
+lawd :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0xa8
+lawd :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0xb0
+lawd :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0xb8
+lawd :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0xc0
+lawd :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0xc8
+lawd :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0xd0
+lawd :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0xd8
+lawd :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0xe0
+lawd :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0xe8
+lawd :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0xf0
+lawd :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0xf8
+lai :: offset: 0x4, out: 0x0, result:0x1
+lai :: offset: 0x8, out: 0xffffffff82d2ab13, result:0xffffffff82d2ab14
+lai :: offset: 0xc, out: 0x7e8763, result:0x7e8764
+lai :: offset: 0x10, out: 0xffffffffc31510f3, result:0xffffffffc31510f4
+lai :: offset: 0x14, out: 0xffffffff976d6e9a, result:0xffffffff976d6e9b
+lai :: offset: 0x18, out: 0x5ad6a5fb, result:0x5ad6a5fc
+lai :: offset: 0x1c, out: 0xffffffffb7746d77, result:0xffffffffb7746d78
+lai :: offset: 0x20, out: 0xffffffff8677b502, result:0xffffffff8677b503
+lai :: offset: 0x24, out: 0x42b0c0a2, result:0x42b0c0a3
+lai :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0xffffffff9e3c30ae
+lai :: offset: 0x2c, out: 0x2aa89d31, result:0x2aa89d32
+lai :: offset: 0x30, out: 0x77fb413d, result:0x77fb413e
+lai :: offset: 0x34, out: 0x1f308ec3, result:0x1f308ec4
+lai :: offset: 0x38, out: 0xffffffffc760e4f7, result:0xffffffffc760e4f8
+lai :: offset: 0x3c, out: 0x7aa04213, result:0x7aa04214
+lai :: offset: 0x40, out: 0x1ad8dca0, result:0x1ad8dca1
+lai :: offset: 0x44, out: 0xffffffff9e705cc5, result:0xffffffff9e705cc6
+lai :: offset: 0x48, out: 0xffffffff9615a60d, result:0xffffffff9615a60e
+lai :: offset: 0x4c, out: 0x4b3dda86, result:0x4b3dda87
+lai :: offset: 0x50, out: 0x6353d41d, result:0x6353d41e
+lai :: offset: 0x54, out: 0x5e7a4dd, result:0x5e7a4de
+lai :: offset: 0x58, out: 0xffffffffc40bd413, result:0xffffffffc40bd414
+lai :: offset: 0x5c, out: 0x3af35a9d, result:0x3af35a9e
+lai :: offset: 0x60, out: 0xffffffff9a08a180, result:0xffffffff9a08a181
+lai :: offset: 0x64, out: 0x47f50556, result:0x47f50557
+lai :: offset: 0x68, out: 0xffffffffd6d2040f, result:0xffffffffd6d20410
+lai :: offset: 0x6c, out: 0xffffffff9564b77f, result:0xffffffff9564b780
+lai :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0xffffffffb2c76bbf
+lai :: offset: 0x74, out: 0xffffffffcebc8279, result:0xffffffffcebc827a
+lai :: offset: 0x78, out: 0x1f18e4c7, result:0x1f18e4c8
+lai :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0xffffffffb5034c30
+lai :: offset: 0x80, out: 0xffffffff81afa797, result:0xffffffff81afa798
+lai :: offset: 0x84, out: 0xffffffff94ff52fc, result:0xffffffff94ff52fd
+lai :: offset: 0x88, out: 0x6dfc50ea, result:0x6dfc50eb
+lai :: offset: 0x8c, out: 0x31d8d916, result:0x31d8d917
+lai :: offset: 0x90, out: 0x78e895b1, result:0x78e895b2
+lai :: offset: 0x94, out: 0x36549bd6, result:0x36549bd7
+lai :: offset: 0x98, out: 0xffffffff9b63259b, result:0xffffffff9b63259c
+lai :: offset: 0x9c, out: 0xffffffff85e0a631, result:0xffffffff85e0a632
+lai :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0xffffffffccf17ac6
+lai :: offset: 0xa4, out: 0x556b3eca, result:0x556b3ecb
+lai :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0xffffffff81eea0fc
+lai :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0xffffffffb42f5fc6
+lai :: offset: 0xb0, out: 0x14682d97, result:0x14682d98
+lai :: offset: 0xb4, out: 0x25b50fec, result:0x25b50fed
+lai :: offset: 0xb8, out: 0x2cfb087a, result:0x2cfb087b
+lai :: offset: 0xbc, out: 0xfffffffffc93c513, result:0xfffffffffc93c514
+lai :: offset: 0xc0, out: 0xffffffffcda20766, result:0xffffffffcda20767
+lai :: offset: 0xc4, out: 0x3c2cd9a9, result:0x3c2cd9aa
+lai :: offset: 0xc8, out: 0x7d72da3e, result:0x7d72da3f
+lai :: offset: 0xcc, out: 0x1791722a, result:0x1791722b
+lai :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0xffffffff93ce24ae
+lai :: offset: 0xd4, out: 0x87cc9d1, result:0x87cc9d2
+lai :: offset: 0xd8, out: 0x38984ed2, result:0x38984ed3
+lai :: offset: 0xdc, out: 0x1d2a7570, result:0x1d2a7571
+lai :: offset: 0xe0, out: 0x710cd036, result:0x710cd037
+lai :: offset: 0xe4, out: 0xffffffffd0d070db, result:0xffffffffd0d070dc
+lai :: offset: 0xe8, out: 0x3415604, result:0x3415605
+lai :: offset: 0xec, out: 0x39c21c7d, result:0x39c21c7e
+lai :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0xffffffff8ecc31cf
+lai :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0xffffffff8e94b7b0
+lai :: offset: 0xf8, out: 0x1ce7674f, result:0x1ce76750
+lai :: offset: 0xfc, out: 0x24eb6a8d, result:0x24eb6a8e
+laid  :: offset: 0x8, out: 0x7e876382d2ab13, result: 0x7e876382d2ab14
+laid  :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0x976d6e9ac31510f4
+laid  :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0xb7746d775ad6a5fc
+laid  :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0x42b0c0a28677b503
+laid  :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0x2aa89d319e3c30ae
+laid  :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0x1f308ec377fb413e
+laid  :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0x7aa04213c760e4f8
+laid  :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0x9e705cc51ad8dca1
+laid  :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0x4b3dda869615a60e
+laid  :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0x5e7a4dd6353d41e
+laid  :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0x3af35a9dc40bd414
+laid  :: offset: 0x60, out: 0x47f505569a08a180, result: 0x47f505569a08a181
+laid  :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0x9564b77fd6d20410
+laid  :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0xcebc8279b2c76bbf
+laid  :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0xb5034c2f1f18e4c8
+laid  :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0x94ff52fc81afa798
+laid  :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0x31d8d9166dfc50eb
+laid  :: offset: 0x90, out: 0x36549bd678e895b1, result: 0x36549bd678e895b2
+laid  :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0x85e0a6319b63259c
+laid  :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0x556b3ecaccf17ac6
+laid  :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0xb42f5fc581eea0fc
+laid  :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0x25b50fec14682d98
+laid  :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0xfc93c5132cfb087b
+laid  :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0x3c2cd9a9cda20767
+laid  :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0x1791722a7d72da3f
+laid  :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0x87cc9d193ce24ae
+laid  :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0x1d2a757038984ed3
+laid  :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0xd0d070db710cd037
+laid  :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0x39c21c7d03415605
+laid  :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0x8e94b7af8ecc31cf
+laid  :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0x24eb6a8d1ce76750
+lad :: offset: 0x4, out: 0x0, result:0xffffffffffffffff
+lad :: offset: 0x8, out: 0xffffffff82d2ab13, result:0xffffffff82d2ab12
+lad :: offset: 0xc, out: 0x7e8763, result:0x7e8762
+lad :: offset: 0x10, out: 0xffffffffc31510f3, result:0xffffffffc31510f2
+lad :: offset: 0x14, out: 0xffffffff976d6e9a, result:0xffffffff976d6e99
+lad :: offset: 0x18, out: 0x5ad6a5fb, result:0x5ad6a5fa
+lad :: offset: 0x1c, out: 0xffffffffb7746d77, result:0xffffffffb7746d76
+lad :: offset: 0x20, out: 0xffffffff8677b502, result:0xffffffff8677b501
+lad :: offset: 0x24, out: 0x42b0c0a2, result:0x42b0c0a1
+lad :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0xffffffff9e3c30ac
+lad :: offset: 0x2c, out: 0x2aa89d31, result:0x2aa89d30
+lad :: offset: 0x30, out: 0x77fb413d, result:0x77fb413c
+lad :: offset: 0x34, out: 0x1f308ec3, result:0x1f308ec2
+lad :: offset: 0x38, out: 0xffffffffc760e4f7, result:0xffffffffc760e4f6
+lad :: offset: 0x3c, out: 0x7aa04213, result:0x7aa04212
+lad :: offset: 0x40, out: 0x1ad8dca0, result:0x1ad8dc9f
+lad :: offset: 0x44, out: 0xffffffff9e705cc5, result:0xffffffff9e705cc4
+lad :: offset: 0x48, out: 0xffffffff9615a60d, result:0xffffffff9615a60c
+lad :: offset: 0x4c, out: 0x4b3dda86, result:0x4b3dda85
+lad :: offset: 0x50, out: 0x6353d41d, result:0x6353d41c
+lad :: offset: 0x54, out: 0x5e7a4dd, result:0x5e7a4dc
+lad :: offset: 0x58, out: 0xffffffffc40bd413, result:0xffffffffc40bd412
+lad :: offset: 0x5c, out: 0x3af35a9d, result:0x3af35a9c
+lad :: offset: 0x60, out: 0xffffffff9a08a180, result:0xffffffff9a08a17f
+lad :: offset: 0x64, out: 0x47f50556, result:0x47f50555
+lad :: offset: 0x68, out: 0xffffffffd6d2040f, result:0xffffffffd6d2040e
+lad :: offset: 0x6c, out: 0xffffffff9564b77f, result:0xffffffff9564b77e
+lad :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0xffffffffb2c76bbd
+lad :: offset: 0x74, out: 0xffffffffcebc8279, result:0xffffffffcebc8278
+lad :: offset: 0x78, out: 0x1f18e4c7, result:0x1f18e4c6
+lad :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0xffffffffb5034c2e
+lad :: offset: 0x80, out: 0xffffffff81afa797, result:0xffffffff81afa796
+lad :: offset: 0x84, out: 0xffffffff94ff52fc, result:0xffffffff94ff52fb
+lad :: offset: 0x88, out: 0x6dfc50ea, result:0x6dfc50e9
+lad :: offset: 0x8c, out: 0x31d8d916, result:0x31d8d915
+lad :: offset: 0x90, out: 0x78e895b1, result:0x78e895b0
+lad :: offset: 0x94, out: 0x36549bd6, result:0x36549bd5
+lad :: offset: 0x98, out: 0xffffffff9b63259b, result:0xffffffff9b63259a
+lad :: offset: 0x9c, out: 0xffffffff85e0a631, result:0xffffffff85e0a630
+lad :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0xffffffffccf17ac4
+lad :: offset: 0xa4, out: 0x556b3eca, result:0x556b3ec9
+lad :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0xffffffff81eea0fa
+lad :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0xffffffffb42f5fc4
+lad :: offset: 0xb0, out: 0x14682d97, result:0x14682d96
+lad :: offset: 0xb4, out: 0x25b50fec, result:0x25b50feb
+lad :: offset: 0xb8, out: 0x2cfb087a, result:0x2cfb0879
+lad :: offset: 0xbc, out: 0xfffffffffc93c513, result:0xfffffffffc93c512
+lad :: offset: 0xc0, out: 0xffffffffcda20766, result:0xffffffffcda20765
+lad :: offset: 0xc4, out: 0x3c2cd9a9, result:0x3c2cd9a8
+lad :: offset: 0xc8, out: 0x7d72da3e, result:0x7d72da3d
+lad :: offset: 0xcc, out: 0x1791722a, result:0x17917229
+lad :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0xffffffff93ce24ac
+lad :: offset: 0xd4, out: 0x87cc9d1, result:0x87cc9d0
+lad :: offset: 0xd8, out: 0x38984ed2, result:0x38984ed1
+lad :: offset: 0xdc, out: 0x1d2a7570, result:0x1d2a756f
+lad :: offset: 0xe0, out: 0x710cd036, result:0x710cd035
+lad :: offset: 0xe4, out: 0xffffffffd0d070db, result:0xffffffffd0d070da
+lad :: offset: 0xe8, out: 0x3415604, result:0x3415603
+lad :: offset: 0xec, out: 0x39c21c7d, result:0x39c21c7c
+lad :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0xffffffff8ecc31cd
+lad :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0xffffffff8e94b7ae
+lad :: offset: 0xf8, out: 0x1ce7674f, result:0x1ce7674e
+lad :: offset: 0xfc, out: 0x24eb6a8d, result:0x24eb6a8c
+ladd :: offset: 0x8, out: 0x7e876382d2ab13, result: 0x7e876382d2ab12
+ladd :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0x976d6e9ac31510f2
+ladd :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0xb7746d775ad6a5fa
+ladd :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0x42b0c0a28677b501
+ladd :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0x2aa89d319e3c30ac
+ladd :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0x1f308ec377fb413c
+ladd :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0x7aa04213c760e4f6
+ladd :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0x9e705cc51ad8dc9f
+ladd :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0x4b3dda869615a60c
+ladd :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0x5e7a4dd6353d41c
+ladd :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0x3af35a9dc40bd412
+ladd :: offset: 0x60, out: 0x47f505569a08a180, result: 0x47f505569a08a17f
+ladd :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0x9564b77fd6d2040e
+ladd :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0xcebc8279b2c76bbd
+ladd :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0xb5034c2f1f18e4c6
+ladd :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0x94ff52fc81afa796
+ladd :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0x31d8d9166dfc50e9
+ladd :: offset: 0x90, out: 0x36549bd678e895b1, result: 0x36549bd678e895b0
+ladd :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0x85e0a6319b63259a
+ladd :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0x556b3ecaccf17ac4
+ladd :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0xb42f5fc581eea0fa
+ladd :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0x25b50fec14682d96
+ladd :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0xfc93c5132cfb0879
+ladd :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0x3c2cd9a9cda20765
+ladd :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0x1791722a7d72da3d
+ladd :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0x87cc9d193ce24ac
+ladd :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0x1d2a757038984ed1
+ladd :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0xd0d070db710cd035
+ladd :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0x39c21c7d03415603
+ladd :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0x8e94b7af8ecc31cd
+ladd :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0x24eb6a8d1ce7674e
+las :: offset: 0x4, out: 0x0, result:0xffffffffffffffff
+las :: offset: 0x8, out: 0xffffffff82d2ab13, result:0xffffffffffffffff
+las :: offset: 0xc, out: 0x7e8763, result:0xffffffffffffffff
+las :: offset: 0x10, out: 0xffffffffc31510f3, result:0xffffffffffffffff
+las :: offset: 0x14, out: 0xffffffff976d6e9a, result:0xffffffffffffffff
+las :: offset: 0x18, out: 0x5ad6a5fb, result:0xffffffffffffffff
+las :: offset: 0x1c, out: 0xffffffffb7746d77, result:0xffffffffffffffff
+las :: offset: 0x20, out: 0xffffffff8677b502, result:0xffffffffffffffff
+las :: offset: 0x24, out: 0x42b0c0a2, result:0xffffffffffffffff
+las :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0xffffffffffffffff
+las :: offset: 0x2c, out: 0x2aa89d31, result:0xffffffffffffffff
+las :: offset: 0x30, out: 0x77fb413d, result:0xffffffffffffffff
+las :: offset: 0x34, out: 0x1f308ec3, result:0xffffffffffffffff
+las :: offset: 0x38, out: 0xffffffffc760e4f7, result:0xffffffffffffffff
+las :: offset: 0x3c, out: 0x7aa04213, result:0xffffffffffffffff
+las :: offset: 0x40, out: 0x1ad8dca0, result:0xffffffffffffffff
+las :: offset: 0x44, out: 0xffffffff9e705cc5, result:0xffffffffffffffff
+las :: offset: 0x48, out: 0xffffffff9615a60d, result:0xffffffffffffffff
+las :: offset: 0x4c, out: 0x4b3dda86, result:0xffffffffffffffff
+las :: offset: 0x50, out: 0x6353d41d, result:0xffffffffffffffff
+las :: offset: 0x54, out: 0x5e7a4dd, result:0xffffffffffffffff
+las :: offset: 0x58, out: 0xffffffffc40bd413, result:0xffffffffffffffff
+las :: offset: 0x5c, out: 0x3af35a9d, result:0xffffffffffffffff
+las :: offset: 0x60, out: 0xffffffff9a08a180, result:0xffffffffffffffff
+las :: offset: 0x64, out: 0x47f50556, result:0xffffffffffffffff
+las :: offset: 0x68, out: 0xffffffffd6d2040f, result:0xffffffffffffffff
+las :: offset: 0x6c, out: 0xffffffff9564b77f, result:0xffffffffffffffff
+las :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0xffffffffffffffff
+las :: offset: 0x74, out: 0xffffffffcebc8279, result:0xffffffffffffffff
+las :: offset: 0x78, out: 0x1f18e4c7, result:0xffffffffffffffff
+las :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0xffffffffffffffff
+las :: offset: 0x80, out: 0xffffffff81afa797, result:0xffffffffffffffff
+las :: offset: 0x84, out: 0xffffffff94ff52fc, result:0xffffffffffffffff
+las :: offset: 0x88, out: 0x6dfc50ea, result:0xffffffffffffffff
+las :: offset: 0x8c, out: 0x31d8d916, result:0xffffffffffffffff
+las :: offset: 0x90, out: 0x78e895b1, result:0xffffffffffffffff
+las :: offset: 0x94, out: 0x36549bd6, result:0xffffffffffffffff
+las :: offset: 0x98, out: 0xffffffff9b63259b, result:0xffffffffffffffff
+las :: offset: 0x9c, out: 0xffffffff85e0a631, result:0xffffffffffffffff
+las :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0xffffffffffffffff
+las :: offset: 0xa4, out: 0x556b3eca, result:0xffffffffffffffff
+las :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0xffffffffffffffff
+las :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0xffffffffffffffff
+las :: offset: 0xb0, out: 0x14682d97, result:0xffffffffffffffff
+las :: offset: 0xb4, out: 0x25b50fec, result:0xffffffffffffffff
+las :: offset: 0xb8, out: 0x2cfb087a, result:0xffffffffffffffff
+las :: offset: 0xbc, out: 0xfffffffffc93c513, result:0xffffffffffffffff
+las :: offset: 0xc0, out: 0xffffffffcda20766, result:0xffffffffffffffff
+las :: offset: 0xc4, out: 0x3c2cd9a9, result:0xffffffffffffffff
+las :: offset: 0xc8, out: 0x7d72da3e, result:0xffffffffffffffff
+las :: offset: 0xcc, out: 0x1791722a, result:0xffffffffffffffff
+las :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0xffffffffffffffff
+las :: offset: 0xd4, out: 0x87cc9d1, result:0xffffffffffffffff
+las :: offset: 0xd8, out: 0x38984ed2, result:0xffffffffffffffff
+las :: offset: 0xdc, out: 0x1d2a7570, result:0xffffffffffffffff
+las :: offset: 0xe0, out: 0x710cd036, result:0xffffffffffffffff
+las :: offset: 0xe4, out: 0xffffffffd0d070db, result:0xffffffffffffffff
+las :: offset: 0xe8, out: 0x3415604, result:0xffffffffffffffff
+las :: offset: 0xec, out: 0x39c21c7d, result:0xffffffffffffffff
+las :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0xffffffffffffffff
+las :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0xffffffffffffffff
+las :: offset: 0xf8, out: 0x1ce7674f, result:0xffffffffffffffff
+las :: offset: 0xfc, out: 0x24eb6a8d, result:0xffffffffffffffff
+lasd :: offset: 0x8, out: 0x7e876382d2ab13, result: 0xffffffffffffffff
+lasd :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0xffffffffffffffff
+lasd :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0xffffffffffffffff
+lasd :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0xffffffffffffffff
+lasd :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0xffffffffffffffff
+lasd :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0xffffffffffffffff
+lasd :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0xffffffffffffffff
+lasd :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0xffffffffffffffff
+lasd :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0xffffffffffffffff
+lasd :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0xffffffffffffffff
+lasd :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0xffffffffffffffff
+lasd :: offset: 0x60, out: 0x47f505569a08a180, result: 0xffffffffffffffff
+lasd :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0xffffffffffffffff
+lasd :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0xffffffffffffffff
+lasd :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0xffffffffffffffff
+lasd :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0xffffffffffffffff
+lasd :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0xffffffffffffffff
+lasd :: offset: 0x90, out: 0x36549bd678e895b1, result: 0xffffffffffffffff
+lasd :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0xffffffffffffffff
+lasd :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0xffffffffffffffff
+lasd :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0xffffffffffffffff
+lasd :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0xffffffffffffffff
+lasd :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0xffffffffffffffff
+lasd :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0xffffffffffffffff
+lasd :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0xffffffffffffffff
+lasd :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0xffffffffffffffff
+lasd :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0xffffffffffffffff
+lasd :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0xffffffffffffffff
+lasd :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0xffffffffffffffff
+lasd :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0xffffffffffffffff
+lasd :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0xffffffffffffffff
+lac :: offset: 0x4, out: 0x0, result:0x0
+lac :: offset: 0x8, out: 0xffffffff82d2ab13, result:0x0
+lac :: offset: 0xc, out: 0x7e8763, result:0x0
+lac :: offset: 0x10, out: 0xffffffffc31510f3, result:0x0
+lac :: offset: 0x14, out: 0xffffffff976d6e9a, result:0x0
+lac :: offset: 0x18, out: 0x5ad6a5fb, result:0x0
+lac :: offset: 0x1c, out: 0xffffffffb7746d77, result:0x0
+lac :: offset: 0x20, out: 0xffffffff8677b502, result:0x0
+lac :: offset: 0x24, out: 0x42b0c0a2, result:0x0
+lac :: offset: 0x28, out: 0xffffffff9e3c30ad, result:0x0
+lac :: offset: 0x2c, out: 0x2aa89d31, result:0x0
+lac :: offset: 0x30, out: 0x77fb413d, result:0x0
+lac :: offset: 0x34, out: 0x1f308ec3, result:0x0
+lac :: offset: 0x38, out: 0xffffffffc760e4f7, result:0x0
+lac :: offset: 0x3c, out: 0x7aa04213, result:0x0
+lac :: offset: 0x40, out: 0x1ad8dca0, result:0x0
+lac :: offset: 0x44, out: 0xffffffff9e705cc5, result:0x0
+lac :: offset: 0x48, out: 0xffffffff9615a60d, result:0x0
+lac :: offset: 0x4c, out: 0x4b3dda86, result:0x0
+lac :: offset: 0x50, out: 0x6353d41d, result:0x0
+lac :: offset: 0x54, out: 0x5e7a4dd, result:0x0
+lac :: offset: 0x58, out: 0xffffffffc40bd413, result:0x0
+lac :: offset: 0x5c, out: 0x3af35a9d, result:0x0
+lac :: offset: 0x60, out: 0xffffffff9a08a180, result:0x0
+lac :: offset: 0x64, out: 0x47f50556, result:0x0
+lac :: offset: 0x68, out: 0xffffffffd6d2040f, result:0x0
+lac :: offset: 0x6c, out: 0xffffffff9564b77f, result:0x0
+lac :: offset: 0x70, out: 0xffffffffb2c76bbe, result:0x0
+lac :: offset: 0x74, out: 0xffffffffcebc8279, result:0x0
+lac :: offset: 0x78, out: 0x1f18e4c7, result:0x0
+lac :: offset: 0x7c, out: 0xffffffffb5034c2f, result:0x0
+lac :: offset: 0x80, out: 0xffffffff81afa797, result:0x0
+lac :: offset: 0x84, out: 0xffffffff94ff52fc, result:0x0
+lac :: offset: 0x88, out: 0x6dfc50ea, result:0x0
+lac :: offset: 0x8c, out: 0x31d8d916, result:0x0
+lac :: offset: 0x90, out: 0x78e895b1, result:0x0
+lac :: offset: 0x94, out: 0x36549bd6, result:0x0
+lac :: offset: 0x98, out: 0xffffffff9b63259b, result:0x0
+lac :: offset: 0x9c, out: 0xffffffff85e0a631, result:0x0
+lac :: offset: 0xa0, out: 0xffffffffccf17ac5, result:0x0
+lac :: offset: 0xa4, out: 0x556b3eca, result:0x0
+lac :: offset: 0xa8, out: 0xffffffff81eea0fb, result:0x0
+lac :: offset: 0xac, out: 0xffffffffb42f5fc5, result:0x0
+lac :: offset: 0xb0, out: 0x14682d97, result:0x0
+lac :: offset: 0xb4, out: 0x25b50fec, result:0x0
+lac :: offset: 0xb8, out: 0x2cfb087a, result:0x0
+lac :: offset: 0xbc, out: 0xfffffffffc93c513, result:0x0
+lac :: offset: 0xc0, out: 0xffffffffcda20766, result:0x0
+lac :: offset: 0xc4, out: 0x3c2cd9a9, result:0x0
+lac :: offset: 0xc8, out: 0x7d72da3e, result:0x0
+lac :: offset: 0xcc, out: 0x1791722a, result:0x0
+lac :: offset: 0xd0, out: 0xffffffff93ce24ad, result:0x0
+lac :: offset: 0xd4, out: 0x87cc9d1, result:0x0
+lac :: offset: 0xd8, out: 0x38984ed2, result:0x0
+lac :: offset: 0xdc, out: 0x1d2a7570, result:0x0
+lac :: offset: 0xe0, out: 0x710cd036, result:0x0
+lac :: offset: 0xe4, out: 0xffffffffd0d070db, result:0x0
+lac :: offset: 0xe8, out: 0x3415604, result:0x0
+lac :: offset: 0xec, out: 0x39c21c7d, result:0x0
+lac :: offset: 0xf0, out: 0xffffffff8ecc31ce, result:0x0
+lac :: offset: 0xf4, out: 0xffffffff8e94b7af, result:0x0
+lac :: offset: 0xf8, out: 0x1ce7674f, result:0x0
+lac :: offset: 0xfc, out: 0x24eb6a8d, result:0x0
+lacd :: offset: 0x8, out: 0x7e876382d2ab13, result: 0x0
+lacd :: offset: 0x10, out: 0x976d6e9ac31510f3, result: 0x0
+lacd :: offset: 0x18, out: 0xb7746d775ad6a5fb, result: 0x0
+lacd :: offset: 0x20, out: 0x42b0c0a28677b502, result: 0x0
+lacd :: offset: 0x28, out: 0x2aa89d319e3c30ad, result: 0x0
+lacd :: offset: 0x30, out: 0x1f308ec377fb413d, result: 0x0
+lacd :: offset: 0x38, out: 0x7aa04213c760e4f7, result: 0x0
+lacd :: offset: 0x40, out: 0x9e705cc51ad8dca0, result: 0x0
+lacd :: offset: 0x48, out: 0x4b3dda869615a60d, result: 0x0
+lacd :: offset: 0x50, out: 0x5e7a4dd6353d41d, result: 0x0
+lacd :: offset: 0x58, out: 0x3af35a9dc40bd413, result: 0x0
+lacd :: offset: 0x60, out: 0x47f505569a08a180, result: 0x0
+lacd :: offset: 0x68, out: 0x9564b77fd6d2040f, result: 0x0
+lacd :: offset: 0x70, out: 0xcebc8279b2c76bbe, result: 0x0
+lacd :: offset: 0x78, out: 0xb5034c2f1f18e4c7, result: 0x0
+lacd :: offset: 0x80, out: 0x94ff52fc81afa797, result: 0x0
+lacd :: offset: 0x88, out: 0x31d8d9166dfc50ea, result: 0x0
+lacd :: offset: 0x90, out: 0x36549bd678e895b1, result: 0x0
+lacd :: offset: 0x98, out: 0x85e0a6319b63259b, result: 0x0
+lacd :: offset: 0xa0, out: 0x556b3ecaccf17ac5, result: 0x0
+lacd :: offset: 0xa8, out: 0xb42f5fc581eea0fb, result: 0x0
+lacd :: offset: 0xb0, out: 0x25b50fec14682d97, result: 0x0
+lacd :: offset: 0xb8, out: 0xfc93c5132cfb087a, result: 0x0
+lacd :: offset: 0xc0, out: 0x3c2cd9a9cda20766, result: 0x0
+lacd :: offset: 0xc8, out: 0x1791722a7d72da3e, result: 0x0
+lacd :: offset: 0xd0, out: 0x87cc9d193ce24ad, result: 0x0
+lacd :: offset: 0xd8, out: 0x1d2a757038984ed2, result: 0x0
+lacd :: offset: 0xe0, out: 0xd0d070db710cd036, result: 0x0
+lacd :: offset: 0xe8, out: 0x39c21c7d03415604, result: 0x0
+lacd :: offset: 0xf0, out: 0x8e94b7af8ecc31ce, result: 0x0
+lacd :: offset: 0xf8, out: 0x24eb6a8d1ce7674f, result: 0x0
diff --git a/none/tests/mips64/cvm_atomic.stdout.exp-non-octeon b/none/tests/mips64/cvm_atomic.stdout.exp-non-octeon
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic.stdout.exp-non-octeon
diff --git a/none/tests/mips64/cvm_atomic.vgtest b/none/tests/mips64/cvm_atomic.vgtest
new file mode 100644
index 0000000..bbb174a
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic.vgtest
@@ -0,0 +1,3 @@
+prog: cvm_atomic
+prereq: ../../../tests/mips_features cavium-octeon2
+vgopts: -q
diff --git a/none/tests/mips64/cvm_atomic_thread.c b/none/tests/mips64/cvm_atomic_thread.c
new file mode 100644
index 0000000..5e71ec1
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic_thread.c
@@ -0,0 +1,448 @@
+/* This is an example of a program which does cavium atomic memory operations
+   between two processes which share a page. This test is based on :
+   memcheck/tests/atomic_incs.c */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <assert.h>
+#include <unistd.h>
+#include <sys/wait.h>
+#include "tests/sys_mman.h"
+
+#define N 19
+#define NNN 3456987  // Number of repetition.
+
+/* Expected values */
+long long int p1_expd[N] = { 2156643710, 2156643710, 3456986, 6913974,
+                             4288053322, 0, 4294967295,
+                             6913974, 21777111,
+                             3456986, 2153186724,
+                             6913974, 21777111,
+                             4294967295, 4288053323,  // Test 14
+                             4288053322, 4273190185,  // Test 16
+                             0, 0 };                  // Test 18
+
+long long int p2_expd[N] = { 12633614303292, 12633614303292, 3555751, 6913974,
+                              -6913974, 0, -1,
+                             6913974, 23901514779351,
+                             3456986, 11950752204196,
+                             6913974, 23901514779351,
+                             -1, -6913973,               // Test 15
+                             -6913974, -23901514779351,  // Test 17
+                             0, 0 };                     // Test 19
+
+#define IS_8_ALIGNED(_ptr)   (0 == (((unsigned long)(_ptr)) & 7))
+
+__attribute__((noinline)) void atomic_saa ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "saa  $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_saad ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "saad $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_laa ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"          "\n\t"
+      "ld   $t1, 0($t0)"      "\n\t"  // p
+      "ld   $t2, 8($t0)"      "\n\t"  // n
+      "laa  $t3, ($t1), $t2"  "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_laad ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"           "\n\t"
+      "ld   $t1, 0($t0)"       "\n\t"  // p
+      "ld   $t2, 8($t0)"       "\n\t"  // n
+      "laad $t3, ($t1), $t2"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2", "t3"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_law ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"           "\n\t"
+      "ld   $t1, 0($t0)"       "\n\t"  // p
+      "ld   $t2, 8($t0)"       "\n\t"  // n
+      "law  $t3, ($t1), $t2"  "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lawd ( long long int* p, int n )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p, (unsigned long)n };
+   __asm__ __volatile__(
+      "move $t0, %0"          "\n\t"
+      "ld   $t1, 0($t0)"      "\n\t"  // p
+      "ld   $t2, 8($t0)"      "\n\t"  // n
+      "lawd $t3, ($t1), $t2"  "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2", "t3"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lai ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "lai  $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_laid ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "laid $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lad ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "lad  $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_ladd ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "ladd $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lac ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "lac  $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lacd ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "lacd $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_las ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "las  $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+__attribute__((noinline)) void atomic_lasd ( long long int* p )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   unsigned long block[2] = { (unsigned long)p };
+   __asm__ __volatile__(
+      "move $t0, %0"      "\n\t"
+      "ld   $t1, 0($t0)"  "\n\t"  // p
+      "ld   $t2, 8($t0)"  "\n\t"  // n
+      "lasd $t2, ($t1)"   "\n\t"
+      : /*out*/
+      : /*in*/ "r"(&block[0])
+      : /*trash*/ "memory", "t0", "t1", "t2"
+   );
+#endif
+}
+
+#define TRIOP_AND_SAA(instruction, base1, base2, n)  \
+{                                                    \
+   __asm__ __volatile__(                             \
+      instruction"  $t0, (%0), %2"  "\n\t"           \
+      "saa          $t0, (%1)"       "\n\t"          \
+      : /*out*/                                      \
+      : /*in*/ "r"(base1), "r"(base2), "r"(n)        \
+      : /*trash*/ "memory", "t0"                     \
+   );                                                \
+}
+
+#define TRIOP_AND_SAAD(instruction, base1, base2, n)  \
+{                                                     \
+   __asm__ __volatile__(                              \
+      instruction"  $t0, (%0), %2"  "\n\t"            \
+      "saad         $t0, (%1)"       "\n\t"           \
+      : /*out*/                                       \
+      : /*in*/ "r"(base1), "r"(base2), "r"(n)         \
+      : /*trash*/ "memory", "t0"                      \
+   );                                                 \
+}
+
+#define BINOP_AND_SAA(instruction, base1, base2)  \
+{                                                 \
+   __asm__ __volatile__(                          \
+      instruction"  $t0, (%0)"  "\n\t"            \
+      "saa          $t0, (%1)"  "\n\t"            \
+      : /*out*/                                   \
+      : /*in*/ "r"(base1), "r"(base2)             \
+      : /*trash*/ "memory", "t0"                  \
+   );                                             \
+}
+
+#define BINOP_AND_SAAD(instruction, base1, base2)  \
+{                                                  \
+   __asm__ __volatile__(                           \
+      instruction"  $t0, (%0)"  "\n\t"             \
+      "saad         $t0, (%1)"  "\n\t"             \
+      : /*out*/                                    \
+      : /*in*/ "r"(base1), "r"(base2)              \
+      : /*trash*/ "memory", "t0"                   \
+   );                                              \
+}
+
+int main ( int argc, char** argv )
+{
+#if (_MIPS_ARCH_OCTEON2)
+   int    i, status;
+   char*  page[N];
+   long long int* p1[N];
+   long long int* p2[N];
+   pid_t  child, pc2;
+
+   printf("parent, pre-fork\n");
+
+   for (i = 0; i < N; i++) {
+      page[i] = mmap( 0, sysconf(_SC_PAGESIZE),
+                      PROT_READ|PROT_WRITE,
+                      MAP_ANONYMOUS|MAP_SHARED, -1, 0 );
+      if (page[i] == MAP_FAILED) {
+         perror("mmap failed");
+         exit(1);
+      }
+      p1[i] = (long long int*)(page[i]+0);
+      p2[i] = (long long int*)(page[i]+256);
+
+      assert( IS_8_ALIGNED(p1[i]) );
+      assert( IS_8_ALIGNED(p2[i]) );
+
+      memset(page[i], 0, 1024);
+      memset(page[i], 0, 1024);
+
+      *p1[i] = 0;
+      *p2[i] = 0;
+   }
+
+   child = fork();
+   if (child == -1) {
+      perror("fork() failed\n");
+      return 1;
+   }
+
+   if (child == 0) {
+      /* --- CHILD --- */
+      printf("child\n");
+      for (i = 0; i < NNN; i++) {
+         atomic_saa(p1[0], i);
+         atomic_saad(p2[0], i+98765 ); /* ensure we hit the upper 32 bits */
+         atomic_laa(p1[1], i);
+         atomic_laad(p2[1], i+98765 ); /* ensure we hit the upper 32 bits */
+         atomic_law(p1[2], i);
+         atomic_lawd(p2[2], i+98765 ); /* ensure we hit the upper 32 bits */
+         atomic_lai(p1[3]);
+         atomic_laid(p2[3]);
+         atomic_lad(p1[4]);
+         atomic_ladd(p2[4]);
+         atomic_lac(p1[5]);
+         atomic_lacd(p2[5]);
+         atomic_las(p1[6]);
+         atomic_lasd(p2[6]);
+         TRIOP_AND_SAA("laa ", p1[7], p1[8], 1)
+         TRIOP_AND_SAAD("laad ", p2[7], p2[8], 1)
+         TRIOP_AND_SAA("law ", p1[9], p1[10], i)
+         TRIOP_AND_SAAD("lawd ", p2[9], p2[10], i)
+         BINOP_AND_SAA("lai ", p1[11], p1[12])
+         BINOP_AND_SAAD("laid ", p2[11], p2[12])
+         BINOP_AND_SAA("las ", p1[13], p1[14])
+         BINOP_AND_SAAD("lasd ", p2[13], p2[14])
+         BINOP_AND_SAA("lad ", p1[15], p1[16])
+         BINOP_AND_SAAD("ladd ", p2[15], p2[16])
+         BINOP_AND_SAA("lac ", p1[17], p1[18])
+         BINOP_AND_SAAD("lacd ", p2[17], p2[18])
+      }
+      return 1;
+      /* NOTREACHED */
+
+   }
+
+   /* --- PARENT --- */
+   printf("parent\n");
+
+   for (i = 0; i < NNN; i++) {
+      atomic_saa(p1[0], i);
+      atomic_saad(p2[0], i+98765); /* ensure we hit the upper 32 bits */
+      atomic_laa(p1[1], i);
+      atomic_laad(p2[1], i+98765); /* ensure we hit the upper 32 bits */
+      atomic_law(p1[2], i);
+      atomic_lawd(p2[2], i+98765 ); /* ensure we hit the upper 32 bits */
+      atomic_lai(p1[3]);
+      atomic_laid(p2[3]);
+      atomic_lad(p1[4]);
+      atomic_ladd(p2[4]);
+      atomic_lac(p1[5]);
+      atomic_lacd(p2[5]);
+      atomic_las(p1[6]);
+      atomic_lasd(p2[6]);
+      TRIOP_AND_SAA("laa ", p1[7], p1[8], 1)
+      TRIOP_AND_SAAD("laad ", p2[7], p2[8], 1)
+      TRIOP_AND_SAA("law ", p1[9], p1[10], i)
+      TRIOP_AND_SAAD("lawd ", p2[9], p2[10], i)
+      BINOP_AND_SAA("lai ", p1[11], p1[12])
+      BINOP_AND_SAAD("laid ", p2[11], p2[12])
+      BINOP_AND_SAA("las ", p1[13], p1[14])
+      BINOP_AND_SAAD("lasd ", p2[13], p2[14])
+      BINOP_AND_SAA("lad ", p1[15], p1[16])
+      BINOP_AND_SAAD("ladd ", p2[15], p2[16])
+      BINOP_AND_SAA("lac ", p1[17], p1[18])
+      BINOP_AND_SAAD("lacd ", p2[17], p2[18])
+   }
+
+   pc2 = waitpid(child, &status, 0);
+   assert(pc2 == child);
+
+   /* assert that child finished normally */
+   assert(WIFEXITED(status));
+
+   printf("Store Atomic Add: 32 bit %lld, 64 bit %lld\n",      *p1[0], *p2[0]);
+   printf("Load Atomic Add: 32 bit %lld, 64 bit %lld\n",       *p1[1], *p2[1]);
+   printf("Load Atomic Swap: 32 bit %lld, 64 bit %lld\n",      *p1[2], *p2[2]);
+   printf("Load Atomic Increment: 32 bit %lld, 64 bit %lld\n", *p1[3], *p2[3]);
+   printf("Load Atomic Decrement: 32 bit %lld, 64 bit %lld\n", *p1[4], *p2[4]);
+   printf("Load Atomic Clear: 32 bit %lld, 64 bit %lld\n",     *p1[5], *p2[5]);
+   printf("Load Atomic Set: 32 bit %lld, 64 bit %lld\n",       *p1[6], *p2[6]);
+   printf("laa and saa: base1: %lld, base2: %lld\n",           *p1[7], *p1[8]);
+   printf("laad and saad: base1: %lld, base2: %lld\n",         *p2[7], *p2[8]);
+   printf("law and saa: base1: %lld, base2: %lld\n",           *p1[9], *p1[10]);
+   printf("lawd and saad: base1: %lld, base2: %lld\n",         *p2[9], *p2[10]);
+   printf("lai and saa: base1: %lld, base2: %lld\n",          *p1[11], *p1[12]);
+   printf("laid and saad: base1: %lld, base2: %lld\n",        *p2[11], *p2[12]);
+   printf("las and saa: base1: %lld, base2: %lld\n",          *p1[13], *p1[14]);
+   printf("lasd and saad: base1: %lld, base2: %lld\n",        *p2[13], *p2[14]);
+   printf("lad and saa: base1: %lld, base2: %lld\n",          *p1[15], *p1[16]);
+   printf("ladd and saad: base1: %lld, base2: %lld\n",        *p2[15], *p2[16]);
+   printf("lac and saa: base1: %lld, base2: %lld\n",          *p1[17], *p1[18]);
+   printf("lacd and saad: base1: %lld, base2: %lld\n",        *p2[17], *p2[18]);
+
+   for (i = 0; i < N; i++) {
+      if (p1_expd[i] == *p1[i] && p2_expd[i] == *p2[i]) {
+         printf("PASS %d\n", i+1);
+      } else {
+         printf("FAIL %d -- see source code for expected values\n", i+1);
+      }
+   }
+
+   printf("parent exits\n");
+#endif
+   return 0;
+}
diff --git a/none/tests/mips64/cvm_atomic_thread.stderr.exp b/none/tests/mips64/cvm_atomic_thread.stderr.exp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic_thread.stderr.exp
diff --git a/none/tests/mips64/cvm_atomic_thread.stdout.exp-LE b/none/tests/mips64/cvm_atomic_thread.stdout.exp-LE
new file mode 100644
index 0000000..ad132f8
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic_thread.stdout.exp-LE
@@ -0,0 +1,43 @@
+parent, pre-fork
+child
+parent, pre-fork
+parent
+Store Atomic Add: 32 bit 2156643710, 64 bit 12633614303292
+Load Atomic Add: 32 bit 2156643710, 64 bit 12633614303292
+Load Atomic Swap: 32 bit 3456986, 64 bit 3555751
+Load Atomic Increment: 32 bit 6913974, 64 bit 6913974
+Load Atomic Decrement: 32 bit 4288053322, 64 bit -6913974
+Load Atomic Clear: 32 bit 0, 64 bit 0
+Load Atomic Set: 32 bit 4294967295, 64 bit -1
+laa and saa: base1: 6913974, base2: 21777111
+laad and saad: base1: 6913974, base2: 23901514779351
+law and saa: base1: 3456986, base2: 2153186724
+lawd and saad: base1: 3456986, base2: 11950752204196
+lai and saa: base1: 6913974, base2: 21777111
+laid and saad: base1: 6913974, base2: 23901514779351
+las and saa: base1: 4294967295, base2: 4288053323
+lasd and saad: base1: -1, base2: -6913973
+lad and saa: base1: 4288053322, base2: 4273190185
+ladd and saad: base1: -6913974, base2: -23901514779351
+lac and saa: base1: 0, base2: 0
+lacd and saad: base1: 0, base2: 0
+PASS 1
+PASS 2
+PASS 3
+PASS 4
+PASS 5
+PASS 6
+PASS 7
+PASS 8
+PASS 9
+PASS 10
+PASS 11
+PASS 12
+PASS 13
+PASS 14
+PASS 15
+PASS 16
+PASS 17
+PASS 18
+PASS 19
+parent exits
diff --git a/none/tests/mips64/cvm_atomic_thread.stdout.exp-non-octeon b/none/tests/mips64/cvm_atomic_thread.stdout.exp-non-octeon
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic_thread.stdout.exp-non-octeon
diff --git a/none/tests/mips64/cvm_atomic_thread.vgtest b/none/tests/mips64/cvm_atomic_thread.vgtest
new file mode 100644
index 0000000..d631f76
--- /dev/null
+++ b/none/tests/mips64/cvm_atomic_thread.vgtest
@@ -0,0 +1,3 @@
+prog: cvm_atomic_thread
+prereq: ../../../tests/mips_features cavium-octeon2
+vgopts: -q