; clock-frequency = <400000>; i2c-scl-rising-time-ns = <138>; i2c-scl-falling-time-ns ..._rk3566 mipi 黑屏">
当前位置:   article > 正文

2021-12-16 RK3566 触摸屏调试记录、以及解决“触摸屏操作类似鼠标一样”的问题。_rk3566 mipi 黑屏

rk3566 mipi 黑屏

一、TP的硬件连接如下,接口包括i2c、中断pin和reset pin。

 二、dts配置如下:

  1. &i2c4 {
  2. status = "okay";
  3. pinctrl-names = "default";
  4. pinctrl-0 = <&i2c4m0_xfer>;
  5. clock-frequency = <400000>;
  6. i2c-scl-rising-time-ns = <138>;
  7. i2c-scl-falling-time-ns = <4>;
  8. ts@40 {
  9. compatible = "9tripod,gslx680";
  10. reg = <0x40>;
  11. touch-gpio = <&gpio0 RK_PB5 IRQ_TYPE_EDGE_RISING>;
  12. reset-gpio = <&gpio0 RK_PB6 GPIO_ACTIVE_LOW>;
  13. max-x = <1024>;
  14. max-y = <600>;
  15. };
  16. };

 三、kernel driver ,c文件和头文件。

  1. /*
  2. * drivers/input/touchscreen/gslX680.c
  3. *
  4. * Copyright (c) 2012 Shanghai Basewin
  5. * Guan Yuwei<guanyuwei@basewin.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/delay.h>
  13. #include <linux/hrtimer.h>
  14. #include <linux/i2c.h>
  15. #include <linux/input.h>
  16. #include <linux/interrupt.h>
  17. #include <linux/io.h>
  18. #include <linux/platform_device.h>
  19. #include <linux/async.h>
  20. #include <linux/irq.h>
  21. #include <linux/workqueue.h>
  22. #include <linux/proc_fs.h>
  23. #include <linux/input/mt.h>
  24. #include <linux/gpio.h>
  25. #include <linux/of_gpio.h>
  26. #include "tp_suspend.h"
  27. #include "gslx680_9tripod.h"
  28. //extern unsigned char root_config[32];
  29. static int REPORT_DATA_ANDROID_4_0 = 0;
  30. static int is_linux = 1;
  31. static int MAX_FINGERS = 10;
  32. static int MAX_CONTACTS = 10;
  33. //#define GSL_DEBUG
  34. //#define GSL_MONITOR
  35. //#define HAVE_TOUCH_KEY
  36. //#define SLEEP_CLEAR_POINT
  37. //#define FILTER_POINT
  38. #ifdef FILTER_POINT
  39. #define FILTER_MAX 9
  40. #endif
  41. #define GSLX680_I2C_NAME "gslX680"
  42. #define GSLX680_I2C_ADDR 0x40
  43. #define IRQ_PORT PB_PIO_IRQ(CFG_IO_TOUCH_PENDOWN_DETECT)//IRQ_EINT(8)
  44. #define GSL_DATA_REG 0x80
  45. #define GSL_STATUS_REG 0xe0
  46. #define GSL_PAGE_REG 0xf0
  47. #define PRESS_MAX 255
  48. #define GPIO_LOW 0
  49. #define GPIO_HIGH 1
  50. #define DMA_TRANS_LEN 0x20
  51. #ifdef GSL_MONITOR
  52. static struct delayed_work gsl_monitor_work;
  53. static struct workqueue_struct *gsl_monitor_workqueue = NULL;
  54. static u8 int_1st[4] = {0};
  55. static u8 int_2nd[4] = {0};
  56. static char dac_counter = 0;
  57. static char b0_counter = 0;
  58. static char bc_counter = 0;
  59. static char i2c_lock_flag = 0;
  60. #endif
  61. static struct gsl_ts *gts;
  62. static struct i2c_client *gsl_client = NULL;
  63. #ifdef HAVE_TOUCH_KEY
  64. static u16 key = 0;
  65. static int key_state_flag = 0;
  66. struct key_data {
  67. u16 key;
  68. u16 x_min;
  69. u16 x_max;
  70. u16 y_min;
  71. u16 y_max;
  72. };
  73. const u16 key_array[]={
  74. KEY_BACK,
  75. KEY_HOME,
  76. KEY_MENU,
  77. KEY_SEARCH,
  78. };
  79. #define MAX_KEY_NUM (sizeof(key_array)/sizeof(key_array[0]))
  80. struct key_data gsl_key_data[MAX_KEY_NUM] = {
  81. {KEY_BACK, 2048, 2048, 2048, 2048},
  82. {KEY_HOME, 2048, 2048, 2048, 2048},
  83. {KEY_MENU, 2048, 2048, 2048, 2048},
  84. {KEY_SEARCH, 2048, 2048, 2048, 2048},
  85. };
  86. #endif
  87. struct gsl_ts_data {
  88. u8 x_index;
  89. u8 y_index;
  90. u8 z_index;
  91. u8 id_index;
  92. u8 touch_index;
  93. u8 data_reg;
  94. u8 status_reg;
  95. u8 data_size;
  96. u8 touch_bytes;
  97. u8 update_data;
  98. u8 touch_meta_data;
  99. u8 finger_size;
  100. };
  101. static struct gsl_ts_data devices[] = {
  102. {
  103. .x_index = 6,
  104. .y_index = 4,
  105. .z_index = 5,
  106. .id_index = 7,
  107. .data_reg = GSL_DATA_REG,
  108. .status_reg = GSL_STATUS_REG,
  109. .update_data = 0x4,
  110. .touch_bytes = 4,
  111. .touch_meta_data = 4,
  112. .finger_size = 70,
  113. },
  114. };
  115. struct gsl_ts {
  116. struct i2c_client *client;
  117. struct input_dev *input;
  118. struct work_struct work;
  119. struct workqueue_struct *wq;
  120. struct gsl_ts_data *dd;
  121. u8 *touch_data;
  122. u8 device_id;
  123. int irq;
  124. int irq_pin;
  125. int rst_pin;
  126. int rst_val;
  127. struct work_struct resume_work;
  128. };
  129. #ifdef GSL_DEBUG
  130. #define print_info(fmt, args...) \
  131. do{ \
  132. printk(fmt, ##args); \
  133. }while(0)
  134. #else
  135. #define print_info(fmt, args...)
  136. #endif
  137. static u32 id_sign[10+1] = {0};
  138. static u8 id_state_flag[10+1] = {0};
  139. static u8 id_state_old_flag[10+1] = {0};
  140. static u16 x_old[10+1] = {0};
  141. static u16 y_old[10+1] = {0};
  142. static u16 x_new = 0;
  143. static u16 y_new = 0;
  144. static int gslX680_init(void)
  145. {
  146. /* shutdown pin */
  147. gpio_request(gts->rst_pin, "reset-gpio");
  148. mdelay(5);
  149. if (gpio_is_valid(gts->rst_pin)) {
  150. gpio_set_value(gts->rst_pin,GPIO_LOW);
  151. }
  152. mdelay(50);
  153. if (gpio_is_valid(gts->rst_pin)) {
  154. gpio_set_value(gts->rst_pin,GPIO_HIGH);
  155. }
  156. mdelay(5);
  157. /* config interrupt pin */
  158. return 0;
  159. }
  160. static int gslX680_shutdown_low(void)
  161. {
  162. if (gpio_is_valid(gts->rst_pin)) {
  163. gpio_set_value(gts->rst_pin,GPIO_LOW);
  164. }
  165. return 0;
  166. }
  167. static int gslX680_shutdown_high(void)
  168. {
  169. if (gpio_is_valid(gts->rst_pin)) {
  170. gpio_set_value(gts->rst_pin,GPIO_HIGH);
  171. }
  172. return 0;
  173. }
  174. static inline u16 join_bytes(u8 a, u8 b)
  175. {
  176. u16 ab = 0;
  177. ab = ab | a;
  178. ab = ab << 8 | b;
  179. return ab;
  180. }
  181. #if 0
  182. static u32 gsl_read_interface(struct i2c_client *client, u8 reg, u8 *buf, u32 num)
  183. {
  184. struct i2c_msg xfer_msg[2];
  185. xfer_msg[0].addr = client->addr;
  186. xfer_msg[0].len = 1;
  187. xfer_msg[0].flags = client->flags & I2C_M_TEN;
  188. xfer_msg[0].buf = &reg;
  189. xfer_msg[1].addr = client->addr;
  190. xfer_msg[1].len = num;
  191. xfer_msg[1].flags |= I2C_M_RD;
  192. xfer_msg[1].buf = buf;
  193. if (reg < 0x80) {
  194. i2c_transfer(client->adapter, xfer_msg, ARRAY_SIZE(xfer_msg));
  195. msleep(5);
  196. }
  197. return i2c_transfer(client->adapter, xfer_msg, ARRAY_SIZE(xfer_msg)) == ARRAY_SIZE(xfer_msg) ? 0 : -EFAULT;
  198. }
  199. #endif
  200. static u32 gsl_write_interface(struct i2c_client *client, const u8 reg, u8 *buf, u32 num)
  201. {
  202. struct i2c_msg xfer_msg[1];
  203. buf[0] = reg;
  204. xfer_msg[0].addr = client->addr;
  205. xfer_msg[0].len = num + 1;
  206. xfer_msg[0].flags = client->flags & I2C_M_TEN;
  207. xfer_msg[0].buf = buf;
  208. return i2c_transfer(client->adapter, xfer_msg, 1) == 1 ? 0 : -EFAULT;
  209. }
  210. static int gsl_ts_write(struct i2c_client *client, u8 addr, u8 *pdata, int datalen)
  211. {
  212. int ret = 0;
  213. u8 tmp_buf[128];
  214. unsigned int bytelen = 0;
  215. if (datalen > 125)
  216. {
  217. printk("%s too big datalen = %d!\n", __func__, datalen);
  218. return -1;
  219. }
  220. tmp_buf[0] = addr;
  221. bytelen++;
  222. if (datalen != 0 && pdata != NULL)
  223. {
  224. memcpy(&tmp_buf[bytelen], pdata, datalen);
  225. bytelen += datalen;
  226. }
  227. ret = i2c_master_send(client, tmp_buf, bytelen);
  228. return ret;
  229. }
  230. int gsl_ts_readbyte(struct i2c_client *client, u8 addr, u8 *pdata)
  231. {
  232. int ret = 0;
  233. ret = gsl_ts_write(client, addr, NULL, 0);
  234. if (ret < 0)
  235. {
  236. printk("%s set data address fail!\n", __func__);
  237. return ret;
  238. }
  239. return i2c_master_recv(client, pdata, 1);
  240. }
  241. static int gsl_ts_read(struct i2c_client *client, u8 addr, u8 *pdata, unsigned int datalen)
  242. {
  243. int ret = 0;
  244. int i = 0;
  245. if (datalen > 126)
  246. {
  247. printk("%s too big datalen = %d!\n", __func__, datalen);
  248. return -1;
  249. }
  250. for(i=0; i<datalen; i++){
  251. ret = gsl_ts_readbyte(client, addr+i, pdata+i);
  252. if(ret < 0)
  253. return ret;
  254. }
  255. return ret;
  256. }
  257. static __inline__ void fw2buf(u8 *buf, const u32 *fw)
  258. {
  259. u32 *u32_buf = (int *)buf;
  260. *u32_buf = *fw;
  261. }
  262. static void gsl_load_fw(struct i2c_client *client)
  263. {
  264. u8 buf[DMA_TRANS_LEN*4 + 1] = {0};
  265. u8 send_flag = 1;
  266. u8 *cur = buf + 1;
  267. u32 source_line = 0;
  268. u32 source_len;
  269. struct fw_data *ptr_fw;
  270. //printk("=============gsl_load_fw start==============\n");
  271. ptr_fw = GSLX680_FW;
  272. source_len = ARRAY_SIZE(GSLX680_FW);
  273. for (source_line = 0; source_line < source_len; source_line++)
  274. {
  275. /* init page trans, set the page val */
  276. if (GSL_PAGE_REG == ptr_fw[source_line].offset)
  277. {
  278. fw2buf(cur, &ptr_fw[source_line].val);
  279. gsl_write_interface(client, GSL_PAGE_REG, buf, 4);
  280. send_flag = 1;
  281. }
  282. else
  283. {
  284. if (1 == send_flag % (DMA_TRANS_LEN < 0x20 ? DMA_TRANS_LEN : 0x20))
  285. buf[0] = (u8)ptr_fw[source_line].offset;
  286. fw2buf(cur, &ptr_fw[source_line].val);
  287. cur += 4;
  288. if (0 == send_flag % (DMA_TRANS_LEN < 0x20 ? DMA_TRANS_LEN : 0x20))
  289. {
  290. gsl_write_interface(client, buf[0], buf, cur - buf - 1);
  291. cur = buf + 1;
  292. }
  293. send_flag++;
  294. }
  295. }
  296. printk("=============gsl_load_fw end==============\n");
  297. }
  298. static int test_i2c(struct i2c_client *client)
  299. {
  300. u8 buf;
  301. buf = 0x12;
  302. if(gsl_ts_write(client, 0xf0, &buf, 1) < 0)
  303. return -1;
  304. buf = 0x00;
  305. if(gsl_ts_read(client, 0xf0, &buf, 1) < 0)
  306. return -1;
  307. if(buf == 0x12)
  308. return 0;
  309. return -1;
  310. }
  311. static void startup_chip(struct i2c_client *client)
  312. {
  313. u8 tmp = 0x00;
  314. #ifdef GSL_NOID_VERSION
  315. gsl_DataInit(gsl_config_data_id);
  316. #endif
  317. gsl_ts_write(client, 0xe0, &tmp, 1);
  318. //msleep(10);
  319. }
  320. static void reset_chip(struct i2c_client *client)
  321. {
  322. u8 tmp = 0x88;
  323. u8 buf[4] = {0x00};
  324. gsl_ts_write(client, 0xe0, &tmp, sizeof(tmp));
  325. msleep(20);
  326. tmp = 0x04;
  327. gsl_ts_write(client, 0xe4, &tmp, sizeof(tmp));
  328. msleep(10);
  329. gsl_ts_write(client, 0xbc, buf, sizeof(buf));
  330. msleep(10);
  331. }
  332. static void clr_reg(struct i2c_client *client)
  333. {
  334. u8 write_buf[4] = {0};
  335. write_buf[0] = 0x88;
  336. gsl_ts_write(client, 0xe0, &write_buf[0], 1);
  337. //msleep(20);
  338. write_buf[0] = 0x03;
  339. gsl_ts_write(client, 0x80, &write_buf[0], 1);
  340. //msleep(5);
  341. write_buf[0] = 0x04;
  342. gsl_ts_write(client, 0xe4, &write_buf[0], 1);
  343. //msleep(5);
  344. write_buf[0] = 0x00;
  345. gsl_ts_write(client, 0xe0, &write_buf[0], 1);
  346. //msleep(20);
  347. }
  348. static int init_chip(struct i2c_client *client)
  349. {
  350. int rc;
  351. gslX680_shutdown_low();
  352. msleep(20);
  353. gslX680_shutdown_high();
  354. msleep(20);
  355. rc = test_i2c(client);
  356. if(rc < 0)
  357. return -1;
  358. clr_reg(client);
  359. reset_chip(client);
  360. gsl_load_fw(client);
  361. startup_chip(client);
  362. reset_chip(client);
  363. startup_chip(client);
  364. return 0;
  365. }
  366. #if 0
  367. static void check_mem_data(struct i2c_client *client)
  368. {
  369. u8 read_buf[4] = {0};
  370. //msleep(30);
  371. gsl_ts_read(client,0xb0, read_buf, sizeof(read_buf));
  372. if (read_buf[3] != 0x5a || read_buf[2] != 0x5a || read_buf[1] != 0x5a || read_buf[0] != 0x5a)
  373. {
  374. printk("#########check mem read 0xb0 = %x %x %x %x #########\n", read_buf[3], read_buf[2], read_buf[1], read_buf[0]);
  375. init_chip(client);
  376. }
  377. }
  378. #endif
  379. #ifdef FILTER_POINT
  380. static void filter_point(u16 x, u16 y , u8 id)
  381. {
  382. u16 x_err =0;
  383. u16 y_err =0;
  384. u16 filter_step_x = 0, filter_step_y = 0;
  385. id_sign[id] = id_sign[id] + 1;
  386. if(id_sign[id] == 1)
  387. {
  388. x_old[id] = x;
  389. y_old[id] = y;
  390. }
  391. x_err = x > x_old[id] ? (x -x_old[id]) : (x_old[id] - x);
  392. y_err = y > y_old[id] ? (y -y_old[id]) : (y_old[id] - y);
  393. if( (x_err > FILTER_MAX && y_err > FILTER_MAX/3) || (x_err > FILTER_MAX/3 && y_err > FILTER_MAX) )
  394. {
  395. filter_step_x = x_err;
  396. filter_step_y = y_err;
  397. }
  398. else
  399. {
  400. if(x_err > FILTER_MAX)
  401. filter_step_x = x_err;
  402. if(y_err> FILTER_MAX)
  403. filter_step_y = y_err;
  404. }
  405. if(x_err <= 2*FILTER_MAX && y_err <= 2*FILTER_MAX)
  406. {
  407. filter_step_x >>= 2;
  408. filter_step_y >>= 2;
  409. }
  410. else if(x_err <= 3*FILTER_MAX && y_err <= 3*FILTER_MAX)
  411. {
  412. filter_step_x >>= 1;
  413. filter_step_y >>= 1;
  414. }
  415. else if(x_err <= 4*FILTER_MAX && y_err <= 4*FILTER_MAX)
  416. {
  417. filter_step_x = filter_step_x*3/4;
  418. filter_step_y = filter_step_y*3/4;
  419. }
  420. x_new = x > x_old[id] ? (x_old[id] + filter_step_x) : (x_old[id] - filter_step_x);
  421. y_new = y > y_old[id] ? (y_old[id] + filter_step_y) : (y_old[id] - filter_step_y);
  422. x_old[id] = x_new;
  423. y_old[id] = y_new;
  424. }
  425. #else
  426. static void record_point(u16 x, u16 y , u8 id)
  427. {
  428. u16 x_err =0;
  429. u16 y_err =0;
  430. id_sign[id]=id_sign[id]+1;
  431. if(id_sign[id]==1){
  432. x_old[id]=x;
  433. y_old[id]=y;
  434. }
  435. x = (x_old[id] + x)/2;
  436. y = (y_old[id] + y)/2;
  437. if(x>x_old[id]){
  438. x_err=x -x_old[id];
  439. }
  440. else{
  441. x_err=x_old[id]-x;
  442. }
  443. if(y>y_old[id]){
  444. y_err=y -y_old[id];
  445. }
  446. else{
  447. y_err=y_old[id]-y;
  448. }
  449. if( (x_err > 3 && y_err > 1) || (x_err > 1 && y_err > 3) ){
  450. x_new = x; x_old[id] = x;
  451. y_new = y; y_old[id] = y;
  452. }
  453. else{
  454. if(x_err > 3){
  455. x_new = x; x_old[id] = x;
  456. }
  457. else
  458. x_new = x_old[id];
  459. if(y_err> 3){
  460. y_new = y; y_old[id] = y;
  461. }
  462. else
  463. y_new = y_old[id];
  464. }
  465. if(id_sign[id]==1){
  466. x_new= x_old[id];
  467. y_new= y_old[id];
  468. }
  469. }
  470. #endif
  471. #ifdef HAVE_TOUCH_KEY
  472. static void report_key(struct gsl_ts *ts, u16 x, u16 y)
  473. {
  474. u16 i = 0;
  475. for(i = 0; i < MAX_KEY_NUM; i++)
  476. {
  477. if((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max)&&(gsl_key_data[i].y_min < y) && (y < gsl_key_data[i].y_max))
  478. {
  479. key = gsl_key_data[i].key;
  480. input_report_key(ts->input, key, 1);
  481. input_sync(ts->input);
  482. key_state_flag = 1;
  483. break;
  484. }
  485. }
  486. }
  487. #endif
  488. static void report_data(struct gsl_ts *ts, u16 x, u16 y, u8 pressure, u8 id)
  489. {
  490. swap(x, y);
  491. //print_info("#####id=%d,x=%d,y=%d######\n",id,x,y);
  492. if(x > SCREEN_MAX_X || y > SCREEN_MAX_Y)
  493. {
  494. #ifdef HAVE_TOUCH_KEY
  495. report_key(ts,x,y);
  496. #endif
  497. return;
  498. }
  499. if(is_linux > 0)
  500. {
  501. input_report_abs(ts->input, ABS_X, x);
  502. input_report_abs(ts->input, ABS_Y, y);
  503. if(pressure != 0)
  504. input_report_key(ts->input, BTN_TOUCH, 1);
  505. else
  506. input_report_key(ts->input, BTN_TOUCH, 0);
  507. input_sync(ts->input);
  508. }
  509. else
  510. {
  511. input_report_abs(ts->input, ABS_MT_PRESSURE, id);
  512. input_report_abs(ts->input, ABS_MT_TOUCH_MAJOR, 1);
  513. input_report_abs(ts->input, ABS_MT_POSITION_X, x);
  514. input_report_abs(ts->input, ABS_MT_POSITION_Y, y);
  515. input_mt_sync(ts->input);
  516. }
  517. }
  518. static void gslX680_ts_worker(struct work_struct *work)
  519. {
  520. struct gsl_ts *ts = container_of(work, struct gsl_ts,work);
  521. int rc, i;
  522. u8 id, touches;
  523. u16 x, y;
  524. #ifdef GSL_NOID_VERSION
  525. u32 tmp1;
  526. u8 buf[4] = {0};
  527. struct gsl_touch_info cinfo;
  528. memset(&cinfo, 0, sizeof(struct gsl_touch_info));
  529. #endif
  530. print_info("=====gslX680_ts_worker=====\n");
  531. #ifdef GSL_MONITOR
  532. if(i2c_lock_flag != 0)
  533. goto i2c_lock_schedule;
  534. else
  535. i2c_lock_flag = 1;
  536. #endif
  537. rc = gsl_ts_read(ts->client, 0x80, &ts->touch_data[0], 4);
  538. if (rc < 0)
  539. {
  540. dev_err(&ts->client->dev, "read failed\n");
  541. goto schedule;
  542. }
  543. touches = ts->touch_data[ts->dd->touch_index];
  544. if(touches > 0)
  545. gsl_ts_read(ts->client, 0x84, &ts->touch_data[4], 4);
  546. if(touches > 1)
  547. gsl_ts_read(ts->client, 0x88, &ts->touch_data[8], 4);
  548. if(touches > 2)
  549. gsl_ts_read(ts->client, 0x8c, &ts->touch_data[12], 4);
  550. if(touches > 3)
  551. gsl_ts_read(ts->client, 0x90, &ts->touch_data[16], 4);
  552. if(touches > 4)
  553. gsl_ts_read(ts->client, 0x94, &ts->touch_data[20], 4);
  554. if(touches > 5)
  555. gsl_ts_read(ts->client, 0x98, &ts->touch_data[24], 4);
  556. if(touches > 6)
  557. gsl_ts_read(ts->client, 0x9c, &ts->touch_data[28], 4);
  558. if(touches > 7)
  559. gsl_ts_read(ts->client, 0xa0, &ts->touch_data[32], 4);
  560. if(touches > 8)
  561. gsl_ts_read(ts->client, 0xa4, &ts->touch_data[36], 4);
  562. if(touches > 9)
  563. gsl_ts_read(ts->client, 0xa8, &ts->touch_data[40], 4);
  564. print_info("-----touches: %d -----\n", touches);
  565. #ifdef GSL_NOID_VERSION
  566. cinfo.finger_num = touches;
  567. print_info("tp-gsl finger_num = %d\n",cinfo.finger_num);
  568. for(i = 0; i < (touches < MAX_CONTACTS ? touches : MAX_CONTACTS); i ++)
  569. {
  570. cinfo.x[i] = join_bytes( ( ts->touch_data[ts->dd->x_index + 4 * i + 1] & 0xf),
  571. ts->touch_data[ts->dd->x_index + 4 * i]);
  572. cinfo.y[i] = join_bytes(ts->touch_data[ts->dd->y_index + 4 * i + 1],
  573. ts->touch_data[ts->dd->y_index + 4 * i ]);
  574. cinfo.id[i] = ((ts->touch_data[ts->dd->x_index + 4 * i + 1] & 0xf0)>>4);
  575. print_info("tp-gsl before: x[%d] = %d, y[%d] = %d, id[%d] = %d \n",i,cinfo.x[i],i,cinfo.y[i],i,cinfo.id[i]);
  576. }
  577. cinfo.finger_num=(ts->touch_data[3]<<24)|(ts->touch_data[2]<<16)
  578. |(ts->touch_data[1]<<8)|(ts->touch_data[0]);
  579. gsl_alg_id_main(&cinfo);
  580. tmp1=gsl_mask_tiaoping();
  581. print_info("[tp-gsl] tmp1=%x\n",tmp1);
  582. if(tmp1>0&&tmp1<0xffffffff)
  583. {
  584. buf[0]=0xa;buf[1]=0;buf[2]=0;buf[3]=0;
  585. gsl_ts_write(ts->client,0xf0,buf,4);
  586. buf[0]=(u8)(tmp1 & 0xff);
  587. buf[1]=(u8)((tmp1>>8) & 0xff);
  588. buf[2]=(u8)((tmp1>>16) & 0xff);
  589. buf[3]=(u8)((tmp1>>24) & 0xff);
  590. print_info("tmp1=%08x,buf[0]=%02x,buf[1]=%02x,buf[2]=%02x,buf[3]=%02x\n",
  591. tmp1,buf[0],buf[1],buf[2],buf[3]);
  592. gsl_ts_write(ts->client,0x8,buf,4);
  593. }
  594. touches = cinfo.finger_num;
  595. #endif
  596. for(i = 1; i <= MAX_CONTACTS; i ++)
  597. {
  598. if(touches == 0)
  599. id_sign[i] = 0;
  600. id_state_flag[i] = 0;
  601. }
  602. for(i= 0;i < (touches > MAX_FINGERS ? MAX_FINGERS : touches);i ++)
  603. {
  604. #ifdef GSL_NOID_VERSION
  605. id = cinfo.id[i];
  606. x = cinfo.x[i];
  607. y = cinfo.y[i];
  608. #else
  609. x = join_bytes( ( ts->touch_data[ts->dd->x_index + 4 * i + 1] & 0xf),
  610. ts->touch_data[ts->dd->x_index + 4 * i]);
  611. y = join_bytes(ts->touch_data[ts->dd->y_index + 4 * i + 1],
  612. ts->touch_data[ts->dd->y_index + 4 * i ]);
  613. id = ts->touch_data[ts->dd->id_index + 4 * i] >> 4;
  614. #endif
  615. if(1 <=id && id <= MAX_CONTACTS)
  616. {
  617. #ifdef FILTER_POINT
  618. filter_point(x, y ,id);
  619. #else
  620. record_point(x, y , id);
  621. #endif
  622. report_data(ts, x_new, y_new, 10, id);
  623. id_state_flag[id] = 1;
  624. }
  625. }
  626. for(i = 1; i <= MAX_CONTACTS; i ++)
  627. {
  628. if( (0 == touches) || ((0 != id_state_old_flag[i]) && (0 == id_state_flag[i])) )
  629. {
  630. if(REPORT_DATA_ANDROID_4_0 > 0)
  631. {
  632. input_report_abs(ts->input, ABS_MT_TOUCH_MAJOR, 0);
  633. input_mt_sync(ts->input);
  634. }
  635. if(is_linux > 0)
  636. {
  637. report_data(ts, x_new, y_new, 0, i);
  638. }
  639. id_sign[i]=0;
  640. }
  641. id_state_old_flag[i] = id_state_flag[i];
  642. }
  643. if(0 == touches)
  644. {
  645. if(REPORT_DATA_ANDROID_4_0 > 0)
  646. input_mt_sync(ts->input);
  647. #ifdef HAVE_TOUCH_KEY
  648. if(key_state_flag)
  649. {
  650. input_report_key(ts->input, key, 0);
  651. input_sync(ts->input);
  652. key_state_flag = 0;
  653. }
  654. #endif
  655. }
  656. input_sync(ts->input);
  657. schedule:
  658. #ifdef GSL_MONITOR
  659. i2c_lock_flag = 0;
  660. i2c_lock_schedule:
  661. #endif
  662. enable_irq(ts->irq);
  663. }
  664. #ifdef GSL_MONITOR
  665. static void gsl_monitor_worker(void)
  666. {
  667. u8 write_buf[4] = {0};
  668. u8 read_buf[4] = {0};
  669. char init_chip_flag = 0;
  670. print_info("----------------gsl_monitor_worker-----------------\n");
  671. if(i2c_lock_flag != 0)
  672. goto queue_monitor_work;
  673. else
  674. i2c_lock_flag = 1;
  675. gsl_ts_read(gsl_client, 0xb0, read_buf, 4);
  676. if(read_buf[3] != 0x5a || read_buf[2] != 0x5a || read_buf[1] != 0x5a || read_buf[0] != 0x5a)
  677. b0_counter ++;
  678. else
  679. b0_counter = 0;
  680. if(b0_counter > 1)
  681. {
  682. printk("======read 0xb0: %x %x %x %x ======\n",read_buf[3], read_buf[2], read_buf[1], read_buf[0]);
  683. init_chip_flag = 1;
  684. b0_counter = 0;
  685. goto queue_monitor_init_chip;
  686. }
  687. gsl_ts_read(gsl_client, 0xb4, read_buf, 4);
  688. int_2nd[3] = int_1st[3];
  689. int_2nd[2] = int_1st[2];
  690. int_2nd[1] = int_1st[1];
  691. int_2nd[0] = int_1st[0];
  692. int_1st[3] = read_buf[3];
  693. int_1st[2] = read_buf[2];
  694. int_1st[1] = read_buf[1];
  695. int_1st[0] = read_buf[0];
  696. if(int_1st[3] == int_2nd[3] && int_1st[2] == int_2nd[2] &&int_1st[1] == int_2nd[1] && int_1st[0] == int_2nd[0])
  697. {
  698. printk("======int_1st: %x %x %x %x , int_2nd: %x %x %x %x ======\n",int_1st[3], int_1st[2], int_1st[1], int_1st[0], int_2nd[3], int_2nd[2],int_2nd[1],int_2nd[0]);
  699. init_chip_flag = 1;
  700. goto queue_monitor_init_chip;
  701. }
  702. #if 1 //version 1.4.0 or later than 1.4.0 read 0xbc for esd checking
  703. gsl_ts_read(gsl_client, 0xbc, read_buf, 4);
  704. if(read_buf[3] != 0 || read_buf[2] != 0 || read_buf[1] != 0 || read_buf[0] != 0)
  705. bc_counter++;
  706. else
  707. bc_counter = 0;
  708. if(bc_counter > 1)
  709. {
  710. printk("======read 0xbc: %x %x %x %x======\n",read_buf[3], read_buf[2], read_buf[1], read_buf[0]);
  711. init_chip_flag = 1;
  712. bc_counter = 0;
  713. }
  714. #else
  715. write_buf[3] = 0x01;
  716. write_buf[2] = 0xfe;
  717. write_buf[1] = 0x10;
  718. write_buf[0] = 0x00;
  719. gsl_ts_write(gsl_client, 0xf0, write_buf, 4);
  720. gsl_ts_read(gsl_client, 0x10, read_buf, 4);
  721. gsl_ts_read(gsl_client, 0x10, read_buf, 4);
  722. if(read_buf[3] < 10 && read_buf[2] < 10 && read_buf[1] < 10 && read_buf[0] < 10)
  723. dac_counter ++;
  724. else
  725. dac_counter = 0;
  726. if(dac_counter > 1)
  727. {
  728. printk("======read DAC1_0: %x %x %x %x ======\n",read_buf[3], read_buf[2], read_buf[1], read_buf[0]);
  729. init_chip_flag = 1;
  730. dac_counter = 0;
  731. }
  732. #endif
  733. queue_monitor_init_chip:
  734. if(init_chip_flag)
  735. init_chip(gsl_client);
  736. i2c_lock_flag = 0;
  737. queue_monitor_work:
  738. queue_delayed_work(gsl_monitor_workqueue, &gsl_monitor_work, 100);
  739. }
  740. #endif
  741. static irqreturn_t gsl_ts_irq(int irq, void *dev_id)
  742. {
  743. struct gsl_ts *ts = dev_id;
  744. //print_info("========gslX680 Interrupt=========\n");
  745. //printk("isr\n");
  746. disable_irq_nosync(ts->irq);
  747. if (!work_pending(&ts->work))
  748. {
  749. queue_work(ts->wq, &ts->work);
  750. }
  751. return IRQ_HANDLED;
  752. }
  753. static int gslX680_ts_init(struct i2c_client *client, struct gsl_ts *ts)
  754. {
  755. struct input_dev *input_device;
  756. int rc = 0;
  757. printk("[GSLX680] Enter %s\n", __func__);
  758. ts->dd = &devices[ts->device_id];
  759. if (ts->device_id == 0) {
  760. ts->dd->data_size = MAX_FINGERS * ts->dd->touch_bytes + ts->dd->touch_meta_data;
  761. ts->dd->touch_index = 0;
  762. }
  763. ts->touch_data = kzalloc(ts->dd->data_size, GFP_KERNEL);
  764. if (!ts->touch_data) {
  765. pr_err("%s: Unable to allocate memory\n", __func__);
  766. return -ENOMEM;
  767. }
  768. input_device = input_allocate_device();
  769. if (!input_device) {
  770. rc = -ENOMEM;
  771. goto error_alloc_dev;
  772. }
  773. ts->input = input_device;
  774. input_device->name = GSLX680_I2C_NAME;
  775. input_device->id.bustype = BUS_I2C;
  776. input_device->dev.parent = &client->dev;
  777. input_set_drvdata(input_device, ts);
  778. set_bit(EV_ABS, input_device->evbit);
  779. // __set_bit(INPUT_PROP_DIRECT, input_device->propbit);
  780. // input_mt_init_slots(input_device, (MAX_CONTACTS + 1));
  781. if(is_linux > 0)
  782. {
  783. set_bit(BTN_TOUCH, input_device->keybit);
  784. set_bit(EV_ABS, input_device->evbit);
  785. set_bit(EV_KEY, input_device->evbit);
  786. input_set_abs_params(input_device, ABS_X, 0, SCREEN_MAX_X, 0, 0);
  787. input_set_abs_params(input_device, ABS_Y, 0, SCREEN_MAX_Y, 0, 0);
  788. }
  789. else
  790. {
  791. input_set_abs_params(input_device,ABS_MT_POSITION_X, 0, SCREEN_MAX_X, 0, 0);
  792. input_set_abs_params(input_device,ABS_MT_POSITION_Y, 0, SCREEN_MAX_Y, 0, 0);
  793. input_set_abs_params(input_device,ABS_MT_TOUCH_MAJOR, 0, PRESS_MAX, 0, 0);
  794. input_set_abs_params(input_device, ABS_MT_PRESSURE, 0, 255, 0, 0);
  795. }
  796. #ifdef HAVE_TOUCH_KEY
  797. input_device->evbit[0] = BIT_MASK(EV_KEY);
  798. //input_device->evbit[0] = BIT_MASK(EV_SYN) | BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
  799. for (i = 0; i < MAX_KEY_NUM; i++)
  800. set_bit(key_array[i], input_device->keybit);
  801. #endif
  802. // client->irq = IRQ_PORT;
  803. ts->irq = client->irq;
  804. ts->wq = create_singlethread_workqueue("kworkqueue_ts");
  805. if (!ts->wq) {
  806. dev_err(&client->dev, "Could not create workqueue\n");
  807. goto error_wq_create;
  808. }
  809. flush_workqueue(ts->wq);
  810. INIT_WORK(&ts->work, gslX680_ts_worker);
  811. rc = input_register_device(input_device);
  812. if (rc)
  813. goto error_unreg_device;
  814. return 0;
  815. error_unreg_device:
  816. destroy_workqueue(ts->wq);
  817. error_wq_create:
  818. input_free_device(input_device);
  819. error_alloc_dev:
  820. kfree(ts->touch_data);
  821. return rc;
  822. }
  823. static void gs_ts_work_resume(struct work_struct *work)
  824. {
  825. struct gsl_ts *ts = container_of(work, struct gsl_ts,resume_work);
  826. init_chip(ts->client);
  827. #ifdef GSL_MONITOR
  828. printk( "gsl_ts_resume () : queue gsl_monitor_work\n");
  829. queue_work(gsl_monitor_workqueue, &gsl_monitor_work.work);
  830. #endif
  831. enable_irq(ts->irq);
  832. }
  833. static int gsl_ts_probe(struct i2c_client *client,
  834. const struct i2c_device_id *id)
  835. {
  836. struct gsl_ts *ts;
  837. int rc;
  838. struct device_node *np = client->dev.of_node;
  839. enum of_gpio_flags rst_flags;
  840. unsigned long irq_flags;
  841. int ret = 0;
  842. //printk("GSLX680 Enter %s\n", __func__);
  843. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  844. dev_err(&client->dev, "I2C functionality not supported\n");
  845. return -ENODEV;
  846. }
  847. ts = kzalloc(sizeof(*ts), GFP_KERNEL);
  848. if (!ts)
  849. return -ENOMEM;
  850. printk("==kzalloc success=\n");
  851. ts->client = client;
  852. i2c_set_clientdata(client, ts);
  853. ts->device_id = 0;//id->driver_data;
  854. ts->irq_pin = of_get_named_gpio_flags(np, "touch-gpio", 0, (enum of_gpio_flags *)&irq_flags);
  855. ts->rst_pin = of_get_named_gpio_flags(np, "reset-gpio", 0, &rst_flags);
  856. if (gpio_is_valid(ts->rst_pin)) {
  857. ts->rst_val = (rst_flags & OF_GPIO_ACTIVE_LOW) ? 0 : 1;
  858. ret = devm_gpio_request_one(&client->dev, ts->rst_pin, (rst_flags & OF_GPIO_ACTIVE_LOW) ? GPIOF_OUT_INIT_HIGH : GPIOF_OUT_INIT_LOW, "goodix reset pin");
  859. if (ret != 0) {
  860. dev_err(&client->dev, "goodix gpio_request error\n");
  861. return -EIO;
  862. }
  863. gpio_direction_output(ts->rst_pin, 0);
  864. gpio_set_value(ts->rst_pin,GPIO_HIGH);
  865. msleep(20);
  866. } else {
  867. dev_info(&client->dev, "reset pin invalid\n");
  868. }
  869. gts = ts;
  870. rc = gslX680_ts_init(client, ts);
  871. if (rc < 0) {
  872. dev_err(&client->dev, "GSLX680 init failed\n");
  873. goto error_mutex_destroy;
  874. }
  875. gsl_client = client;
  876. gslX680_init();
  877. if(init_chip(ts->client) < 0)
  878. return -1;
  879. ts->irq=gpio_to_irq(ts->irq_pin);
  880. if (ts->irq)
  881. {
  882. rc= request_irq(ts->irq, gsl_ts_irq, IRQF_TRIGGER_RISING, client->name, ts);
  883. if (rc != 0) {
  884. printk(KERN_ALERT "Cannot allocate ts INT!ERRNO:%d\n", ret);
  885. goto error_req_irq_fail;
  886. }
  887. }
  888. /* create debug attribute */
  889. //rc = device_create_file(&ts->input->dev, &dev_attr_debug_enable);
  890. #ifdef GSL_MONITOR
  891. printk( "gsl_ts_probe () : queue gsl_monitor_workqueue\n");
  892. INIT_DELAYED_WORK(&gsl_monitor_work, gsl_monitor_worker);
  893. gsl_monitor_workqueue = create_singlethread_workqueue("gsl_monitor_workqueue");
  894. queue_delayed_work(gsl_monitor_workqueue, &gsl_monitor_work, 1000);
  895. #endif
  896. device_enable_async_suspend(&client->dev);
  897. INIT_WORK(&ts->resume_work, gs_ts_work_resume);
  898. printk("[GSLX680] End %s\n", __func__);
  899. return 0;
  900. //exit_set_irq_mode:
  901. error_req_irq_fail:
  902. free_irq(ts->irq, ts);
  903. error_mutex_destroy:
  904. input_free_device(ts->input);
  905. kfree(ts);
  906. return rc;
  907. }
  908. static int gsl_ts_remove(struct i2c_client *client)
  909. {
  910. struct gsl_ts *ts = i2c_get_clientdata(client);
  911. printk("==gsl_ts_remove=\n");
  912. #ifdef GSL_MONITOR
  913. cancel_delayed_work_sync(&gsl_monitor_work);
  914. destroy_workqueue(gsl_monitor_workqueue);
  915. #endif
  916. device_init_wakeup(&client->dev, 0);
  917. cancel_work_sync(&ts->work);
  918. free_irq(ts->irq, ts);
  919. destroy_workqueue(ts->wq);
  920. input_unregister_device(ts->input);
  921. //device_remove_file(&ts->input->dev, &dev_attr_debug_enable);
  922. kfree(ts->touch_data);
  923. kfree(ts);
  924. gpio_free(gts->rst_pin); //hdc 20150129
  925. return 0;
  926. }
  927. static const struct i2c_device_id gsl_ts_id[] = {
  928. {GSLX680_I2C_NAME, 0},
  929. {}
  930. };
  931. MODULE_DEVICE_TABLE(i2c, gsl_ts_id);
  932. static struct of_device_id goodix_ts_dt_ids[] = {
  933. { .compatible = "9tripod,gslx680" },
  934. { }
  935. };
  936. static struct i2c_driver gsl_ts_driver = {
  937. .driver = {
  938. .name = GSLX680_I2C_NAME,
  939. .owner = THIS_MODULE,
  940. .of_match_table = of_match_ptr(goodix_ts_dt_ids),
  941. },
  942. .probe = gsl_ts_probe,
  943. .remove = gsl_ts_remove,
  944. .id_table = gsl_ts_id,
  945. };
  946. static int __init gsl_ts_init(void)
  947. {
  948. int ret;
  949. /*
  950. if(strcasecmp(root_config, "default") == 0)
  951. {
  952. printk("Initial gslx680 Touch Driver\n");
  953. REPORT_DATA_ANDROID_4_0 = 1;
  954. is_linux = 0;
  955. MAX_FINGERS = 10;
  956. MAX_CONTACTS = 10;
  957. }
  958. else*/
  959. {
  960. printk("Initial gslx680 linux Touch Driver\n");
  961. REPORT_DATA_ANDROID_4_0 = 0;
  962. is_linux = 1;
  963. MAX_FINGERS = 1;
  964. MAX_CONTACTS = 1;
  965. }
  966. ret = i2c_add_driver(&gsl_ts_driver);
  967. return ret;
  968. }
  969. static void __exit gsl_ts_exit(void)
  970. {
  971. printk("==gsl_ts_exit==\n");
  972. i2c_del_driver(&gsl_ts_driver);
  973. return;
  974. }
  975. module_init(gsl_ts_init);
  976. module_exit(gsl_ts_exit);
  977. MODULE_LICENSE("GPL");
  978. MODULE_DESCRIPTION("GSLX680 touchscreen controller driver");
  979. MODULE_AUTHOR("Guan Yuwei, guanyuwei@basewin.com");
  980. MODULE_ALIAS("platform:gsl_ts");
  1. #ifndef _GSLX680_9TRIPOD_H_
  2. #define _GSLX680_9TRIPOD_H_
  3. #define SCREEN_MAX_X 1024
  4. #define SCREEN_MAX_Y 600
  5. struct fw_data
  6. {
  7. u32 offset : 8;
  8. u32 : 0;
  9. u32 val;
  10. };
  11. #define GSL_NOID_VERSION
  12. #ifdef GSL_NOID_VERSION
  13. struct gsl_touch_info
  14. {
  15. int x[10];
  16. int y[10];
  17. int id[10];
  18. int finger_num;
  19. };
  20. extern unsigned int gsl_mask_tiaoping(void);
  21. extern unsigned int gsl_version_id(void);
  22. extern void gsl_alg_id_main(struct gsl_touch_info *cinfo);
  23. extern void gsl_DataInit(int *ret);
  24. static unsigned int gsl_config_data_id[] =
  25. {
  26. 0x7b1bd8,
  27. 0x200,
  28. 0,0,
  29. 0,
  30. 0,0,0,
  31. 0,0,0,0,0,0,0,0xd887666b,
  32. 0x900,0x5,0xa000f,0xa000f,0x2580400,0,0x5100,0x8e00,
  33. 0,0x320014,0,0,0,0,0,0,
  34. 0x8,0x4000,0x1000,0x10410005,0x10450008,0,0,0x1010101,
  35. 0x1b6db688,0x190,0xc00014,0xb3001e,0xa60028,0x9a0032,0xc00014,0xb3001e,
  36. 0xa60028,0x9a0032,0xc00014,0xb3001e,0xa60028,0x9a0032,0xc00014,0xb3001e,
  37. 0xa60028,0x9a0032,0x804000,0x90040,0x90001,0,0,0,
  38. 0,0,0,0x14012c,0xa003c,0xa0078,0x400,0x1081,
  39. 0,0,0,0,0,0,0,0,
  40. 0,0,0,0,0,0,0,0,
  41. 0,0,0,0,0,0,0,0,
  42. 0,//key_map
  43. 0x3200384,0x64,0x503e8,//0
  44. 0,0,0,//1
  45. 0,0,0,//2
  46. 0,0,0,//3
  47. 0,0,0,//4
  48. 0,0,0,//5
  49. 0,0,0,//6
  50. 0,0,0,//7
  51. 0,0,0,0,0,0,0,
  52. 0,0,0,0,0,0,0,0,
  53. 0,0,0,0,0,0,0,0,
  54. 0,0,0,0,0,0,0,0,
  55. 0,0,0,0,0,0,0,0,
  56. 0,0,0,0,0,0,0,0,
  57. 0,0,0,0,0,0,0,0,
  58. 0,0,0,0,0,0,0,0,
  59. 0,0,0,0,0,0,0,0,
  60. 0,0,0,0,0,0,0,0,
  61. 0,0,0,0,0,0,0,0,
  62. 0,0,0,0,0,0,0,0,
  63. 0,0,0,0,0,0,0,0,
  64. 0,0,0,0,0,0,0,0,
  65. 0,0,0,0,0,0,0,0,
  66. 0,0,0,0,0,0,0,0,
  67. 0,0,0,0,0,0,0,0,
  68. 0x220,
  69. 0,0,0,0,0,0,0,0,
  70. 0x10203,0x4050607,0x8090a0b,0xc0d0e0f,0x10111213,0x14151617,0x18191a1b,0x1c1d1e1f,
  71. 0x20212223,0x24252627,0x28292a2b,0x2c2d2e2f,0x30313233,0x34353637,0x38393a3b,0x3c3d3e3f,
  72. 0x10203,0x4050607,0x8090a0b,0xc0d0e0f,0x10111213,0x14151617,0x18191a1b,0x1c1d1e1f,
  73. 0x20212223,0x24252627,0x28292a2b,0x2c2d2e2f,0x30313233,0x34353637,0x38393a3b,0x3c3d3e3f,
  74. 0x10203,0x4050607,0x8090a0b,0xc0d0e0f,0x10111213,0x14151617,0x18191a1b,0x1c1d1e1f,
  75. 0x20212223,0x24252627,0x28292a2b,0x2c2d2e2f,0x30313233,0x34353637,0x38393a3b,0x3c3d3e3f,
  76. 0,0,0,0,0,0,0,0,
  77. 0,0,0,0,0,0,0,0,
  78. 0,0,0,0,0,0,0,0,
  79. 0,0,0,0,0,0,0,0,
  80. 0x10203,0x4050607,0x8090a0b,0xc0d0e0f,0x10111213,0x14151617,0x18191a1b,0x1c1d1e1f,
  81. 0x20212223,0x24252627,0x28292a2b,0x2c2d2e2f,0x30313233,0x34353637,0x38393a3b,0x3c3d3e3f,
  82. 0,0,0,0,0,0,0,0,
  83. 0,0,0,0,0,0,0,0,
  84. 0,0,0,0,0,0,0,
  85. 0x3,
  86. 0x101,0,0x100,0,
  87. 0x20,0x10,0x8,0x4,
  88. 0,0,0,0,0,0,0,0,
  89. 0,0,0,0,0,0,0,0,
  90. 0,0,0,0,0,0,0,0,
  91. 0,0,0,0,0,0,0,0,
  92. 0,0,0,0,0,0,0,0,
  93. 0,0,0,0,0,0,0,0,
  94. 0,0,0,0,0,0,0,0,
  95. 0,0,0,0,0,0,0,0,
  96. 0x4,0,0,0,0,0,0,0,
  97. 0x28003c0,0,0,0,0,0,0,0,
  98. 0,0,0,0,0,0,0,0,
  99. 0,0,0,0,0,0,0,0,
  100. 0,0,0,0,0,0,0,0,
  101. 0,0,0,0,0,0,0,0,
  102. 0,0,0,0,0,0,0,
  103. };
  104. #endif
  105. static struct fw_data GSLX680_FW[] = {
  106. {0xf0,0x2},
  107. {0x00,0x00000000},
  108. {0x04,0x00000000},
  109. {0x08,0x00000000},
  110. {0x0c,0x00000000},
  111. {0x10,0x00000000},
  112. {0x14,0x00000000},
  113. {0x18,0x00000000},
  114. {0x1c,0x00000000},
  115. {0x20,0x00000000},
  116. {0x24,0x00000000},
  117. {0x28,0x00000000},
  118. {0x2c,0x00000000},
  119. {0x30,0x00000000},
  120. {0x34,0x00000000},
  121. {0x38,0x00000000},
  122. {0x3c,0x00000000},
  123. {0x40,0x00000000},
  124. {0x44,0x00000000},
  125. {0x48,0x00000000},
  126. {0x4c,0x00000000},
  127. {0x50,0x00000000},
  128. {0x54,0x00000000},
  129. {0x58,0x00000000},
  130. {0x5c,0x00000000},
  131. {0x60,0x00000000},
  132. {0x64,0xf801001a},
  133. {0x68,0x00066414},
  134. {0x6c,0x1001020a},
  135. {0x70,0x00000fff},
  136. {0x74,0x00000000},
  137. {0x78,0x00000000},
  138. {0x7c,0x0a0f0a0f},
  139. {0xf0,0x3},
  140. {0x00,0xb188ac02},
  141. {0x04,0x00000000},
  142. {0x08,0x00000000},
  143. {0x0c,0x00000000},
  144. {0x10,0x00000000},
  145. {0x14,0x00000000},
  146. {0x18,0x00000000},
  147. {0x1c,0x00000000},
  148. {0x20,0x00000000},
  149. {0x24,0x00005100},
  150. {0x28,0x00008e00},
  151. {0x2c,0x00000000},
  152. {0x30,0x00000000},
  153. {0x34,0x00000000},
  154. {0x38,0x00000000},
  155. {0x3c,0x00000000},
  156. {0x40,0x00000000},
  157. {0x44,0x00000000},
  158. {0x48,0x00000000},
  159. {0x4c,0x00000000},
  160. {0x50,0x00000000},
  161. {0x54,0x00000000},
  162. {0x58,0x00000000},
  163. {0x5c,0x00000000},
  164. {0x60,0x00000000},
  165. {0x64,0x1a0ac00a},
  166. {0x68,0x00000002},
  167. {0x6c,0x0000000f},
  168. {0x70,0x00000000},
  169. {0x74,0xffffffff},
  170. {0x78,0xffffffec},
  171. {0x7c,0x00000000},
  172. {0xf0,0x4},
  173. {0x00,0x00000000},
  174. {0x04,0x0001660b},
  175. {0x08,0x00000064},
  176. {0x0c,0x00000000},
  177. {0x10,0xfe0cff06},
  178. {0x14,0x00000000},
  179. {0x18,0x00000000},
  180. {0x1c,0x00000000},
  181. {0x20,0x00000000},
  182. {0x24,0x00000000},
  183. {0x28,0x00000000},
  184. {0x2c,0x00000000},
  185. {0x30,0x00010000},
  186. {0x34,0x00000fff},
  187. {0x38,0x0000000a},
  188. {0x3c,0x00000258},
  189. {0x40,0x00000000},
  190. {0x44,0x04020a00},
  191. {0x48,0x0014012c},
  192. {0x4c,0x9a000000},
  193. {0x50,0x00000000},
  194. {0x54,0x00010203},
  195. {0x58,0x04050607},
  196. {0x5c,0x08090a0b},
  197. {0x60,0x0c0d0e0f},
  198. {0x64,0x10111213},
  199. {0x68,0x14151617},
  200. {0x6c,0x18191a1b},
  201. {0x70,0x1c1d1e1f},
  202. {0x74,0x0014000a},
  203. {0x78,0x80808080},
  204. {0x7c,0xcba981f4},
  205. {0xf0,0x5},
  206. {0x00,0x00000000},
  207. {0x04,0x00000005},
  208. {0x08,0x000000b4},
  209. {0x0c,0x4d4d3346},
  210. {0x10,0x0000000a},
  211. {0x14,0x00000000},
  212. {0x18,0x00000fff},
  213. {0x1c,0x10410005},
  214. {0x20,0x10450008},
  215. {0x24,0x00000000},
  216. {0x28,0x00000000},
  217. {0x2c,0x00000400},
  218. {0x30,0x80808080},
  219. {0x34,0x80808080},
  220. {0x38,0x80808080},
  221. {0x3c,0x80808080},
  222. {0x40,0x80808080},
  223. {0x44,0x80808080},
  224. {0x48,0x80808080},
  225. {0x4c,0x80808000},
  226. {0x50,0xffffffff},
  227. {0x54,0x00000000},
  228. {0x58,0x00000000},
  229. {0x5c,0x00000000},
  230. {0x60,0x00000000},
  231. {0x64,0x00000000},
  232. {0x68,0x00000000},
  233. {0x6c,0x00000000},
  234. {0x70,0x00000000},
  235. {0x74,0x00000220},
  236. {0x78,0x0000000f},
  237. {0x7c,0x0000000a},
  238. {0xf0,0x6},
  239. {0x00,0x0000000f},
  240. {0x04,0x00000000},
  241. {0x08,0x0000000a},
  242. {0x0c,0x04030402},
  243. {0x10,0x00000032},
  244. {0x14,0x1414140a},
  245. {0x18,0x00000000},
  246. {0x1c,0x00000001},
  247. {0x20,0x00002904},
  248. {0x24,0x00000258},
  249. {0x28,0x00000400},
  250. {0x2c,0xf8010015},
  251. {0x30,0xf8010005},
  252. {0x34,0x00000005},
  253. {0x38,0x00000001},
  254. {0x3c,0x00000fff},
  255. {0x40,0x80000000},
  256. {0x44,0x001a001a},
  257. {0x48,0x00000fff},
  258. {0x4c,0x04040402},
  259. {0x50,0x00010000},
  260. {0x54,0x00000190},
  261. {0x58,0x00004000},
  262. {0x5c,0x1b6db688},
  263. {0x60,0x20100804},
  264. {0x64,0x00000000},
  265. {0x68,0x00000000},
  266. {0x6c,0x00000000},
  267. {0x70,0x00000000},
  268. {0x74,0x000000d2},
  269. {0x78,0x000a003c},
  270. {0x7c,0x00000000},
  271. {0xf0,0x7},
  272. {0x00,0x01040007},
  273. {0x04,0x03060209},
  274. {0x08,0x0508040a},
  275. {0x0c,0x07110610},
  276. {0x10,0x09130812},
  277. {0x14,0x00123456},
  278. {0x18,0x00000000},
  279. {0x1c,0x000a0078},
  280. {0x20,0x00001081},
  281. {0x24,0xff080010},
  282. {0x28,0xff080120},
  283. {0x2c,0xff080140},
  284. {0x30,0xff080160},
  285. {0x34,0x000000fa},
  286. {0x38,0x000000d8},
  287. {0x3c,0x000000b7},
  288. {0x40,0x00000000},
  289. {0x44,0x00500064},
  290. {0x48,0x00000900},
  291. {0x4c,0x320f0f03},
  292. {0x50,0x00000000},
  293. {0x54,0x00000004},
  294. {0x58,0x00020000},
  295. {0x5c,0x00090003},
  296. {0x60,0x000d000a},
  297. {0x64,0x000e000e},
  298. {0x68,0x00020000},
  299. {0x6c,0x00060002},
  300. {0x70,0x00030001},
  301. {0x74,0x00000000},
  302. {0x78,0x00012345},
  303. {0x7c,0x006789ab},
  304. {0xf0,0x8},
  305. {0x00,0x026f01f3},
  306. {0x04,0x028f21f4},
  307. {0x08,0x22af21f5},
  308. {0x0c,0x22cf21f6},
  309. {0x10,0x22ef21f7},
  310. {0x14,0x430f41f8},
  311. {0x18,0x432f41f9},
  312. {0x1c,0x734f01fa},
  313. {0x20,0x01f401f5},
  314. {0x24,0x01f601f7},
  315. {0x28,0x01f801f9},
  316. {0x2c,0x01fa0000},
  317. {0x30,0x00000000},
  318. {0x34,0x00000000},
  319. {0x38,0x00000000},
  320. {0x3c,0x00000000},
  321. {0x40,0x01030507},
  322. {0x44,0x09000000},
  323. {0x48,0x00000000},
  324. {0x4c,0x02040608},
  325. {0x50,0x0a000000},
  326. {0x54,0x00000000},
  327. {0x58,0x00040003},
  328. {0x5c,0x00000008},
  329. {0x60,0x00000190},
  330. {0x64,0x00030201},
  331. {0x68,0x000a0804},
  332. {0x6c,0x006600cd},
  333. {0x70,0x000000cd},
  334. {0x74,0x00000074},
  335. {0x78,0x00000000},
  336. {0x7c,0x0000000a},
  337. {0xf0,0x9},
  338. {0x00,0xff080094},
  339. {0x04,0x00070011},
  340. {0x08,0xff080090},
  341. {0x0c,0x00040000},
  342. {0x10,0xff080068},
  343. {0x14,0x00030000},
  344. {0x18,0xff080064},
  345. {0x1c,0x01002582},
  346. {0x20,0xff080060},
  347. {0x24,0x00000000},
  348. {0x28,0xff08004c},
  349. {0x2c,0x00197fff},
  350. {0x30,0xfffffff0},
  351. {0x34,0x00000000},
  352. {0x38,0xfffffff0},
  353. {0x3c,0x00000000},
  354. {0x40,0xfffffff0},
  355. {0x44,0x00000000},
  356. {0x48,0xfffffff0},
  357. {0x4c,0x00000000},
  358. {0x50,0xfffffff0},
  359. {0x54,0x00000000},
  360. {0x58,0xfffffff0},
  361. {0x5c,0x00000000},
  362. {0x60,0xfffffff0},
  363. {0x64,0x00000000},
  364. {0x68,0xfffffff0},
  365. {0x6c,0x00000000},
  366. {0x70,0xfffffff0},
  367. {0x74,0x00000000},
  368. {0x78,0xfffffff0},
  369. {0x7c,0x00000000},
  370. /*
  371. {0xf0,0xe0},
  372. {0x00,0x00000000},
  373. {0x04,0x00000000},
  374. {0x08,0x00000000},
  375. {0x0c,0x00000000},
  376. {0x10,0x00000000},
  377. {0x14,0x00000000},
  378. {0x18,0x00000000},
  379. {0x1c,0x00000000},
  380. {0x20,0x00000000},
  381. {0x24,0x00000000},
  382. {0x28,0x00000000},
  383. {0x2c,0x00000000},
  384. {0x30,0x00000000},
  385. {0x34,0x00000000},
  386. {0x38,0x00000000},
  387. {0x3c,0x00000000},
  388. {0x40,0x006401f4},
  389. {0x44,0x00640064},
  390. {0x48,0x01900064},
  391. {0x4c,0x00500190},
  392. {0x50,0x00500050},
  393. {0x54,0x012c0050},
  394. {0x58,0x012c012c},
  395. {0x5c,0x0032012c},
  396. {0x60,0x00640000},
  397. {0x64,0x00640064},
  398. {0x68,0x00000032},
  399. {0x6c,0x00500000},
  400. {0x70,0x00000000},
  401. {0x74,0x00000000},
  402. {0x78,0x00000000},
  403. {0x7c,0x00000000},
  404. {0xf0,0xe1},
  405. {0x00,0x00000000},
  406. {0x04,0x00000000},
  407. {0x08,0x00000000},
  408. {0x0c,0x00000000},
  409. {0x10,0x00000000},
  410. {0x14,0x00000000},
  411. {0x18,0x00000000},
  412. {0x1c,0x00000000},
  413. {0x20,0x00000000},
  414. {0x24,0x00000000},
  415. {0x28,0x00000000},
  416. {0x2c,0x00000000},
  417. {0x30,0x00000000},
  418. {0x34,0x00000000},
  419. {0x38,0x00000000},
  420. {0x3c,0x00000000},
  421. {0x40,0x00000000},
  422. {0x44,0x00000000},
  423. {0x48,0x00000000},
  424. {0x4c,0x00000000},
  425. {0x50,0x00000002},
  426. {0x54,0x00000000},
  427. {0x58,0x00000000},
  428. {0x5c,0x00000000},
  429. {0x60,0x00000000},
  430. {0x64,0x00000000},
  431. {0x68,0x00000000},
  432. {0x6c,0x00000000},
  433. {0x70,0x00000000},
  434. {0x74,0x00000000},
  435. {0x78,0x00000000},
  436. {0x7c,0x00000000},
  437. {0xf0,0xe2},
  438. {0x00,0x00000000},
  439. {0x04,0x00000000},
  440. {0x08,0x00000000},
  441. {0x0c,0x00000000},
  442. {0x10,0x00000000},
  443. {0x14,0x00000000},
  444. {0x18,0x00000000},
  445. {0x1c,0x00000000},
  446. {0x20,0x00000000},
  447. {0x24,0x00000000},
  448. {0x28,0x00000000},
  449. {0x2c,0x00000000},
  450. {0x30,0x00000000},
  451. {0x34,0x00000000},
  452. {0x38,0x00000000},
  453. {0x3c,0x00000000},
  454. {0x40,0x00000000},
  455. {0x44,0x00000000},
  456. {0x48,0x00000000},
  457. {0x4c,0x00000000},
  458. {0x50,0x00000000},
  459. {0x54,0x00000000},
  460. {0x58,0x00000000},
  461. {0x5c,0x00000000},
  462. {0x60,0x00000000},
  463. {0x64,0x00000000},
  464. {0x68,0x00000000},
  465. {0x6c,0x00000000},
  466. {0x70,0x00000000},
  467. {0x74,0x00000000},
  468. {0x78,0x00000000},
  469. {0x7c,0x00000000},
  470. {0xf0,0xe3},
  471. {0x00,0x00000000},
  472. {0x04,0x00000000},
  473. {0x08,0x00000000},
  474. {0x0c,0x00000000},
  475. {0x10,0x00000000},
  476. {0x14,0x00000000},
  477. {0x18,0x00000000},
  478. {0x1c,0x00000000},
  479. {0x20,0x00000000},
  480. {0x24,0x00000000},
  481. {0x28,0x00000000},
  482. {0x2c,0x00000000},
  483. {0x30,0x00000000},
  484. {0x34,0x00000000},
  485. {0x38,0x00000000},
  486. {0x3c,0x00000000},
  487. {0x40,0x00000000},
  488. {0x44,0x00000000},
  489. {0x48,0x00000000},
  490. {0x4c,0x00000000},
  491. {0x50,0x00000000},
  492. {0x54,0x00000000},
  493. {0x58,0x00000000},
  494. {0x5c,0x00000000},
  495. {0x60,0x00000000},
  496. {0x64,0x00000000},
  497. {0x68,0x00000000},
  498. {0x6c,0x00000000},
  499. {0x70,0x00000000},
  500. {0x74,0x00000000},
  501. {0x78,0x00000000},
  502. {0x7c,0x00000000},
  503. {0xf0,0xe4},
  504. {0x00,0x00000000},
  505. {0x04,0x00000000},
  506. {0x08,0x00000000},
  507. {0x0c,0x00000000},
  508. {0x10,0x00000000},
  509. {0x14,0x00000000},
  510. {0x18,0x00000000},
  511. {0x1c,0x00000000},
  512. {0x20,0x00000000},
  513. {0x24,0x00000000},
  514. {0x28,0x00000000},
  515. {0x2c,0x00000000},
  516. {0x30,0x00000000},
  517. {0x34,0x00000000},
  518. {0x38,0x00000000},
  519. {0x3c,0x00000000},
  520. {0x40,0x00000000},
  521. {0x44,0x00000000},
  522. {0x48,0x00000000},
  523. {0x4c,0x00000000},
  524. {0x50,0x00000000},
  525. {0x54,0x00000000},
  526. {0x58,0x00000000},
  527. {0x5c,0x00000000},
  528. {0x60,0x00000000},
  529. {0x64,0x00000000},
  530. {0x68,0x00000000},
  531. {0x6c,0x00000000},
  532. {0x70,0x00000000},
  533. {0x74,0x00000000},
  534. {0x78,0x00000000},
  535. {0x7c,0x00000000},
  536. {0xf0,0xe5},
  537. {0x00,0x00000000},
  538. {0x04,0x00000000},
  539. {0x08,0x00000000},
  540. {0x0c,0x00000000},
  541. {0x10,0x00000000},
  542. {0x14,0x00000000},
  543. {0x18,0x00000000},
  544. {0x1c,0x00000000},
  545. {0x20,0x00000000},
  546. {0x24,0x00000000},
  547. {0x28,0x00000000},
  548. {0x2c,0x00000000},
  549. {0x30,0x00000000},
  550. {0x34,0x00000000},
  551. {0x38,0x00000000},
  552. {0x3c,0x00000000},
  553. {0x40,0x00000000},
  554. {0x44,0x00000000},
  555. {0x48,0x00000000},
  556. {0x4c,0x00000000},
  557. {0x50,0x00000000},
  558. {0x54,0x00000000},
  559. {0x58,0x00000000},
  560. {0x5c,0x00000000},
  561. {0x60,0x00000000},
  562. {0x64,0x00000000},
  563. {0x68,0x00000000},
  564. {0x6c,0x00000000},
  565. {0x70,0x00000000},
  566. {0x74,0x00000000},
  567. {0x78,0x00000000},
  568. {0x7c,0x00000000},
  569. {0xf0,0xe6},
  570. {0x00,0x00000000},
  571. {0x04,0x00000000},
  572. {0x08,0x00000000},
  573. {0x0c,0x00000000},
  574. {0x10,0x00000000},
  575. {0x14,0x00000000},
  576. {0x18,0x00000000},
  577. {0x1c,0x00000000},
  578. {0x20,0x00000000},
  579. {0x24,0x00000000},
  580. {0x28,0x00000000},
  581. {0x2c,0x00000000},
  582. {0x30,0x00000000},
  583. {0x34,0x00000000},
  584. {0x38,0x00000000},
  585. {0x3c,0x00000000},
  586. {0x40,0x00000000},
  587. {0x44,0x00000000},
  588. {0x48,0x00000000},
  589. {0x4c,0x00000000},
  590. {0x50,0x00000000},
  591. {0x54,0x00000000},
  592. {0x58,0x00000000},
  593. {0x5c,0x00000000},
  594. {0x60,0x00000000},
  595. {0x64,0x00000000},
  596. {0x68,0x00000000},
  597. {0x6c,0x00000000},
  598. {0x70,0x00000000},
  599. {0x74,0x00000000},
  600. {0x78,0x00000000},
  601. {0x7c,0x00000000},
  602. */
  603. {0xf0,0x1e},
  604. {0x00,0x5a5a0f00},
  605. {0x04,0x00002c48},
  606. {0x08,0x00002cb0},
  607. {0x0c,0x00002d40},
  608. {0x10,0x00002e90},
  609. {0x14,0x00002f7c},
  610. {0x18,0x00003144},
  611. {0x1c,0x000032d4},
  612. {0x20,0x00003424},
  613. {0x24,0x000035f0},
  614. {0x28,0x00003760},
  615. {0x2c,0x000038dc},
  616. {0x30,0x00003a50},
  617. {0x34,0x00003b54},
  618. {0x38,0x00003c04},
  619. {0x3c,0x00003f58},
  620. {0x40,0x00003ffc},
  621. {0x44,0x00004104},
  622. {0x48,0x00004304},
  623. {0x4c,0x000043c0},
  624. {0x50,0x000045b8},
  625. {0x54,0x000048a0},
  626. {0x58,0x00004c4c},
  627. {0x5c,0x00004d14},
  628. {0x60,0x00004d78},
  629. {0x64,0x00004ee4},
  630. {0x68,0x00000000},
  631. {0x6c,0x00000000},
  632. {0x70,0x00000000},
  633. {0x74,0x00000000},
  634. {0x78,0x00000000},
  635. {0x7c,0x00000000},
  636. {0xf0,0x1f},
  637. {0x00,0x00000000},
  638. {0x04,0x00000000},
  639. {0x08,0x00000000},
  640. {0x0c,0x00000000},
  641. {0x10,0x00000000},
  642. {0x14,0x00000000},
  643. {0x18,0x00000000},
  644. {0x1c,0x00000000},
  645. {0x20,0x00000000},
  646. {0x24,0x00000000},
  647. {0x28,0x00000000},
  648. {0x2c,0x00000000},
  649. {0x30,0x00000000},
  650. {0x34,0x00000000},
  651. {0x38,0x00000000},
  652. {0x3c,0x00000000},
  653. {0x40,0x0000269c},
  654. {0x44,0x00000000},
  655. {0x48,0x00000000},
  656. {0x4c,0x0000271c},
  657. {0x50,0x000027e4},
  658. {0x54,0x00000000},
  659. {0x58,0x00002894},
  660. {0x5c,0x00000000},
  661. {0x60,0x00000000},
  662. {0x64,0x000029b0},
  663. {0x68,0x00000000},
  664. {0x6c,0x00000000},
  665. {0x70,0x00000000},
  666. {0x74,0x00002a80},
  667. {0x78,0x00004f9c},
  668. {0x7c,0x5a5a0ffc},
  669. {0xf0,0x0},
  670. {0x00,0x01000000},
  671. {0x04,0x01000000},
  672. {0x08,0x01000000},
  673. {0x0c,0x233fc0c0},
  674. {0x10,0xa2146004},
  675. {0x14,0xa4102000},
  676. {0x18,0xe4244000},
  677. {0x1c,0x233fc0c0},
  678. {0x20,0xa2146010},
  679. {0x24,0x2500003f},
  680. {0x28,0xa414a3ff},
  681. {0x2c,0xe4244000},
  682. {0x30,0x01000000},
  683. {0x34,0x821020e0},
  684. {0x38,0x81880001},
  685. {0x3c,0x01000000},
  686. {0x40,0x01000000},
  687. {0x44,0xa410200f},
  688. {0x48,0xe4a00040},
  689. {0x4c,0x01000000},
  690. {0x50,0xa0100000},
  691. {0x54,0xa2100000},
  692. {0x58,0xa4100000},
  693. {0x5c,0xa6100000},
  694. {0x60,0xa8100000},
  695. {0x64,0xaa100000},
  696. {0x68,0xac100000},
  697. {0x6c,0xae100000},
  698. {0x70,0x90100000},
  699. {0x74,0x92100000},
  700. {0x78,0x94100000},
  701. {0x7c,0x96100000},
  702. {0xf0,0x1},
  703. {0x00,0x98100000},
  704. {0x04,0x9a100000},
  705. {0x08,0x9c100000},
  706. {0x0c,0x9e100000},
  707. {0x10,0x84100000},
  708. {0x14,0x01000000},
  709. {0x18,0x01000000},
  710. {0x1c,0x82100000},
  711. {0x20,0x81900001},
  712. {0x24,0x82100000},
  713. {0x28,0x81980001},
  714. {0x2c,0x81800000},
  715. {0x30,0x01000000},
  716. {0x34,0x01000000},
  717. {0x38,0x01000000},
  718. {0x3c,0xbc102cfc},
  719. {0x40,0x9c102cf8},
  720. {0x44,0x01000000},
  721. {0x48,0x01000000},
  722. {0x4c,0x27001040},
  723. {0x50,0xa614e00f},
  724. {0x54,0xe6a00040},
  725. {0x58,0x01000000},
  726. {0x5c,0x40000309},
  727. {0x60,0x01000000},
  728. {0x64,0x01000000},
  729. {0x68,0x10bfffff},
  730. {0x6c,0x01000000},
  731. {0x70,0x03169684},
  732. {0x74,0x82106052},
  733. {0x78,0x03296945},
  734. {0x7c,0x82106288},
  735. {0xf0,0x1a},
  736. {0x00,0x9de3bf98},
  737. {0x04,0x40000010},
  738. {0x08,0x01000000},
  739. {0x0c,0x40000007},
  740. {0x10,0x01000000},
  741. {0x14,0x4000031a},
  742. {0x18,0x01000000},
  743. {0x1c,0x40000015},
  744. {0x20,0x01000000},
  745. {0x24,0x30bffffe},
  746. {0x28,0x82102001},
  747. {0x2c,0x81904000},
  748. {0x30,0x01000000},
  749. {0x34,0x01000000},
  750. {0x38,0x01000000},
  751. {0x3c,0x81c3e008},
  752. {0x40,0x01000000},
  753. {0x44,0x03000008},
  754. {0x48,0x82106342},
  755. {0x4c,0xa3804000},
  756. {0x50,0x03000004},
  757. {0x54,0x82106000},
  758. {0x58,0x81984000},
  759. {0x5c,0x01000000},
  760. {0x60,0x01000000},
  761. {0x64,0x01000000},
  762. {0x68,0x81c3e008},
  763. {0x6c,0x01000000},
  764. {0x70,0x01000000},
  765. {0x74,0x01000000},
  766. {0x78,0x01000000},
  767. {0x7c,0xa7800000},
  768. {0xf0,0x1b},
  769. {0x00,0x01000000},
  770. {0x04,0x01000000},
  771. {0x08,0x01000000},
  772. {0x0c,0x81c3e008},
  773. {0x10,0x01000000},
  774. {0x14,0x80a22000},
  775. {0x18,0x02800006},
  776. {0x1c,0x01000000},
  777. {0x20,0x01000000},
  778. {0x24,0x90823fff},
  779. {0x28,0x12bffffe},
  780. {0x2c,0x01000000},
  781. {0x30,0x81c3e008},
  782. {0x34,0x01000000},
  783. {0x38,0x01000000},
  784. {0x3c,0x05001040},
  785. {0x40,0x8410a00f},
  786. {0x44,0xc4a00040},
  787. {0x48,0x01000000},
  788. {0x4c,0x81c3e008},
  789. {0x50,0x01000000},
  790. {0x54,0x9de3bf18},
  791. {0x58,0xb2067fff},
  792. {0x5c,0x96100018},
  793. {0x60,0xf227bf7c},
  794. {0x64,0xc027bf78},
  795. {0x68,0x98102000},
  796. {0x6c,0xb007bff8},
  797. {0x70,0xd4063f80},
  798. {0x74,0xda063f84},
  799. {0x78,0xb810000a},
  800. {0x7c,0x98033fff},
  801. {0xf0,0x1c},
  802. {0x00,0xb0063ff8},
  803. {0x04,0x80a2800d},
  804. {0x08,0x16800031},
  805. {0x0c,0xb610000d},
  806. {0x10,0xbb2aa002},
  807. {0x14,0x832b6002},
  808. {0x18,0xb207400b},
  809. {0x1c,0xb400400b},
  810. {0x20,0xde02c01d},
  811. {0x24,0x80a7001b},
  812. {0x28,0x1680001c},
  813. {0x2c,0x01000000},
  814. {0x30,0xc2068000},
  815. {0x34,0x80a0400f},
  816. {0x38,0x04800005},
  817. {0x3c,0x80a7001b},
  818. {0x40,0xb606ffff},
  819. {0x44,0x10bffff8},
  820. {0x48,0xb406bffc},
  821. {0x4c,0x16800013},
  822. {0x50,0x80a7001b},
  823. {0x54,0xc2068000},
  824. {0x58,0xc2264000},
  825. {0x5c,0xb8072001},
  826. {0x60,0x80a7001b},
  827. {0x64,0x1680000d},
  828. {0x68,0xb2066004},
  829. {0x6c,0xc2064000},
  830. {0x70,0x80a0400f},
  831. {0x74,0x26bffffb},
  832. {0x78,0xb8072001},
  833. {0x7c,0x80a7001b},
  834. {0xf0,0x1d},
  835. {0x00,0x16800006},
  836. {0x04,0x01000000},
  837. {0x08,0xc2268000},
  838. {0x0c,0xb606ffff},
  839. {0x10,0xb406bffc},
  840. {0x14,0x80a7001b},
  841. {0x18,0x12bfffe4},
  842. {0x1c,0x80a7001b},
  843. {0x20,0xb0062008},
  844. {0x24,0x82073fff},
  845. {0x28,0xc2263f84},
  846. {0x2c,0xd4263f80},
  847. {0x30,0x832f2002},
  848. {0x34,0xb0062008},
  849. {0x38,0xde22c001},
  850. {0x3c,0xba072001},
  851. {0x40,0xfa263f80},
  852. {0x44,0xda263f84},
  853. {0x48,0x98032002},
  854. {0x4c,0x80a33fff},
  855. {0x50,0x34bfffc9},
  856. {0x54,0xd4063f80},
  857. {0x58,0x81c7e008},
  858. {0x5c,0x81e80000},
  859. {0x60,0x00000000},
  860. {0x64,0x00000000},
  861. {0x68,0x00000000},
  862. {0x6c,0x00000000},
  863. {0x70,0x00000000},
  864. {0x74,0x00000000},
  865. {0x78,0x00000000},
  866. {0x7c,0x00000000},
  867. {0xf0,0x20},
  868. {0x00,0x83580000},
  869. {0x04,0x82086ff0},
  870. {0x08,0x83306004},
  871. {0x0c,0x80a06005},
  872. {0x10,0x02800027},
  873. {0x14,0x01000000},
  874. {0x18,0x80a06006},
  875. {0x1c,0x0280003c},
  876. {0x20,0x01000000},
  877. {0x24,0x80a06015},
  878. {0x28,0x02800054},
  879. {0x2c,0x01000000},
  880. {0x30,0x80a0602a},
  881. {0x34,0x02800090},
  882. {0x38,0x01000000},
  883. {0x3c,0x80a06018},
  884. {0x40,0x02800085},
  885. {0x44,0x01000000},
  886. {0x48,0x073fc180},
  887. {0x4c,0x8610e03c},
  888. {0x50,0x05169680},
  889. {0x54,0x84004002},
  890. {0x58,0xc420c000},
  891. {0x5c,0x073fc000},
  892. {0x60,0x8610e020},
  893. {0x64,0x84102001},
  894. {0x68,0xc420c000},
  895. {0x6c,0x0500000c},
  896. {0x70,0x01000000},
  897. {0x74,0x01000000},
  898. {0x78,0x8480bfff},
  899. {0x7c,0x12bffffe},
  900. {0xf0,0x21},
  901. {0x00,0x01000000},
  902. {0x04,0x01000000},
  903. {0x08,0x073fc000},
  904. {0x0c,0x8610e020},
  905. {0x10,0x84102000},
  906. {0x14,0xc420c000},
  907. {0x18,0x01000000},
  908. {0x1c,0x01000000},
  909. {0x20,0x81c44000},
  910. {0x24,0x81cc8000},
  911. {0x28,0x01000000},
  912. {0x2c,0xa7500000},
  913. {0x30,0xa92ce002},
  914. {0x34,0xa734e001},
  915. {0x38,0xa614c014},
  916. {0x3c,0xa60ce007},
  917. {0x40,0x81900000},
  918. {0x44,0x01000000},
  919. {0x48,0x01000000},
  920. {0x4c,0x81e00000},
  921. {0x50,0xe03ba000},
  922. {0x54,0xe43ba008},
  923. {0x58,0xe83ba010},
  924. {0x5c,0xec3ba018},
  925. {0x60,0xf03ba020},
  926. {0x64,0xf43ba028},
  927. {0x68,0xf83ba030},
  928. {0x6c,0xfc3ba038},
  929. {0x70,0x81e80000},
  930. {0x74,0x8194c000},
  931. {0x78,0x01000000},
  932. {0x7c,0x01000000},
  933. {0xf0,0x22},
  934. {0x00,0x81c44000},
  935. {0x04,0x81cc8000},
  936. {0x08,0x01000000},
  937. {0x0c,0xa7500000},
  938. {0x10,0xa934e002},
  939. {0x14,0xa72ce001},
  940. {0x18,0xa614c014},
  941. {0x1c,0xa60ce007},
  942. {0x20,0x81900000},
  943. {0x24,0x01000000},
  944. {0x28,0x01000000},
  945. {0x2c,0x81e80000},
  946. {0x30,0x81e80000},
  947. {0x34,0xe01ba000},
  948. {0x38,0xe41ba008},
  949. {0x3c,0xe81ba010},
  950. {0x40,0xec1ba018},
  951. {0x44,0xf01ba020},
  952. {0x48,0xf41ba028},
  953. {0x4c,0xf81ba030},
  954. {0x50,0xfc1ba038},
  955. {0x54,0x81e00000},
  956. {0x58,0x81e00000},
  957. {0x5c,0x8194c000},
  958. {0x60,0x01000000},
  959. {0x64,0x01000000},
  960. {0x68,0x81c44000},
  961. {0x6c,0x81cc8000},
  962. {0x70,0x01000000},
  963. {0x74,0x01000000},
  964. {0x78,0x82102010},
  965. {0x7c,0x273fc0c0},
  966. {0xf0,0x23},
  967. {0x00,0xa614e010},
  968. {0x04,0xc224c000},
  969. {0x08,0x01000000},
  970. {0x0c,0x033fc0c0},
  971. {0x10,0x82106004},
  972. {0x14,0xa6102000},
  973. {0x18,0xe6204000},
  974. {0x1c,0x01000000},
  975. {0x20,0x01000000},
  976. {0x24,0x01000000},
  977. {0x28,0xa6102020},
  978. {0x2c,0x83480000},
  979. {0x30,0x82104013},
  980. {0x34,0x81884000},
  981. {0x38,0x01000000},
  982. {0x3c,0x400004b9},
  983. {0x40,0x01000000},
  984. {0x44,0x01000000},
  985. {0x48,0x01000000},
  986. {0x4c,0xa7500000},
  987. {0x50,0xa934e002},
  988. {0x54,0xa72ce001},
  989. {0x58,0xa614c014},
  990. {0x5c,0xa60ce007},
  991. {0x60,0x81900000},
  992. {0x64,0x01000000},
  993. {0x68,0x81e80000},
  994. {0x6c,0xe01ba000},
  995. {0x70,0xe41ba008},
  996. {0x74,0xe81ba010},
  997. {0x78,0xec1ba018},
  998. {0x7c,0xf01ba020},
  999. {0xf0,0x24},
  1000. {0x00,0xf41ba028},
  1001. {0x04,0xf81ba030},
  1002. {0x08,0xfc1ba038},
  1003. {0x0c,0x81e00000},
  1004. {0x10,0x8194c000},
  1005. {0x14,0x01000000},
  1006. {0x18,0xa6102020},
  1007. {0x1c,0x83480000},
  1008. {0x20,0x82284013},
  1009. {0x24,0x81884000},
  1010. {0x28,0x01000000},
  1011. {0x2c,0x033fc0c0},
  1012. {0x30,0x82106004},
  1013. {0x34,0xa6103fff},
  1014. {0x38,0xe6204000},
  1015. {0x3c,0x01000000},
  1016. {0x40,0x01000000},
  1017. {0x44,0x01000000},
  1018. {0x48,0x81c44000},
  1019. {0x4c,0x81cc8000},
  1020. {0x50,0x01000000},
  1021. {0x54,0x82102080},
  1022. {0x58,0x273fc0c0},
  1023. {0x5c,0xa614e010},
  1024. {0x60,0xc224c000},
  1025. {0x64,0x01000000},
  1026. {0x68,0x81c44000},
  1027. {0x6c,0x81cc8000},
  1028. {0x70,0x01000000},
  1029. {0x74,0x81c48000},
  1030. {0x78,0x81cca004},
  1031. {0x7c,0x01000000},
  1032. {0xf0,0x25},
  1033. {0x00,0x1b3fc140},
  1034. {0x04,0x82136048},
  1035. {0x08,0xc2104000},
  1036. {0x0c,0x82006003},
  1037. {0x10,0x82086003},
  1038. {0x14,0x83286002},
  1039. {0x18,0x9a136080},
  1040. {0x1c,0x81c3e008},
  1041. {0x20,0xd000400d},
  1042. {0x24,0x94102000},
  1043. {0x28,0x96102000},
  1044. {0x2c,0x832ae002},
  1045. {0x30,0xd20063a4},
  1046. {0x34,0x98102000},
  1047. {0x38,0x832b2002},
  1048. {0x3c,0x9b2aa002},
  1049. {0x40,0xda02000d},
  1050. {0x44,0x98032001},
  1051. {0x48,0xda224001},
  1052. {0x4c,0x80a32005},
  1053. {0x50,0x04bffffa},
  1054. {0x54,0x9402a001},
  1055. {0x58,0x9602e001},
  1056. {0x5c,0x80a2e003},
  1057. {0x60,0x04bffff4},
  1058. {0x64,0x832ae002},
  1059. {0x68,0x81c3e008},
  1060. {0x6c,0x01000000},
  1061. {0x70,0x82020008},
  1062. {0x74,0x82004008},
  1063. {0x78,0x9b326002},
  1064. {0x7c,0x82004001},
  1065. {0xf0,0x26},
  1066. {0x00,0x8200400d},
  1067. {0x04,0x83286002},
  1068. {0x08,0x920a6003},
  1069. {0x0c,0x932a6003},
  1070. {0x10,0xd00065b0},
  1071. {0x14,0x91320009},
  1072. {0x18,0x81c3e008},
  1073. {0x1c,0x900a20ff},
  1074. {0x20,0x9a020008},
  1075. {0x24,0x9a034008},
  1076. {0x28,0x97326002},
  1077. {0x2c,0x9a03400d},
  1078. {0x30,0x9a03400b},
  1079. {0x34,0x920a6003},
  1080. {0x38,0x9b2b6002},
  1081. {0x3c,0x932a6003},
  1082. {0x40,0x821020ff},
  1083. {0x44,0xd80365b0},
  1084. {0x48,0x83284009},
  1085. {0x4c,0x822b0001},
  1086. {0x50,0x952a8009},
  1087. {0x54,0x8210400a},
  1088. {0x58,0xc22365b0},
  1089. {0x5c,0x912a2002},
  1090. {0x60,0xda0223a4},
  1091. {0x64,0x972ae002},
  1092. {0x68,0x81c3e008},
  1093. {0x6c,0xc223400b},
  1094. {0x70,0x82102005},
  1095. {0x74,0x1b3fc200},
  1096. {0x78,0x82204008},
  1097. {0x7c,0x9a136008},
  1098. {0xf0,0x27},
  1099. {0x00,0x83286002},
  1100. {0x04,0xd0034000},
  1101. {0x08,0x91320001},
  1102. {0x0c,0x81c3e008},
  1103. {0x10,0x900a200f},
  1104. {0x14,0x9de3bf58},
  1105. {0x18,0xa12e2002},
  1106. {0x1c,0xda1423da},
  1107. {0x20,0xd61423d8},
  1108. {0x24,0xc200247c},
  1109. {0x28,0xb022c00d},
  1110. {0x2c,0x825b4001},
  1111. {0x30,0xb21e6001},
  1112. {0x34,0x92862001},
  1113. {0x38,0x0280000c},
  1114. {0x3c,0x9a004019},
  1115. {0x40,0xb0100009},
  1116. {0x44,0x9807bfb8},
  1117. {0x48,0x8203400d},
  1118. {0x4c,0xc2168001},
  1119. {0x50,0xc2230000},
  1120. {0x54,0xc200247c},
  1121. {0x58,0x9a034001},
  1122. {0x5c,0xb0863fff},
  1123. {0x60,0x12bffffa},
  1124. {0x64,0x98032004},
  1125. {0x68,0x7ffffe7b},
  1126. {0x6c,0x9007bfb8},
  1127. {0x70,0xda1423ea},
  1128. {0x74,0xd61423e8},
  1129. {0x78,0x80a3400b},
  1130. {0x7c,0x92102000},
  1131. {0xf0,0x28},
  1132. {0x00,0x1880000b},
  1133. {0x04,0xb010000d},
  1134. {0x08,0x832b6002},
  1135. {0x0c,0x8200401e},
  1136. {0x10,0x98007fb8},
  1137. {0x14,0xc2030000},
  1138. {0x18,0xb0062001},
  1139. {0x1c,0x92024001},
  1140. {0x20,0x80a6000b},
  1141. {0x24,0x08bffffc},
  1142. {0x28,0x98032004},
  1143. {0x2c,0xb022c00d},
  1144. {0x30,0xb0062001},
  1145. {0x34,0x81800000},
  1146. {0x38,0x01000000},
  1147. {0x3c,0x01000000},
  1148. {0x40,0x01000000},
  1149. {0x44,0xb0724018},
  1150. {0x48,0x81c7e008},
  1151. {0x4c,0x81e80000},
  1152. {0x50,0x033fc200},
  1153. {0x54,0x961060a0},
  1154. {0x58,0x98102000},
  1155. {0x5c,0x832b2002},
  1156. {0x60,0x9a03000c},
  1157. {0x64,0xda136400},
  1158. {0x68,0x98032001},
  1159. {0x6c,0x80a3200f},
  1160. {0x70,0x04bffffb},
  1161. {0x74,0xda20400b},
  1162. {0x78,0x81c3e008},
  1163. {0x7c,0x01000000},
  1164. {0xf0,0x29},
  1165. {0x00,0x9de3bf98},
  1166. {0x04,0xc200247c},
  1167. {0x08,0x83306001},
  1168. {0x0c,0x80a60001},
  1169. {0x10,0x1a800006},
  1170. {0x14,0x90100018},
  1171. {0x18,0x7fffffb6},
  1172. {0x1c,0x01000000},
  1173. {0x20,0x10800006},
  1174. {0x24,0xb0020008},
  1175. {0x28,0x7fffffb2},
  1176. {0x2c,0x90260001},
  1177. {0x30,0x90020008},
  1178. {0x34,0xb0022001},
  1179. {0x38,0x81c7e008},
  1180. {0x3c,0x81e80000},
  1181. {0x40,0x9de3bf98},
  1182. {0x44,0xa8102000},
  1183. {0x48,0xc20023d4},
  1184. {0x4c,0x80a50001},
  1185. {0x50,0x1a800057},
  1186. {0x54,0xe2002348},
  1187. {0x58,0xa4102000},
  1188. {0x5c,0xc200247c},
  1189. {0x60,0x80a48001},
  1190. {0x64,0x3a80004e},
  1191. {0x68,0xa8052001},
  1192. {0x6c,0x7fffffe5},
  1193. {0x70,0x90100012},
  1194. {0x74,0xaa100008},
  1195. {0x78,0x90100014},
  1196. {0x7c,0x7fffff7d},
  1197. {0xf0,0x2a},
  1198. {0x00,0x92100015},
  1199. {0x04,0x80a62000},
  1200. {0x08,0x12800004},
  1201. {0x0c,0xa0100008},
  1202. {0x10,0x10800016},
  1203. {0x14,0xa0102000},
  1204. {0x18,0x80a62009},
  1205. {0x1c,0x18800011},
  1206. {0x20,0x80a62007},
  1207. {0x24,0x7fffff57},
  1208. {0x28,0x01000000},
  1209. {0x2c,0x94100008},
  1210. {0x30,0x90100014},
  1211. {0x34,0x7fffff98},
  1212. {0x38,0x92100012},
  1213. {0x3c,0x80a20011},
  1214. {0x40,0x04800007},
  1215. {0x44,0xa6100008},
  1216. {0x48,0x9a102008},
  1217. {0x4c,0x9a234018},
  1218. {0x50,0x82102001},
  1219. {0x54,0x8328400d},
  1220. {0x58,0xa02c0001},
  1221. {0x5c,0x80a62007},
  1222. {0x60,0x18800008},
  1223. {0x64,0x80a62008},
  1224. {0x68,0x9a102007},
  1225. {0x6c,0x9a234018},
  1226. {0x70,0x82102001},
  1227. {0x74,0x8328400d},
  1228. {0x78,0x10800023},
  1229. {0x7c,0xa0140001},
  1230. {0xf0,0x2b},
  1231. {0x00,0x1280000a},
  1232. {0x04,0x821e2009},
  1233. {0x08,0x80a420fe},
  1234. {0x0c,0x24800002},
  1235. {0x10,0xa0042001},
  1236. {0x14,0x03000019},
  1237. {0x18,0x9b2ca002},
  1238. {0x1c,0x82106080},
  1239. {0x20,0x10800019},
  1240. {0x24,0xe6234001},
  1241. {0x28,0x80a00001},
  1242. {0x2c,0x9a603fff},
  1243. {0x30,0x80a420fe},
  1244. {0x34,0x04800003},
  1245. {0x38,0x82102001},
  1246. {0x3c,0x82102000},
  1247. {0x40,0x808b4001},
  1248. {0x44,0x02800011},
  1249. {0x48,0x92100015},
  1250. {0x4c,0x03000019},
  1251. {0x50,0x9b2ca002},
  1252. {0x54,0x82106080},
  1253. {0x58,0xc2034001},
  1254. {0x5c,0x80a04011},
  1255. {0x60,0x18800003},
  1256. {0x64,0x9a204011},
  1257. {0x68,0x9a244001},
  1258. {0x6c,0x80a4c011},
  1259. {0x70,0x14800003},
  1260. {0x74,0x8224c011},
  1261. {0x78,0x82244013},
  1262. {0x7c,0x80a34001},
  1263. {0xf0,0x2c},
  1264. {0x00,0xa0642000},
  1265. {0x04,0x92100015},
  1266. {0x08,0x94100010},
  1267. {0x0c,0x7fffff45},
  1268. {0x10,0x90100014},
  1269. {0x14,0x10bfffb2},
  1270. {0x18,0xa404a001},
  1271. {0x1c,0xc20023d4},
  1272. {0x20,0x80a50001},
  1273. {0x24,0x0abfffae},
  1274. {0x28,0xa4102000},
  1275. {0x2c,0x81c7e008},
  1276. {0x30,0x81e80000},
  1277. {0x34,0x98102000},
  1278. {0x38,0x9610201e},
  1279. {0x3c,0x80a22000},
  1280. {0x40,0x12800003},
  1281. {0x44,0x8210000c},
  1282. {0x48,0x8222c00c},
  1283. {0x4c,0x83286002},
  1284. {0x50,0xda006480},
  1285. {0x54,0x80a37ff0},
  1286. {0x58,0x02800006},
  1287. {0x5c,0x98032002},
  1288. {0x60,0xc2006484},
  1289. {0x64,0x80a3201f},
  1290. {0x68,0x04bffff5},
  1291. {0x6c,0xc2234000},
  1292. {0x70,0x81c3e008},
  1293. {0x74,0x01000000},
  1294. {0x78,0x9de3bf98},
  1295. {0x7c,0xd8002660},
  1296. {0xf0,0x2d},
  1297. {0x00,0xc200254c},
  1298. {0x04,0x98130001},
  1299. {0x08,0xda002508},
  1300. {0x0c,0x033fc000},
  1301. {0x10,0x9a0b4001},
  1302. {0x14,0x153fc180},
  1303. {0x18,0x03202020},
  1304. {0x1c,0x82106080},
  1305. {0x20,0x9612a038},
  1306. {0x24,0xc222c000},
  1307. {0x28,0x03168000},
  1308. {0x2c,0xd8202660},
  1309. {0x30,0x80a34001},
  1310. {0x34,0xc0228000},
  1311. {0x38,0xa6102000},
  1312. {0x3c,0x1280000b},
  1313. {0x40,0xa8102000},
  1314. {0x44,0x0300003f},
  1315. {0x48,0xda002548},
  1316. {0x4c,0x821063ff},
  1317. {0x50,0x9a0b4001},
  1318. {0x54,0xd8002508},
  1319. {0x58,0x033fffc0},
  1320. {0x5c,0x980b0001},
  1321. {0x60,0x9a13400c},
  1322. {0x64,0xda202548},
  1323. {0x68,0x80a62000},
  1324. {0x6c,0x16800027},
  1325. {0x70,0x1b296956},
  1326. {0x74,0x1b3fc040},
  1327. {0x78,0xc2002548},
  1328. {0x7c,0x8208400d},
  1329. {0xf0,0x2e},
  1330. {0x00,0x1b168040},
  1331. {0x04,0x80a0400d},
  1332. {0x08,0x22800002},
  1333. {0x0c,0xa6102001},
  1334. {0x10,0xda002664},
  1335. {0x14,0xc20021dc},
  1336. {0x18,0x80a34001},
  1337. {0x1c,0x1a80001b},
  1338. {0x20,0x1b296956},
  1339. {0x24,0x031696a9},
  1340. {0x28,0xda00250c},
  1341. {0x2c,0x821061a5},
  1342. {0x30,0x80a34001},
  1343. {0x34,0x02800006},
  1344. {0x38,0x03296956},
  1345. {0x3c,0x8210625a},
  1346. {0x40,0x80a34001},
  1347. {0x44,0x12800011},
  1348. {0x48,0x1b296956},
  1349. {0x4c,0x11000018},
  1350. {0x50,0x92122340},
  1351. {0x54,0x4000017d},
  1352. {0x58,0x90122200},
  1353. {0x5c,0x03000019},
  1354. {0x60,0x96106240},
  1355. {0x64,0xa8102001},
  1356. {0x68,0x98102000},
  1357. {0x6c,0x9b2b2002},
  1358. {0x70,0x98032001},
  1359. {0x74,0xc20365b0},
  1360. {0x78,0x80a3201b},
  1361. {0x7c,0x08bffffc},
  1362. {0xf0,0x2f},
  1363. {0x00,0xc223400b},
  1364. {0x04,0x1b296956},
  1365. {0x08,0x80a00013},
  1366. {0x0c,0x82380018},
  1367. {0x10,0xa413625a},
  1368. {0x14,0x90402000},
  1369. {0x18,0x8330601f},
  1370. {0x1c,0x1b1696a9},
  1371. {0x20,0xa21361a5},
  1372. {0x24,0x9e104008},
  1373. {0x28,0xd200254c},
  1374. {0x2c,0xe0002548},
  1375. {0x30,0x98102500},
  1376. {0x34,0xc200250c},
  1377. {0x38,0x96033a50},
  1378. {0x3c,0x941b250c},
  1379. {0x40,0x80a04012},
  1380. {0x44,0x02800007},
  1381. {0x48,0x9a184011},
  1382. {0x4c,0x80a0000d},
  1383. {0x50,0x82603fff},
  1384. {0x54,0x80904008},
  1385. {0x58,0x0280000a},
  1386. {0x5c,0x80a3e000},
  1387. {0x60,0x80a2e0f0},
  1388. {0x64,0x9a402000},
  1389. {0x68,0x80a0000a},
  1390. {0x6c,0x82603fff},
  1391. {0x70,0x80934001},
  1392. {0x74,0x3280000a},
  1393. {0x78,0x98032004},
  1394. {0x7c,0x80a3e000},
  1395. {0xf0,0x30},
  1396. {0x00,0x02800005},
  1397. {0x04,0x82033960},
  1398. {0x08,0x80a0603f},
  1399. {0x0c,0x28800004},
  1400. {0x10,0x98032004},
  1401. {0x14,0xc0230000},
  1402. {0x18,0x98032004},
  1403. {0x1c,0x80a32877},
  1404. {0x20,0x28bfffe6},
  1405. {0x24,0xc200250c},
  1406. {0x28,0x80a62000},
  1407. {0x2c,0x06800006},
  1408. {0x30,0x0300003f},
  1409. {0x34,0x821063ff},
  1410. {0x38,0x820a4001},
  1411. {0x3c,0x10800005},
  1412. {0x40,0xc220254c},
  1413. {0x44,0xc21022d4},
  1414. {0x48,0x83286010},
  1415. {0x4c,0xc22026a0},
  1416. {0x50,0xc20023c8},
  1417. {0x54,0xda002548},
  1418. {0x58,0x83306012},
  1419. {0x5c,0x82086200},
  1420. {0x60,0x9a0b7dff},
  1421. {0x64,0x9a134001},
  1422. {0x68,0xd800254c},
  1423. {0x6c,0xd4002334},
  1424. {0x70,0x033fc200},
  1425. {0x74,0x9402a001},
  1426. {0x78,0x92050014},
  1427. {0x7c,0x980b3ffd},
  1428. {0xf0,0x31},
  1429. {0x00,0x82106054},
  1430. {0x04,0xc2004000},
  1431. {0x08,0x98130009},
  1432. {0x0c,0x9732a001},
  1433. {0x10,0x9602800b},
  1434. {0x14,0xd820254c},
  1435. {0x18,0x80a06114},
  1436. {0x1c,0xd620258c},
  1437. {0x20,0xda202548},
  1438. {0x24,0xd4202554},
  1439. {0x28,0xd4202588},
  1440. {0x2c,0xc2002344},
  1441. {0x30,0x1280000a},
  1442. {0x34,0x99342018},
  1443. {0x38,0x820860ff},
  1444. {0x3c,0x8258605a},
  1445. {0x40,0x82006040},
  1446. {0x44,0x83306007},
  1447. {0x48,0x9b286010},
  1448. {0x4c,0x9a034001},
  1449. {0x50,0x10800003},
  1450. {0x54,0xda202570},
  1451. {0x58,0xc2202570},
  1452. {0x5c,0x173fc200},
  1453. {0x60,0xda002570},
  1454. {0x64,0x8212e030},
  1455. {0x68,0xda204000},
  1456. {0x6c,0x80a3205a},
  1457. {0x70,0x1280000a},
  1458. {0x74,0xda20257c},
  1459. {0x78,0x1b00003f},
  1460. {0x7c,0xc2002548},
  1461. {0xf0,0x32},
  1462. {0x00,0x9a1363ff},
  1463. {0x04,0x8208400d},
  1464. {0x08,0x1b3fffc0},
  1465. {0x0c,0x9a0c000d},
  1466. {0x10,0x8210400d},
  1467. {0x14,0xc2202548},
  1468. {0x18,0x80a4e001},
  1469. {0x1c,0x32800007},
  1470. {0x20,0x03296956},
  1471. {0x24,0x8212e074},
  1472. {0x28,0xda002330},
  1473. {0x2c,0xda204000},
  1474. {0x30,0x1080000b},
  1475. {0x34,0x82102029},
  1476. {0x38,0xda00250c},
  1477. {0x3c,0x8210625a},
  1478. {0x40,0x80a34001},
  1479. {0x44,0x1280000b},
  1480. {0x48,0x01000000},
  1481. {0x4c,0xc200254c},
  1482. {0x50,0x80886002},
  1483. {0x54,0x12800007},
  1484. {0x58,0x82102015},
  1485. {0x5c,0xc2202500},
  1486. {0x60,0x7ffffe51},
  1487. {0x64,0x901025b0},
  1488. {0x68,0x7ffffeba},
  1489. {0x6c,0x81e80000},
  1490. {0x70,0x01000000},
  1491. {0x74,0x81c7e008},
  1492. {0x78,0x81e80000},
  1493. {0x7c,0x9de3bf98},
  1494. {0xf0,0x33},
  1495. {0x00,0x400002ac},
  1496. {0x04,0x90102000},
  1497. {0x08,0x133fc200},
  1498. {0x0c,0xe80021fc},
  1499. {0x10,0xc2002298},
  1500. {0x14,0x98126070},
  1501. {0x18,0xc2230000},
  1502. {0x1c,0x033fc000},
  1503. {0x20,0xd8002338},
  1504. {0x24,0x82106030},
  1505. {0x28,0xd8204000},
  1506. {0x2c,0xc200232c},
  1507. {0x30,0x90126074},
  1508. {0x34,0xc2220000},
  1509. {0x38,0x1b3fc140},
  1510. {0x3c,0x0300003f},
  1511. {0x40,0xa013608c},
  1512. {0x44,0x9e136058},
  1513. {0x48,0xa213605c},
  1514. {0x4c,0xa4136080},
  1515. {0x50,0xa6136084},
  1516. {0x54,0x821063ff},
  1517. {0x58,0x15000017},
  1518. {0x5c,0xc223c000},
  1519. {0x60,0x9412a380},
  1520. {0x64,0x17000018},
  1521. {0x68,0x9a136088},
  1522. {0x6c,0xd4234000},
  1523. {0x70,0x9612e0c0},
  1524. {0x74,0x03200040},
  1525. {0x78,0xd6240000},
  1526. {0x7c,0x82106101},
  1527. {0xf0,0x34},
  1528. {0x00,0xc2224000},
  1529. {0x04,0x033fc0c0},
  1530. {0x08,0x82106004},
  1531. {0x0c,0xc0204000},
  1532. {0x10,0xc0244000},
  1533. {0x14,0xd4248000},
  1534. {0x18,0xd624c000},
  1535. {0x1c,0x80a52000},
  1536. {0x20,0xc2002374},
  1537. {0x24,0xd800247c},
  1538. {0x28,0x02800006},
  1539. {0x2c,0xd60022f8},
  1540. {0x30,0x82584014},
  1541. {0x34,0x82006800},
  1542. {0x38,0x10800003},
  1543. {0x3c,0xa130600c},
  1544. {0x40,0xa0100001},
  1545. {0x44,0x253fc140},
  1546. {0x48,0x9a14a040},
  1547. {0x4c,0xd0034000},
  1548. {0x50,0x99332001},
  1549. {0x54,0x825b000b},
  1550. {0x58,0x900a3800},
  1551. {0x5c,0x90120001},
  1552. {0x60,0xd0234000},
  1553. {0x64,0x8214a004},
  1554. {0x68,0xd0004000},
  1555. {0x6c,0x900a3fe0},
  1556. {0x70,0x9012000c},
  1557. {0x74,0x233fc200},
  1558. {0x78,0xd0204000},
  1559. {0x7c,0x9a146080},
  1560. {0xf0,0x35},
  1561. {0x00,0xd0034000},
  1562. {0x04,0x94146054},
  1563. {0x08,0xc2028000},
  1564. {0x0c,0x900a3fe0},
  1565. {0x10,0x9012000c},
  1566. {0x14,0x960861ff},
  1567. {0x18,0x80a2e114},
  1568. {0x1c,0x1280000a},
  1569. {0x20,0xd0234000},
  1570. {0x24,0x1b009051},
  1571. {0x28,0xc2002374},
  1572. {0x2c,0x98146058},
  1573. {0x30,0x9a136040},
  1574. {0x34,0x82586349},
  1575. {0x38,0xda230000},
  1576. {0x3c,0xd6228000},
  1577. {0x40,0xa130600a},
  1578. {0x44,0xda0023f8},
  1579. {0x48,0x82146008},
  1580. {0x4c,0xda204000},
  1581. {0x50,0x9814600c},
  1582. {0x54,0x7ffffe5f},
  1583. {0x58,0xda230000},
  1584. {0x5c,0x9a14607c},
  1585. {0x60,0xd0034000},
  1586. {0x64,0x033ff000},
  1587. {0x68,0x902a0001},
  1588. {0x6c,0xd0234000},
  1589. {0x70,0x033fc1c0},
  1590. {0x74,0xda002340},
  1591. {0x78,0x82106064},
  1592. {0x7c,0xda204000},
  1593. {0xf0,0x36},
  1594. {0x00,0x0300007f},
  1595. {0x04,0x9614a010},
  1596. {0x08,0x821063ff},
  1597. {0x0c,0x1907ffc0},
  1598. {0x10,0xc222c000},
  1599. {0x14,0x9214a030},
  1600. {0x18,0x9414a014},
  1601. {0x1c,0xd8224000},
  1602. {0x20,0x80a42000},
  1603. {0x24,0x0280000f},
  1604. {0x28,0xd8228000},
  1605. {0x2c,0x932c2010},
  1606. {0x30,0x82042001},
  1607. {0x34,0x9b2c2004},
  1608. {0x38,0x83286010},
  1609. {0x3c,0x9a02400d},
  1610. {0x40,0x98146084},
  1611. {0x44,0xda230000},
  1612. {0x48,0x82004010},
  1613. {0x4c,0x96146088},
  1614. {0x50,0x82006002},
  1615. {0x54,0x9414608c},
  1616. {0x58,0xd222c000},
  1617. {0x5c,0xc2228000},
  1618. {0x60,0xc2002174},
  1619. {0x64,0x80a06000},
  1620. {0x68,0x02800007},
  1621. {0x6c,0x173fc080},
  1622. {0x70,0xc2082174},
  1623. {0x74,0xda082177},
  1624. {0x78,0x9812e008},
  1625. {0x7c,0xc2230000},
  1626. {0xf0,0x37},
  1627. {0x00,0xda22c000},
  1628. {0x04,0x7ffffebd},
  1629. {0x08,0x90103fff},
  1630. {0x0c,0x7ffffeaa},
  1631. {0x10,0x90102001},
  1632. {0x14,0x1b3fc0c0},
  1633. {0x18,0x82103fff},
  1634. {0x1c,0x9a136004},
  1635. {0x20,0xc2234000},
  1636. {0x24,0x03200040},
  1637. {0x28,0xc2244000},
  1638. {0x2c,0x81c7e008},
  1639. {0x30,0x81e80000},
  1640. {0x34,0x9de3bf98},
  1641. {0x38,0xc2002508},
  1642. {0x3c,0x808860ff},
  1643. {0x40,0x02800015},
  1644. {0x44,0x1b3fc180},
  1645. {0x48,0x82102001},
  1646. {0x4c,0x9a13603c},
  1647. {0x50,0xc2234000},
  1648. {0x54,0xc2002508},
  1649. {0x58,0x820860ff},
  1650. {0x5c,0x80a04018},
  1651. {0x60,0x1280000b},
  1652. {0x64,0x033fc180},
  1653. {0x68,0x7ffffc74},
  1654. {0x6c,0x01000000},
  1655. {0x70,0xda002508},
  1656. {0x74,0x033fc040},
  1657. {0x78,0x9a0b60ff},
  1658. {0x7c,0x8210600c},
  1659. {0xf0,0x38},
  1660. {0x00,0xc0204000},
  1661. {0x04,0x10bffff7},
  1662. {0x08,0x80a34018},
  1663. {0x0c,0x8210603c},
  1664. {0x10,0xc0204000},
  1665. {0x14,0x81c7e008},
  1666. {0x18,0x81e80000},
  1667. {0x1c,0x9a102000},
  1668. {0x20,0x832b6002},
  1669. {0x24,0x9a036001},
  1670. {0x28,0x80a3604f},
  1671. {0x2c,0x08bffffd},
  1672. {0x30,0xc0220001},
  1673. {0x34,0x81c3e008},
  1674. {0x38,0x01000000},
  1675. {0x3c,0xc20022f8},
  1676. {0x40,0xda00247c},
  1677. {0x44,0x8258400d},
  1678. {0x48,0x83306001},
  1679. {0x4c,0x96102000},
  1680. {0x50,0x80a2c001},
  1681. {0x54,0x1a80003b},
  1682. {0x58,0x0300003f},
  1683. {0x5c,0x941063ff},
  1684. {0x60,0x98102000},
  1685. {0x64,0x80a26001},
  1686. {0x68,0x0280002e},
  1687. {0x6c,0x80a26004},
  1688. {0x70,0x12800008},
  1689. {0x74,0x80a26008},
  1690. {0x78,0xc2030008},
  1691. {0x7c,0x9a08400a},
  1692. {0xf0,0x39},
  1693. {0x00,0x83306012},
  1694. {0x04,0x83286010},
  1695. {0x08,0x10800014},
  1696. {0x0c,0x9b336002},
  1697. {0x10,0x28800015},
  1698. {0x14,0xda02000c},
  1699. {0x18,0xda030008},
  1700. {0x1c,0x83336010},
  1701. {0x20,0x82004001},
  1702. {0x24,0x9a0b400a},
  1703. {0x28,0x81800000},
  1704. {0x2c,0x01000000},
  1705. {0x30,0x01000000},
  1706. {0x34,0x01000000},
  1707. {0x38,0x82704009},
  1708. {0x3c,0x9a03400d},
  1709. {0x40,0x83286010},
  1710. {0x44,0x81800000},
  1711. {0x48,0x01000000},
  1712. {0x4c,0x01000000},
  1713. {0x50,0x01000000},
  1714. {0x54,0x9a734009},
  1715. {0x58,0x8200400d},
  1716. {0x5c,0x10800011},
  1717. {0x60,0xc2230008},
  1718. {0x64,0x83336010},
  1719. {0x68,0x81800000},
  1720. {0x6c,0x01000000},
  1721. {0x70,0x01000000},
  1722. {0x74,0x01000000},
  1723. {0x78,0x82704009},
  1724. {0x7c,0x9a0b400a},
  1725. {0xf0,0x3a},
  1726. {0x00,0x83286010},
  1727. {0x04,0x81800000},
  1728. {0x08,0x01000000},
  1729. {0x0c,0x01000000},
  1730. {0x10,0x01000000},
  1731. {0x14,0x9a734009},
  1732. {0x18,0x8200400d},
  1733. {0x1c,0xc222000c},
  1734. {0x20,0xc20022f8},
  1735. {0x24,0xda00247c},
  1736. {0x28,0x8258400d},
  1737. {0x2c,0x9602e001},
  1738. {0x30,0x83306001},
  1739. {0x34,0x80a2c001},
  1740. {0x38,0x0abfffcb},
  1741. {0x3c,0x98032004},
  1742. {0x40,0x81c3e008},
  1743. {0x44,0x01000000},
  1744. {0x48,0x98102000},
  1745. {0x4c,0x9b2b2002},
  1746. {0x50,0x98032001},
  1747. {0x54,0xc202000d},
  1748. {0x58,0x80a3204f},
  1749. {0x5c,0x04bffffc},
  1750. {0x60,0xc222400d},
  1751. {0x64,0x81c3e008},
  1752. {0x68,0x01000000},
  1753. {0x6c,0xd6020000},
  1754. {0x70,0xd8024000},
  1755. {0x74,0x9132e010},
  1756. {0x78,0x95332010},
  1757. {0x7c,0x900a2fff},
  1758. {0xf0,0x3b},
  1759. {0x00,0x940aafff},
  1760. {0x04,0x03000007},
  1761. {0x08,0x9a22000a},
  1762. {0x0c,0x821063ff},
  1763. {0x10,0x940b0001},
  1764. {0x14,0x900ac001},
  1765. {0x18,0x9022000a},
  1766. {0x1c,0x9a5b400d},
  1767. {0x20,0x905a0008},
  1768. {0x24,0x81c3e008},
  1769. {0x28,0x90034008},
  1770. {0x2c,0x9de3bf98},
  1771. {0x30,0x82064019},
  1772. {0x34,0x82004019},
  1773. {0x38,0x83286002},
  1774. {0x3c,0x82004018},
  1775. {0x40,0x3b000019},
  1776. {0x44,0x83286002},
  1777. {0x48,0xba176080},
  1778. {0x4c,0x9a066001},
  1779. {0x50,0xde00401d},
  1780. {0x54,0xb2067fff},
  1781. {0x58,0xc2002478},
  1782. {0x5c,0x9823c001},
  1783. {0x60,0x80a6400d},
  1784. {0x64,0xb4062001},
  1785. {0x68,0x1480002a},
  1786. {0x6c,0x96102000},
  1787. {0x70,0x82064019},
  1788. {0x74,0x82004019},
  1789. {0x78,0x9410001d},
  1790. {0x7c,0xb9286002},
  1791. {0xf0,0x3c},
  1792. {0x00,0xb006bffe},
  1793. {0x04,0x833e601f},
  1794. {0x08,0xba070018},
  1795. {0x0c,0x82204019},
  1796. {0x10,0xbb2f6002},
  1797. {0x14,0xb730601f},
  1798. {0x18,0xba07400a},
  1799. {0x1c,0x80a62000},
  1800. {0x20,0x24800015},
  1801. {0x24,0xb0062001},
  1802. {0x28,0xc2002308},
  1803. {0x2c,0x80a04018},
  1804. {0x30,0x82603fff},
  1805. {0x34,0x8088401b},
  1806. {0x38,0x2280000f},
  1807. {0x3c,0xb0062001},
  1808. {0x40,0xc2002300},
  1809. {0x44,0x80a64001},
  1810. {0x48,0x3880000b},
  1811. {0x4c,0xb0062001},
  1812. {0x50,0xc2074000},
  1813. {0x54,0x80a0400f},
  1814. {0x58,0x04800004},
  1815. {0x5c,0x80a0400c},
  1816. {0x60,0x1080000d},
  1817. {0x64,0xb0102000},
  1818. {0x68,0x24800002},
  1819. {0x6c,0x96102001},
  1820. {0x70,0xb0062001},
  1821. {0x74,0x80a6001a},
  1822. {0x78,0x04bfffe9},
  1823. {0x7c,0xba076004},
  1824. {0xf0,0x3d},
  1825. {0x00,0xb2066001},
  1826. {0x04,0x80a6400d},
  1827. {0x08,0x04bfffde},
  1828. {0x0c,0xb807200c},
  1829. {0x10,0xb010000b},
  1830. {0x14,0x81c7e008},
  1831. {0x18,0x81e80000},
  1832. {0x1c,0xc2002548},
  1833. {0x20,0x82087fbf},
  1834. {0x24,0xc2202548},
  1835. {0x28,0xc020255c},
  1836. {0x2c,0xc0202514},
  1837. {0x30,0x9a102000},
  1838. {0x34,0x832b6002},
  1839. {0x38,0x9a036001},
  1840. {0x3c,0xc0206748},
  1841. {0x40,0x80a36009},
  1842. {0x44,0x04bffffc},
  1843. {0x48,0xc0206720},
  1844. {0x4c,0x81c3e008},
  1845. {0x50,0x01000000},
  1846. {0x54,0x9de3bf88},
  1847. {0x58,0x82063fff},
  1848. {0x5c,0xb8067fff},
  1849. {0x60,0x82160001},
  1850. {0x64,0xba16401c},
  1851. {0x68,0x80974001},
  1852. {0x6c,0xa610001a},
  1853. {0x70,0x0680006c},
  1854. {0x74,0xa410001b},
  1855. {0x78,0xc2002308},
  1856. {0x7c,0x80a60001},
  1857. {0xf0,0x3e},
  1858. {0x00,0x38800069},
  1859. {0x04,0xb0102000},
  1860. {0x08,0xc2002300},
  1861. {0x0c,0x80a64001},
  1862. {0x10,0x38800065},
  1863. {0x14,0xb0102000},
  1864. {0x18,0x94062001},
  1865. {0x1c,0x96066001},
  1866. {0x20,0xa207bff8},
  1867. {0x24,0x8207bfe8},
  1868. {0x28,0xb0102003},
  1869. {0x2c,0xc0204000},
  1870. {0x30,0xb0863fff},
  1871. {0x34,0x1cbffffe},
  1872. {0x38,0x82006004},
  1873. {0x3c,0x80a7000b},
  1874. {0x40,0x14800031},
  1875. {0x44,0xb210001c},
  1876. {0x48,0x8207001c},
  1877. {0x4c,0xba02c00b},
  1878. {0x50,0x8200401c},
  1879. {0x54,0xba07400b},
  1880. {0x58,0xba20401d},
  1881. {0x5c,0x39000019},
  1882. {0x60,0xa0172080},
  1883. {0x64,0x9827400a},
  1884. {0x68,0x9b286002},
  1885. {0x6c,0xb002bffe},
  1886. {0x70,0x82034018},
  1887. {0x74,0x83286002},
  1888. {0x78,0xba06000c},
  1889. {0x7c,0xb4004010},
  1890. {0xf0,0x3f},
  1891. {0x00,0xb6076008},
  1892. {0x04,0x90102001},
  1893. {0x08,0x932a001b},
  1894. {0x0c,0x9e102000},
  1895. {0x10,0xb92be002},
  1896. {0x14,0xfa072520},
  1897. {0x18,0xba5f4012},
  1898. {0x1c,0x833f601f},
  1899. {0x20,0x83306018},
  1900. {0x24,0xba074001},
  1901. {0x28,0xc2068000},
  1902. {0x2c,0x82204013},
  1903. {0x30,0xbb3f6008},
  1904. {0x34,0x9e03e001},
  1905. {0x38,0x80a0401d},
  1906. {0x3c,0x04800005},
  1907. {0x40,0xb8070011},
  1908. {0x44,0xc2073ff0},
  1909. {0x48,0x82104009},
  1910. {0x4c,0xc2273ff0},
  1911. {0x50,0x80a3e003},
  1912. {0x54,0x08bffff0},
  1913. {0x58,0xb92be002},
  1914. {0x5c,0xb0062001},
  1915. {0x60,0xb606e001},
  1916. {0x64,0x80a6000a},
  1917. {0x68,0x04bfffe8},
  1918. {0x6c,0xb406a004},
  1919. {0x70,0xb2066001},
  1920. {0x74,0x9a03600c},
  1921. {0x78,0x80a6400b},
  1922. {0x7c,0x04bfffdc},
  1923. {0xf0,0x40},
  1924. {0x00,0x98032003},
  1925. {0x04,0xc207bfe8},
  1926. {0x08,0x80886010},
  1927. {0x0c,0x0280000a},
  1928. {0x10,0xfa07bfec},
  1929. {0x14,0xc207bff4},
  1930. {0x18,0x80886082},
  1931. {0x1c,0x02800007},
  1932. {0x20,0x808f6010},
  1933. {0x24,0x80886028},
  1934. {0x28,0x1280001f},
  1935. {0x2c,0xb0102003},
  1936. {0x30,0xfa07bfec},
  1937. {0x34,0x808f6010},
  1938. {0x38,0x02800012},
  1939. {0x3c,0xc207bff0},
  1940. {0x40,0x808f6082},
  1941. {0x44,0x02800007},
  1942. {0x48,0x808f6028},
  1943. {0x4c,0xc207bff4},
  1944. {0x50,0x80886028},
  1945. {0x54,0x32800014},
  1946. {0x58,0xb0102002},
  1947. {0x5c,0x808f6028},
  1948. {0x60,0x02800008},
  1949. {0x64,0xc207bff0},
  1950. {0x68,0xc207bff4},
  1951. {0x6c,0x80886082},
  1952. {0x70,0x02800004},
  1953. {0x74,0xc207bff0},
  1954. {0x78,0x1080000b},
  1955. {0x7c,0xb0102002},
  1956. {0xf0,0x41},
  1957. {0x00,0x80886010},
  1958. {0x04,0x02800008},
  1959. {0x08,0xb0102000},
  1960. {0x0c,0x80886082},
  1961. {0x10,0x02800005},
  1962. {0x14,0x80886028},
  1963. {0x18,0x12800003},
  1964. {0x1c,0xb0102001},
  1965. {0x20,0xb0102000},
  1966. {0x24,0x81c7e008},
  1967. {0x28,0x81e80000},
  1968. {0x2c,0x9de3bf98},
  1969. {0x30,0xb12e2002},
  1970. {0x34,0xf8062720},
  1971. {0x38,0x9a0f2fff},
  1972. {0x3c,0xba03400d},
  1973. {0x40,0xba07400d},
  1974. {0x44,0xb1372010},
  1975. {0x48,0xb00e2fff},
  1976. {0x4c,0xbb2f6002},
  1977. {0x50,0xba074018},
  1978. {0x54,0x03000019},
  1979. {0x58,0x82106080},
  1980. {0x5c,0xbb2f6002},
  1981. {0x60,0xfa074001},
  1982. {0x64,0xc20821e4},
  1983. {0x68,0xba5f4001},
  1984. {0x6c,0x833f601f},
  1985. {0x70,0x83306019},
  1986. {0x74,0xba074001},
  1987. {0x78,0xbb3f6007},
  1988. {0x7c,0xb937200c},
  1989. {0xf0,0x42},
  1990. {0x00,0xc20821e5},
  1991. {0x04,0xa0100019},
  1992. {0x08,0x9410001a},
  1993. {0x0c,0xa8074001},
  1994. {0x10,0x808f2001},
  1995. {0x14,0xb006001a},
  1996. {0x18,0x02800010},
  1997. {0x1c,0x9a034019},
  1998. {0x20,0xc20023c8},
  1999. {0x24,0x80886200},
  2000. {0x28,0x32800002},
  2001. {0x2c,0xb006001a},
  2002. {0x30,0xc200237c},
  2003. {0x34,0x80a06000},
  2004. {0x38,0x22800062},
  2005. {0x3c,0x9a036001},
  2006. {0x40,0xc2002308},
  2007. {0x44,0x80a60001},
  2008. {0x48,0x2880005e},
  2009. {0x4c,0x9a036001},
  2010. {0x50,0x1080005c},
  2011. {0x54,0xb0062001},
  2012. {0x58,0xc20023c8},
  2013. {0x5c,0x83306014},
  2014. {0x60,0x82086001},
  2015. {0x64,0x80a00001},
  2016. {0x68,0xa2603fff},
  2017. {0x6c,0x9a034010},
  2018. {0x70,0x8333601f},
  2019. {0x74,0x80944001},
  2020. {0x78,0x12800052},
  2021. {0x7c,0xb006000a},
  2022. {0xf0,0x43},
  2023. {0x00,0x80a62000},
  2024. {0x04,0x06800050},
  2025. {0x08,0x80a2a000},
  2026. {0x0c,0xc2002300},
  2027. {0x10,0x82006001},
  2028. {0x14,0x80a34001},
  2029. {0x18,0x1880004b},
  2030. {0x1c,0x80a2a000},
  2031. {0x20,0xc2002308},
  2032. {0x24,0x82006001},
  2033. {0x28,0x80a60001},
  2034. {0x2c,0x18800045},
  2035. {0x30,0xa4102000},
  2036. {0x34,0x27000019},
  2037. {0x38,0x96103fff},
  2038. {0x3c,0xaa14e080},
  2039. {0x40,0x9214e080},
  2040. {0x44,0x80a2a000},
  2041. {0x48,0x9e03400b},
  2042. {0x4c,0x12800004},
  2043. {0x50,0x98100018},
  2044. {0x54,0x9806000b},
  2045. {0x58,0x9e10000d},
  2046. {0x5c,0xba23c010},
  2047. {0x60,0x8207401d},
  2048. {0x64,0x8200401d},
  2049. {0x68,0xba23000a},
  2050. {0x6c,0x83286002},
  2051. {0x70,0x8200401d},
  2052. {0x74,0x83286002},
  2053. {0x78,0xfa004009},
  2054. {0x7c,0xc20821e6},
  2055. {0xf0,0x44},
  2056. {0x00,0xba5f4001},
  2057. {0x04,0xb803c00b},
  2058. {0x08,0x833f601f},
  2059. {0x0c,0x9003c00f},
  2060. {0x10,0xb202000f},
  2061. {0x14,0x83306019},
  2062. {0x18,0xb407001c},
  2063. {0x1c,0xb72e6002},
  2064. {0x20,0xba074001},
  2065. {0x24,0xb406801c},
  2066. {0x28,0xbb3f6007},
  2067. {0x2c,0xb606c00c},
  2068. {0x30,0xf80821e7},
  2069. {0x34,0xb807401c},
  2070. {0x38,0xb72ee002},
  2071. {0x3c,0xfa06c009},
  2072. {0x40,0xb32e6004},
  2073. {0x44,0x8203000b},
  2074. {0x48,0x83286002},
  2075. {0x4c,0xb2064009},
  2076. {0x50,0x80a7401c},
  2077. {0x54,0xba064001},
  2078. {0x58,0xb52ea004},
  2079. {0x5c,0x14800019},
  2080. {0x60,0x832b2002},
  2081. {0x64,0x80a2a000},
  2082. {0x68,0x22800005},
  2083. {0x6c,0x8202000f},
  2084. {0x70,0xb2068009},
  2085. {0x74,0xba064001},
  2086. {0x78,0x8202000f},
  2087. {0x7c,0x83286002},
  2088. {0xf0,0x45},
  2089. {0x00,0x8200400c},
  2090. {0x04,0xb3286002},
  2091. {0x08,0xc2074000},
  2092. {0x0c,0x80a0401c},
  2093. {0x10,0x1480000c},
  2094. {0x14,0x9602e001},
  2095. {0x18,0xc2064015},
  2096. {0x1c,0x80a04014},
  2097. {0x20,0x36800002},
  2098. {0x24,0xa4102001},
  2099. {0x28,0x80a2e001},
  2100. {0x2c,0x04bfffc6},
  2101. {0x30,0x9214e080},
  2102. {0x34,0x80a4a000},
  2103. {0x38,0x32bfffae},
  2104. {0x3c,0x9a034010},
  2105. {0x40,0x80a2a000},
  2106. {0x44,0x12800003},
  2107. {0x48,0xb026000a},
  2108. {0x4c,0xb0234010},
  2109. {0x50,0x81c7e008},
  2110. {0x54,0x81e80000},
  2111. {0x58,0x94102000},
  2112. {0x5c,0xc2002514},
  2113. {0x60,0x80a28001},
  2114. {0x64,0x96102000},
  2115. {0x68,0x1a80000e},
  2116. {0x6c,0x9b2ae002},
  2117. {0x70,0xc2036720},
  2118. {0x74,0x9602e001},
  2119. {0x78,0x80a06000},
  2120. {0x7c,0x02800006},
  2121. {0xf0,0x46},
  2122. {0x00,0x992aa002},
  2123. {0x04,0xc2232720},
  2124. {0x08,0xc2036748},
  2125. {0x0c,0x9402a001},
  2126. {0x10,0xc2232748},
  2127. {0x14,0xc2002514},
  2128. {0x18,0x10bffff4},
  2129. {0x1c,0x80a2c001},
  2130. {0x20,0x81c3e008},
  2131. {0x24,0xd4202514},
  2132. {0x28,0xd4020000},
  2133. {0x2c,0x03000018},
  2134. {0x30,0x9802800a},
  2135. {0x34,0x82106200},
  2136. {0x38,0xda130001},
  2137. {0x3c,0xc2002590},
  2138. {0x40,0xc250400c},
  2139. {0x44,0x96a0400d},
  2140. {0x48,0x02800016},
  2141. {0x4c,0x03000018},
  2142. {0x50,0x80a2e000},
  2143. {0x54,0x04800009},
  2144. {0x58,0x82102001},
  2145. {0x5c,0xda022004},
  2146. {0x60,0x8328400d},
  2147. {0x64,0x80a2c001},
  2148. {0x68,0x3480000d},
  2149. {0x6c,0x973ac00d},
  2150. {0x70,0x1080000b},
  2151. {0x74,0x96102001},
  2152. {0x78,0x1680000a},
  2153. {0x7c,0x03000018},
  2154. {0xf0,0x47},
  2155. {0x00,0xda022008},
  2156. {0x04,0x82103fff},
  2157. {0x08,0x8328400d},
  2158. {0x0c,0x80a2c001},
  2159. {0x10,0x36800003},
  2160. {0x14,0x96103fff},
  2161. {0x18,0x973ac00d},
  2162. {0x1c,0x03000018},
  2163. {0x20,0x92106200},
  2164. {0x24,0x8202800a},
  2165. {0x28,0xc2104009},
  2166. {0x2c,0x9602c001},
  2167. {0x30,0x808aa001},
  2168. {0x34,0x0280000f},
  2169. {0x38,0x9b3aa01f},
  2170. {0x3c,0x9b33601f},
  2171. {0x40,0x9a02800d},
  2172. {0x44,0x9b3b6001},
  2173. {0x48,0x9b2b6002},
  2174. {0x4c,0xd8034009},
  2175. {0x50,0x033fffc0},
  2176. {0x54,0x980b0001},
  2177. {0x58,0x0300003f},
  2178. {0x5c,0x821063ff},
  2179. {0x60,0x820ac001},
  2180. {0x64,0x98030001},
  2181. {0x68,0x1080000d},
  2182. {0x6c,0xd8234009},
  2183. {0x70,0x9b33601f},
  2184. {0x74,0x9a02800d},
  2185. {0x78,0x9b3b6001},
  2186. {0x7c,0x9b2b6002},
  2187. {0xf0,0x48},
  2188. {0x00,0x0300003f},
  2189. {0x04,0xd8034009},
  2190. {0x08,0x821063ff},
  2191. {0x0c,0x980b0001},
  2192. {0x10,0x832ae010},
  2193. {0x14,0x8200400c},
  2194. {0x18,0xc2234009},
  2195. {0x1c,0xc2020000},
  2196. {0x20,0xda00247c},
  2197. {0x24,0x8200400d},
  2198. {0x28,0x81c3e008},
  2199. {0x2c,0xc2220000},
  2200. {0x30,0x9de3bf98},
  2201. {0x34,0x833e201f},
  2202. {0x38,0xd0002320},
  2203. {0x3c,0x82204018},
  2204. {0x40,0x80a22000},
  2205. {0x44,0x02800015},
  2206. {0x48,0x9b30601f},
  2207. {0x4c,0x033fc000},
  2208. {0x50,0xa0106020},
  2209. {0x54,0xc200231c},
  2210. {0x58,0x80a00001},
  2211. {0x5c,0x82402000},
  2212. {0x60,0x8088400d},
  2213. {0x64,0xc2002318},
  2214. {0x68,0x02800009},
  2215. {0x6c,0xb01e0001},
  2216. {0x70,0x80a00001},
  2217. {0x74,0x82603fff},
  2218. {0x78,0x7ffffa47},
  2219. {0x7c,0xc2240000},
  2220. {0xf0,0x49},
  2221. {0x00,0xc2002318},
  2222. {0x04,0x10800005},
  2223. {0x08,0xc2240000},
  2224. {0x0c,0x033fc000},
  2225. {0x10,0x82106020},
  2226. {0x14,0xf0204000},
  2227. {0x18,0x81c7e008},
  2228. {0x1c,0x81e80000},
  2229. {0x20,0x9de3bf98},
  2230. {0x24,0x7ffffa45},
  2231. {0x28,0x01000000},
  2232. {0x2c,0x033fc040},
  2233. {0x30,0xe0002500},
  2234. {0x34,0x8210600c},
  2235. {0x38,0x80a42028},
  2236. {0x3c,0x08800013},
  2237. {0x40,0xc0204000},
  2238. {0x44,0xc0202584},
  2239. {0x48,0xa2102000},
  2240. {0x4c,0x832c6002},
  2241. {0x50,0xc2006f04},
  2242. {0x54,0x80a06000},
  2243. {0x58,0x02800060},
  2244. {0x5c,0xa2046001},
  2245. {0x60,0x9fc04000},
  2246. {0x64,0x01000000},
  2247. {0x68,0xc2002584},
  2248. {0x6c,0x80a06000},
  2249. {0x70,0x1280005a},
  2250. {0x74,0x80a4603b},
  2251. {0x78,0x24bffff6},
  2252. {0x7c,0x832c6002},
  2253. {0xf0,0x4a},
  2254. {0x00,0x10800057},
  2255. {0x04,0xc2002500},
  2256. {0x08,0x80a42000},
  2257. {0x0c,0x12800017},
  2258. {0x10,0x80a42014},
  2259. {0x14,0x19169683},
  2260. {0x18,0x9a132300},
  2261. {0x1c,0xc2002f00},
  2262. {0x20,0x80a0400d},
  2263. {0x24,0x12800006},
  2264. {0x28,0x9a1323fc},
  2265. {0x2c,0xc2002ffc},
  2266. {0x30,0x80a0400d},
  2267. {0x34,0x22800005},
  2268. {0x38,0xc2002fcc},
  2269. {0x3c,0x40001004},
  2270. {0x40,0x01000000},
  2271. {0x44,0xc2002fcc},
  2272. {0x48,0x9fc04000},
  2273. {0x4c,0x01000000},
  2274. {0x50,0x7ffffc4a},
  2275. {0x54,0x90102000},
  2276. {0x58,0x7ffffc37},
  2277. {0x5c,0x90102001},
  2278. {0x60,0x1080003f},
  2279. {0x64,0xc2002500},
  2280. {0x68,0x1880000c},
  2281. {0x6c,0x80a42015},
  2282. {0x70,0x808c2001},
  2283. {0x74,0x3280003a},
  2284. {0x78,0xc2002500},
  2285. {0x7c,0x90043ffe},
  2286. {0xf0,0x4b},
  2287. {0x00,0x7ffffbd0},
  2288. {0x04,0x91322001},
  2289. {0x08,0x7ffffbb2},
  2290. {0x0c,0x01000000},
  2291. {0x10,0x10800033},
  2292. {0x14,0xc2002500},
  2293. {0x18,0x18800010},
  2294. {0x1c,0x80a42018},
  2295. {0x20,0x033fc180},
  2296. {0x24,0xda0025b0},
  2297. {0x28,0x82106038},
  2298. {0x2c,0xda204000},
  2299. {0x30,0x033fc200},
  2300. {0x34,0x82106074},
  2301. {0x38,0xda00232c},
  2302. {0x3c,0xda204000},
  2303. {0x40,0x7ffffc1d},
  2304. {0x44,0x90102000},
  2305. {0x48,0xc200266c},
  2306. {0x4c,0xc2202538},
  2307. {0x50,0x10800020},
  2308. {0x54,0xc2002fcc},
  2309. {0x58,0x1880000c},
  2310. {0x5c,0x80a42028},
  2311. {0x60,0x90102000},
  2312. {0x64,0x92102000},
  2313. {0x68,0xc2002fc0},
  2314. {0x6c,0x9fc04000},
  2315. {0x70,0x94102000},
  2316. {0x74,0x11000018},
  2317. {0x78,0x7ffffd89},
  2318. {0x7c,0x90122200},
  2319. {0xf0,0x4c},
  2320. {0x00,0x10800017},
  2321. {0x04,0xc2002500},
  2322. {0x08,0x38800015},
  2323. {0x0c,0xc2002500},
  2324. {0x10,0x7ffffb1c},
  2325. {0x14,0x23000018},
  2326. {0x18,0x92146200},
  2327. {0x1c,0xc2002fc0},
  2328. {0x20,0x9fc04000},
  2329. {0x24,0x94043fe8},
  2330. {0x28,0x80a42028},
  2331. {0x2c,0x3280000c},
  2332. {0x30,0xc2002500},
  2333. {0x34,0x90146200},
  2334. {0x38,0x7ffffd81},
  2335. {0x3c,0x92102008},
  2336. {0x40,0xc2002fd8},
  2337. {0x44,0x80a06000},
  2338. {0x48,0x22800005},
  2339. {0x4c,0xc2002500},
  2340. {0x50,0x9fc04000},
  2341. {0x54,0x01000000},
  2342. {0x58,0xc2002500},
  2343. {0x5c,0x80a40001},
  2344. {0x60,0x1280000b},
  2345. {0x64,0x031fffff},
  2346. {0x68,0x821063f0},
  2347. {0x6c,0x80a40001},
  2348. {0x70,0x38800003},
  2349. {0x74,0x21040000},
  2350. {0x78,0xa0042001},
  2351. {0x7c,0x033fc180},
  2352. {0xf0,0x4d},
  2353. {0x00,0x82106034},
  2354. {0x04,0xe0204000},
  2355. {0x08,0xe0202500},
  2356. {0x0c,0x81c7e008},
  2357. {0x10,0x81e80000},
  2358. {0x14,0x81c3e008},
  2359. {0x18,0x01000000},
  2360. {0x1c,0x9de3bf98},
  2361. {0x20,0x9e100018},
  2362. {0x24,0x80a66000},
  2363. {0x28,0x0280001b},
  2364. {0x2c,0xb010001a},
  2365. {0x30,0x031fffdf},
  2366. {0x34,0xb41063ff},
  2367. {0x38,0x82102000},
  2368. {0x3c,0xbb286002},
  2369. {0x40,0x80a62009},
  2370. {0x44,0xb6006001},
  2371. {0x48,0x12800006},
  2372. {0x4c,0xb810001d},
  2373. {0x50,0xc206401d},
  2374. {0x54,0x83306001},
  2375. {0x58,0x8208401a},
  2376. {0x5c,0xc226401d},
  2377. {0x60,0x80a62008},
  2378. {0x64,0x08800006},
  2379. {0x68,0xc206401c},
  2380. {0x6c,0xfa03c01c},
  2381. {0x70,0xbb376001},
  2382. {0x74,0x10800003},
  2383. {0x78,0xba0f401a},
  2384. {0x7c,0xfa03c01c},
  2385. {0xf0,0x4e},
  2386. {0x00,0x8200401d},
  2387. {0x04,0xc226401c},
  2388. {0x08,0x80a6e04f},
  2389. {0x0c,0x08bfffec},
  2390. {0x10,0x8210001b},
  2391. {0x14,0x81c7e008},
  2392. {0x18,0x81e80000},
  2393. {0x1c,0x03169696},
  2394. {0x20,0xda002180},
  2395. {0x24,0x8210625a},
  2396. {0x28,0x80a34001},
  2397. {0x2c,0x94102000},
  2398. {0x30,0x12800006},
  2399. {0x34,0x96102000},
  2400. {0x38,0x033fc180},
  2401. {0x3c,0x82106030},
  2402. {0x40,0x10800026},
  2403. {0x44,0xda204000},
  2404. {0x48,0x80a2e200},
  2405. {0x4c,0x32800004},
  2406. {0x50,0xc202c000},
  2407. {0x54,0x10bffffd},
  2408. {0x58,0x96102204},
  2409. {0x5c,0x9602e004},
  2410. {0x60,0x80a2e4ff},
  2411. {0x64,0x08bffff9},
  2412. {0x68,0x94028001},
  2413. {0x6c,0x96102d00},
  2414. {0x70,0xd2002ff8},
  2415. {0x74,0x03000019},
  2416. {0x78,0x80a2c009},
  2417. {0x7c,0x1a80000b},
  2418. {0xf0,0x4f},
  2419. {0x00,0x901063ff},
  2420. {0x04,0xd802c000},
  2421. {0x08,0x9602e004},
  2422. {0x0c,0x80a2c009},
  2423. {0x10,0x9a402000},
  2424. {0x14,0x80a2000b},
  2425. {0x18,0x82603fff},
  2426. {0x1c,0x808b4001},
  2427. {0x20,0x12bffff9},
  2428. {0x24,0x9402800c},
  2429. {0x28,0xc20021fc},
  2430. {0x2c,0x94228001},
  2431. {0x30,0x03169696},
  2432. {0x34,0x8210625a},
  2433. {0x38,0x80a28001},
  2434. {0x3c,0x033fc180},
  2435. {0x40,0x82106030},
  2436. {0x44,0x02800005},
  2437. {0x48,0xd4204000},
  2438. {0x4c,0x03000009},
  2439. {0x50,0x81c06030},
  2440. {0x54,0x90102001},
  2441. {0x58,0x01000000},
  2442. {0x5c,0x81c3e008},
  2443. {0x60,0x01000000},
  2444. {0x64,0x9de3bf98},
  2445. {0x68,0x9e100018},
  2446. {0x6c,0x03000019},
  2447. {0x70,0xb0100019},
  2448. {0x74,0xba106080},
  2449. {0x78,0xb6102000},
  2450. {0x7c,0x832ee002},
  2451. {0xf0,0x50},
  2452. {0x00,0xb606e001},
  2453. {0x04,0x80a6e0d7},
  2454. {0x08,0x08bffffd},
  2455. {0x0c,0xc020401d},
  2456. {0x10,0xb6102000},
  2457. {0x14,0xc20022fc},
  2458. {0x18,0x80a6c001},
  2459. {0x1c,0x1a80001c},
  2460. {0x20,0x03000019},
  2461. {0x24,0xb21060b4},
  2462. {0x28,0xb4102000},
  2463. {0x2c,0xc20022f8},
  2464. {0x30,0x80a68001},
  2465. {0x34,0x1a800011},
  2466. {0x38,0x832ee002},
  2467. {0x3c,0xb8004019},
  2468. {0x40,0xc200247c},
  2469. {0x44,0xfa0ee380},
  2470. {0x48,0x825e8001},
  2471. {0x4c,0x8200401d},
  2472. {0x50,0x82004001},
  2473. {0x54,0xfa160001},
  2474. {0x58,0xc213c001},
  2475. {0x5c,0x8220401d},
  2476. {0x60,0xc2270000},
  2477. {0x64,0xb406a001},
  2478. {0x68,0xc20022f8},
  2479. {0x6c,0x80a68001},
  2480. {0x70,0x0abffff4},
  2481. {0x74,0xb8072030},
  2482. {0x78,0xb606e001},
  2483. {0x7c,0xc20022fc},
  2484. {0xf0,0x51},
  2485. {0x00,0x80a6c001},
  2486. {0x04,0x0abfffea},
  2487. {0x08,0xb4102000},
  2488. {0x0c,0x81c7e008},
  2489. {0x10,0x81e80000},
  2490. {0x14,0x9de3bf98},
  2491. {0x18,0x21000018},
  2492. {0x1c,0xc2002fe4},
  2493. {0x20,0x9fc04000},
  2494. {0x24,0x90142200},
  2495. {0x28,0xc200254c},
  2496. {0x2c,0xda00259c},
  2497. {0x30,0x90142340},
  2498. {0x34,0x98087ffd},
  2499. {0x38,0x80886002},
  2500. {0x3c,0x0280002c},
  2501. {0x40,0xda202550},
  2502. {0x44,0xc2002664},
  2503. {0x48,0x9a004001},
  2504. {0x4c,0x9a034001},
  2505. {0x50,0xc200259c},
  2506. {0x54,0xb2006140},
  2507. {0x58,0x9a03400d},
  2508. {0x5c,0x82102061},
  2509. {0x60,0x8220400d},
  2510. {0x64,0x9b2e6007},
  2511. {0x68,0x973b601f},
  2512. {0x6c,0x8182e000},
  2513. {0x70,0x01000000},
  2514. {0x74,0x01000000},
  2515. {0x78,0x01000000},
  2516. {0x7c,0xb27b4001},
  2517. {0xf0,0x52},
  2518. {0x00,0xd820254c},
  2519. {0x04,0xc2002fe4},
  2520. {0x08,0x9fc04000},
  2521. {0x0c,0x01000000},
  2522. {0x10,0x11000017},
  2523. {0x14,0x90122240},
  2524. {0x18,0xe000259c},
  2525. {0x1c,0xc2002fe4},
  2526. {0x20,0x9fc04000},
  2527. {0x24,0x01000000},
  2528. {0x28,0x80a64010},
  2529. {0x2c,0x9a603fff},
  2530. {0x30,0xc200259c},
  2531. {0x34,0x80a64001},
  2532. {0x38,0x11000019},
  2533. {0x3c,0x82603fff},
  2534. {0x40,0x80934001},
  2535. {0x44,0x02800009},
  2536. {0x48,0x90122240},
  2537. {0x4c,0x7ffffa56},
  2538. {0x50,0x01000000},
  2539. {0x54,0x7ffffabf},
  2540. {0x58,0x01000000},
  2541. {0x5c,0x82102015},
  2542. {0x60,0x10800011},
  2543. {0x64,0xc2202500},
  2544. {0x68,0xc020250c},
  2545. {0x6c,0x31000018},
  2546. {0x70,0x33000017},
  2547. {0x74,0xc200250c},
  2548. {0x78,0xb0162200},
  2549. {0x7c,0x80a06000},
  2550. {0xf0,0x53},
  2551. {0x00,0x12800009},
  2552. {0x04,0xb2166240},
  2553. {0x08,0x031696a9},
  2554. {0x0c,0x821061a5},
  2555. {0x10,0xc220250c},
  2556. {0x14,0xc0202668},
  2557. {0x18,0xc0202664},
  2558. {0x1c,0x7ffffceb},
  2559. {0x20,0x81e80000},
  2560. {0x24,0x01000000},
  2561. {0x28,0x81c7e008},
  2562. {0x2c,0x81e80000},
  2563. {0x30,0x9de3bf58},
  2564. {0x34,0x94100018},
  2565. {0x38,0x9a102000},
  2566. {0x3c,0x96102000},
  2567. {0x40,0x98102000},
  2568. {0x44,0x9e102000},
  2569. {0x48,0x8203000f},
  2570. {0x4c,0xf6086441},
  2571. {0x50,0x80a6e000},
  2572. {0x54,0x02800024},
  2573. {0x58,0xf4086440},
  2574. {0x5c,0xc208217d},
  2575. {0x60,0x80807fff},
  2576. {0x64,0xf40ea37f},
  2577. {0x68,0xf60ee37f},
  2578. {0x6c,0x0c80001a},
  2579. {0x70,0xb2102000},
  2580. {0x74,0xb007bff8},
  2581. {0x78,0xc200247c},
  2582. {0x7c,0x82584019},
  2583. {0xf0,0x54},
  2584. {0x00,0xba06c001},
  2585. {0x04,0x82068001},
  2586. {0x08,0x82004001},
  2587. {0x0c,0xf8528001},
  2588. {0x10,0xba07401d},
  2589. {0x14,0xc252801d},
  2590. {0x18,0xb8270001},
  2591. {0x1c,0x80a66000},
  2592. {0x20,0x02800007},
  2593. {0x24,0xf8263fc0},
  2594. {0x28,0xc2063fbc},
  2595. {0x2c,0x82a70001},
  2596. {0x30,0x2c800003},
  2597. {0x34,0x9a234001},
  2598. {0x38,0x9a034001},
  2599. {0x3c,0xc208217d},
  2600. {0x40,0xb2066001},
  2601. {0x44,0x82007fff},
  2602. {0x48,0x80a64001},
  2603. {0x4c,0x04bfffeb},
  2604. {0x50,0xb0062004},
  2605. {0x54,0x9e03e001},
  2606. {0x58,0x80a3e00a},
  2607. {0x5c,0x04bfffdc},
  2608. {0x60,0x8203000f},
  2609. {0x64,0x9602e001},
  2610. {0x68,0x80a2e001},
  2611. {0x6c,0x04bfffd6},
  2612. {0x70,0x9803200c},
  2613. {0x74,0xda20259c},
  2614. {0x78,0x81c7e008},
  2615. {0x7c,0x81e80000},
  2616. {0xf0,0x55},
  2617. {0x00,0x9de3bf58},
  2618. {0x04,0xc208224d},
  2619. {0x08,0x80a06000},
  2620. {0x0c,0x12800004},
  2621. {0x10,0x90067ffe},
  2622. {0x14,0xc020259c},
  2623. {0x18,0x3080006a},
  2624. {0x1c,0xac066002},
  2625. {0x20,0x80a20016},
  2626. {0x24,0x14800044},
  2627. {0x28,0x9e102000},
  2628. {0x2c,0x82020008},
  2629. {0x30,0x82004008},
  2630. {0x34,0xa1286002},
  2631. {0x38,0xa8062002},
  2632. {0x3c,0x92063ffe},
  2633. {0x40,0x80a24014},
  2634. {0x44,0x14800038},
  2635. {0x48,0x82064019},
  2636. {0x4c,0x82204008},
  2637. {0x50,0x98004001},
  2638. {0x54,0x98030001},
  2639. {0x58,0x9b3a201f},
  2640. {0x5c,0x96040009},
  2641. {0x60,0x952be002},
  2642. {0x64,0x03000019},
  2643. {0x68,0x9a234008},
  2644. {0x6c,0xae106080},
  2645. {0x70,0x972ae002},
  2646. {0x74,0x9402801e},
  2647. {0x78,0xa72b2002},
  2648. {0x7c,0xab33601f},
  2649. {0xf0,0x56},
  2650. {0x00,0x9602c017},
  2651. {0x04,0x9402bfb8},
  2652. {0x08,0xa4063fff},
  2653. {0x0c,0xa2062001},
  2654. {0x10,0x98067fff},
  2655. {0x14,0x82060018},
  2656. {0x18,0x82204009},
  2657. {0x1c,0x8204c001},
  2658. {0x20,0x80a24012},
  2659. {0x24,0x0680000b},
  2660. {0x28,0x9b286002},
  2661. {0x2c,0x80a24011},
  2662. {0x30,0x14800009},
  2663. {0x34,0x80a26000},
  2664. {0x38,0x80a2000c},
  2665. {0x3c,0x06800005},
  2666. {0x40,0x82066001},
  2667. {0x44,0x80a20001},
  2668. {0x48,0x24800014},
  2669. {0x4c,0x92026001},
  2670. {0x50,0x80a26000},
  2671. {0x54,0x2480000d},
  2672. {0x58,0xc2034017},
  2673. {0x5c,0xc2002308},
  2674. {0x60,0x80a04009},
  2675. {0x64,0x82603fff},
  2676. {0x68,0x80884015},
  2677. {0x6c,0x22800007},
  2678. {0x70,0xc2034017},
  2679. {0x74,0xc2002300},
  2680. {0x78,0x80a20001},
  2681. {0x7c,0x38800003},
  2682. {0xf0,0x57},
  2683. {0x00,0xc2034017},
  2684. {0x04,0xc202c000},
  2685. {0x08,0xc2228000},
  2686. {0x0c,0x9e03e001},
  2687. {0x10,0x9402a004},
  2688. {0x14,0x92026001},
  2689. {0x18,0x80a24014},
  2690. {0x1c,0x04bfffde},
  2691. {0x20,0x9602e004},
  2692. {0x24,0x90022001},
  2693. {0x28,0x80a20016},
  2694. {0x2c,0x04bfffc4},
  2695. {0x30,0xa004200c},
  2696. {0x34,0x9007bfb8},
  2697. {0x38,0x7ffff887},
  2698. {0x3c,0x92102010},
  2699. {0x40,0xd608224f},
  2700. {0x44,0xb00ae0ff},
  2701. {0x48,0xd808224d},
  2702. {0x4c,0x80a6000c},
  2703. {0x50,0x1480000b},
  2704. {0x54,0x9e102000},
  2705. {0x58,0x832e2002},
  2706. {0x5c,0x8200401e},
  2707. {0x60,0x9a007fb8},
  2708. {0x64,0xc2034000},
  2709. {0x68,0xb0062001},
  2710. {0x6c,0x9e03c001},
  2711. {0x70,0x80a6000c},
  2712. {0x74,0x04bffffc},
  2713. {0x78,0x9a036004},
  2714. {0x7c,0x820ae0ff},
  2715. {0xf0,0x58},
  2716. {0x00,0xda08224d},
  2717. {0x04,0x9a234001},
  2718. {0x08,0xc208224c},
  2719. {0x0c,0x9a036001},
  2720. {0x10,0x825bc001},
  2721. {0x14,0x9938601f},
  2722. {0x18,0x81832000},
  2723. {0x1c,0x01000000},
  2724. {0x20,0x01000000},
  2725. {0x24,0x01000000},
  2726. {0x28,0x8278400d},
  2727. {0x2c,0x9b38601f},
  2728. {0x30,0x9b336019},
  2729. {0x34,0x8200400d},
  2730. {0x38,0x83386007},
  2731. {0x3c,0xc220259c},
  2732. {0x40,0x81c7e008},
  2733. {0x44,0x81e80000},
  2734. {0x48,0x9de3bf98},
  2735. {0x4c,0xc2002588},
  2736. {0x50,0x80a06000},
  2737. {0x54,0x02800014},
  2738. {0x58,0x11000018},
  2739. {0x5c,0xc2002594},
  2740. {0x60,0x80a06000},
  2741. {0x64,0x12800004},
  2742. {0x68,0x90122340},
  2743. {0x6c,0x7ffffbec},
  2744. {0x70,0x01000000},
  2745. {0x74,0xda002588},
  2746. {0x78,0xc2002594},
  2747. {0x7c,0x82006001},
  2748. {0xf0,0x59},
  2749. {0x00,0x9a037fff},
  2750. {0x04,0xc2202594},
  2751. {0x08,0x7ffff97e},
  2752. {0x0c,0xda202588},
  2753. {0x10,0x13000018},
  2754. {0x14,0x92126340},
  2755. {0x18,0xc2002fc0},
  2756. {0x1c,0x9fc04000},
  2757. {0x20,0xd4002594},
  2758. {0x24,0x01000000},
  2759. {0x28,0x81c7e008},
  2760. {0x2c,0x81e80000},
  2761. {0x30,0xc2002460},
  2762. {0x34,0x80a06000},
  2763. {0x38,0x1280001e},
  2764. {0x3c,0xda002298},
  2765. {0x40,0xc2002588},
  2766. {0x44,0x80a06001},
  2767. {0x48,0x1280001b},
  2768. {0x4c,0x033fc200},
  2769. {0x50,0xc2102548},
  2770. {0x54,0x80886001},
  2771. {0x58,0x22800009},
  2772. {0x5c,0xc2002208},
  2773. {0x60,0xc2002170},
  2774. {0x64,0x80a06000},
  2775. {0x68,0x22800005},
  2776. {0x6c,0xc2002208},
  2777. {0x70,0xc0202598},
  2778. {0x74,0x1080000f},
  2779. {0x78,0x9a100001},
  2780. {0x7c,0x80a06000},
  2781. {0xf0,0x5a},
  2782. {0x00,0x22800009},
  2783. {0x04,0xc2002598},
  2784. {0x08,0xc2002558},
  2785. {0x0c,0x80a06000},
  2786. {0x10,0x32800005},
  2787. {0x14,0xc2002598},
  2788. {0x18,0xc0202598},
  2789. {0x1c,0x10800005},
  2790. {0x20,0xda002234},
  2791. {0x24,0x80a06000},
  2792. {0x28,0x22800002},
  2793. {0x2c,0xda00233c},
  2794. {0x30,0x033fc200},
  2795. {0x34,0x82106070},
  2796. {0x38,0x81c3e008},
  2797. {0x3c,0xda204000},
  2798. {0x40,0x9de3bf98},
  2799. {0x44,0xc2002588},
  2800. {0x48,0x80a06000},
  2801. {0x4c,0x02800010},
  2802. {0x50,0x11000018},
  2803. {0x54,0xd8002548},
  2804. {0x58,0x83332010},
  2805. {0x5c,0x80886001},
  2806. {0x60,0x22800010},
  2807. {0x64,0xc200258c},
  2808. {0x68,0xc2002558},
  2809. {0x6c,0x80a06000},
  2810. {0x70,0x3280000c},
  2811. {0x74,0xc200258c},
  2812. {0x78,0xc2002594},
  2813. {0x7c,0x80a06001},
  2814. {0xf0,0x5b},
  2815. {0x00,0x32800008},
  2816. {0x04,0xc200258c},
  2817. {0x08,0x11000018},
  2818. {0x0c,0x90122340},
  2819. {0x10,0xd0202590},
  2820. {0x14,0xc0202588},
  2821. {0x18,0x1080001a},
  2822. {0x1c,0xd2002594},
  2823. {0x20,0x80a06000},
  2824. {0x24,0x12800015},
  2825. {0x28,0x82102001},
  2826. {0x2c,0xda002554},
  2827. {0x30,0xc2002598},
  2828. {0x34,0x80a0400d},
  2829. {0x38,0x1a800007},
  2830. {0x3c,0x03000017},
  2831. {0x40,0x82102001},
  2832. {0x44,0xda20258c},
  2833. {0x48,0xc2202584},
  2834. {0x4c,0x1080002f},
  2835. {0x50,0xc0202598},
  2836. {0x54,0x808b2400},
  2837. {0x58,0x12800004},
  2838. {0x5c,0x82106240},
  2839. {0x60,0x03000017},
  2840. {0x64,0x82106100},
  2841. {0x68,0xc2202590},
  2842. {0x6c,0xd2002598},
  2843. {0x70,0x10800004},
  2844. {0x74,0xd0002590},
  2845. {0x78,0x10800024},
  2846. {0x7c,0xc2202584},
  2847. {0xf0,0x5c},
  2848. {0x00,0x7ffffb8f},
  2849. {0x04,0x01000000},
  2850. {0x08,0x13000018},
  2851. {0x0c,0xc2002fd0},
  2852. {0x10,0x92126200},
  2853. {0x14,0x9fc04000},
  2854. {0x18,0xd0002590},
  2855. {0x1c,0xc20026a0},
  2856. {0x20,0x82087dff},
  2857. {0x24,0xda08254e},
  2858. {0x28,0x80a36000},
  2859. {0x2c,0x12800006},
  2860. {0x30,0xc22026a0},
  2861. {0x34,0xc200218c},
  2862. {0x38,0x80a06000},
  2863. {0x3c,0x32800004},
  2864. {0x40,0xc220256c},
  2865. {0x44,0x82102080},
  2866. {0x48,0xc220256c},
  2867. {0x4c,0xc2002200},
  2868. {0x50,0x80a06000},
  2869. {0x54,0x32800008},
  2870. {0x58,0xc2002548},
  2871. {0x5c,0xda002548},
  2872. {0x60,0x83336010},
  2873. {0x64,0x80886001},
  2874. {0x68,0x22800006},
  2875. {0x6c,0x03000004},
  2876. {0x70,0xc2002548},
  2877. {0x74,0x1b000004},
  2878. {0x78,0x10800003},
  2879. {0x7c,0x8210400d},
  2880. {0xf0,0x5d},
  2881. {0x00,0x822b4001},
  2882. {0x04,0xc2202548},
  2883. {0x08,0x81c7e008},
  2884. {0x0c,0x81e80000},
  2885. {0x10,0x1500003f},
  2886. {0x14,0xd8002508},
  2887. {0x18,0x8212a300},
  2888. {0x1c,0x9a0b0001},
  2889. {0x20,0x808b3f00},
  2890. {0x24,0x02800015},
  2891. {0x28,0x901020a5},
  2892. {0x2c,0xc200254c},
  2893. {0x30,0x8210400d},
  2894. {0x34,0xc220254c},
  2895. {0x38,0x1b3fc000},
  2896. {0x3c,0xc2002500},
  2897. {0x40,0x960b000d},
  2898. {0x44,0x80a06028},
  2899. {0x48,0xc0202508},
  2900. {0x4c,0x0880000b},
  2901. {0x50,0x033fffc0},
  2902. {0x54,0x9a0b0001},
  2903. {0x58,0x03168000},
  2904. {0x5c,0x80a2c001},
  2905. {0x60,0x12800006},
  2906. {0x64,0x9412a3ff},
  2907. {0x68,0xc2002548},
  2908. {0x6c,0x8208400a},
  2909. {0x70,0x8210400d},
  2910. {0x74,0xc2202548},
  2911. {0x78,0x03000006},
  2912. {0x7c,0x81c063b4},
  2913. {0xf0,0x5e},
  2914. {0x00,0x01000000},
  2915. {0x04,0x01000000},
  2916. {0x08,0xda00247c},
  2917. {0x0c,0xc20022f8},
  2918. {0x10,0x8258400d},
  2919. {0x14,0x83306001},
  2920. {0x18,0x9a102000},
  2921. {0x1c,0x80a34001},
  2922. {0x20,0x1a800015},
  2923. {0x24,0x031fffdf},
  2924. {0x28,0x961063ff},
  2925. {0x2c,0x98036001},
  2926. {0x30,0x80a26008},
  2927. {0x34,0x04800006},
  2928. {0x38,0x9b2b6002},
  2929. {0x3c,0xc202000d},
  2930. {0x40,0x83306001},
  2931. {0x44,0x10800003},
  2932. {0x48,0x8208400b},
  2933. {0x4c,0xc202000d},
  2934. {0x50,0x82584009},
  2935. {0x54,0xc222000d},
  2936. {0x58,0xda00247c},
  2937. {0x5c,0xc20022f8},
  2938. {0x60,0x8258400d},
  2939. {0x64,0x83306001},
  2940. {0x68,0x80a30001},
  2941. {0x6c,0x0abffff0},
  2942. {0x70,0x9a10000c},
  2943. {0x74,0x81c3e008},
  2944. {0x78,0x01000000},
  2945. {0x7c,0x9de3bf98},
  2946. {0xf0,0x5f},
  2947. {0x00,0xe6002460},
  2948. {0x04,0x80a4e000},
  2949. {0x08,0x0280006d},
  2950. {0x0c,0x01000000},
  2951. {0x10,0xc2002588},
  2952. {0x14,0xda002594},
  2953. {0x18,0x9800400d},
  2954. {0x1c,0xc2002554},
  2955. {0x20,0x80a30001},
  2956. {0x24,0x12800066},
  2957. {0x28,0x01000000},
  2958. {0x2c,0xda002598},
  2959. {0x30,0xc200258c},
  2960. {0x34,0x8200400d},
  2961. {0x38,0x80a0400c},
  2962. {0x3c,0x02800004},
  2963. {0x40,0x80a36000},
  2964. {0x44,0x1280005e},
  2965. {0x48,0x01000000},
  2966. {0x4c,0xe208217e},
  2967. {0x50,0x808c60ff},
  2968. {0x54,0x9e102000},
  2969. {0x58,0x0280002e},
  2970. {0x5c,0x96102001},
  2971. {0x60,0xe408217f},
  2972. {0x64,0x13000019},
  2973. {0x68,0x94102001},
  2974. {0x6c,0x80a28012},
  2975. {0x70,0x14800020},
  2976. {0x74,0xa0102000},
  2977. {0x78,0x832ae002},
  2978. {0x7c,0x98006030},
  2979. {0xf0,0x60},
  2980. {0x00,0xac126080},
  2981. {0x04,0xaa126050},
  2982. {0x08,0xa81260b0},
  2983. {0x0c,0xd008217f},
  2984. {0x10,0xda030016},
  2985. {0x14,0x80a34013},
  2986. {0x18,0x26800013},
  2987. {0x1c,0x9402a001},
  2988. {0x20,0x80a2a001},
  2989. {0x24,0x22800007},
  2990. {0x28,0xc208217f},
  2991. {0x2c,0xc2030015},
  2992. {0x30,0x80a34001},
  2993. {0x34,0x2480000c},
  2994. {0x38,0x9402a001},
  2995. {0x3c,0xc208217f},
  2996. {0x40,0x80a28001},
  2997. {0x44,0x22800007},
  2998. {0x48,0xa0042001},
  2999. {0x4c,0xc2030014},
  3000. {0x50,0x80a34001},
  3001. {0x54,0x26800004},
  3002. {0x58,0x9402a001},
  3003. {0x5c,0xa0042001},
  3004. {0x60,0x9402a001},
  3005. {0x64,0x80a28008},
  3006. {0x68,0x04bfffea},
  3007. {0x6c,0x98032030},
  3008. {0x70,0x80a4000f},
  3009. {0x74,0x34800002},
  3010. {0x78,0x9e100010},
  3011. {0x7c,0x9602e001},
  3012. {0xf0,0x61},
  3013. {0x00,0x820c60ff},
  3014. {0x04,0x80a2c001},
  3015. {0x08,0x24bfffd9},
  3016. {0x0c,0x94102001},
  3017. {0x10,0x96102000},
  3018. {0x14,0xc20ae464},
  3019. {0x18,0x80a06000},
  3020. {0x1c,0x22800006},
  3021. {0x20,0x9602e001},
  3022. {0x24,0x80a3c001},
  3023. {0x28,0x34800007},
  3024. {0x2c,0xc20ae278},
  3025. {0x30,0x9602e001},
  3026. {0x34,0x80a2e003},
  3027. {0x38,0x24bffff8},
  3028. {0x3c,0xc20ae464},
  3029. {0x40,0x3080001f},
  3030. {0x44,0xda00256c},
  3031. {0x48,0x8258400d},
  3032. {0x4c,0x83306007},
  3033. {0x50,0xc220256c},
  3034. {0x54,0xe00ae468},
  3035. {0x58,0x80a42000},
  3036. {0x5c,0x02800018},
  3037. {0x60,0x01000000},
  3038. {0x64,0xda002574},
  3039. {0x68,0x82036001},
  3040. {0x6c,0x80a06001},
  3041. {0x70,0x12800005},
  3042. {0x74,0xc2202574},
  3043. {0x78,0x82036002},
  3044. {0x7c,0x10800010},
  3045. {0xf0,0x62},
  3046. {0x00,0xc2202574},
  3047. {0x04,0x82102001},
  3048. {0x08,0xc2202584},
  3049. {0x0c,0xd0002590},
  3050. {0x10,0x7fffff7e},
  3051. {0x14,0xd2002554},
  3052. {0x18,0xc2002588},
  3053. {0x1c,0x82004010},
  3054. {0x20,0xc2202588},
  3055. {0x24,0xda00258c},
  3056. {0x28,0xc2002554},
  3057. {0x2c,0x80a34001},
  3058. {0x30,0x18800003},
  3059. {0x34,0x82034010},
  3060. {0x38,0xc220258c},
  3061. {0x3c,0x81c7e008},
  3062. {0x40,0x81e80000},
  3063. {0x44,0x9de3bf98},
  3064. {0x48,0xc2002588},
  3065. {0x4c,0x80a06000},
  3066. {0x50,0x1280005f},
  3067. {0x54,0x01000000},
  3068. {0x58,0xc2002704},
  3069. {0x5c,0x82006001},
  3070. {0x60,0xda002310},
  3071. {0x64,0x80a0400d},
  3072. {0x68,0x0a800059},
  3073. {0x6c,0xc2202704},
  3074. {0x70,0xd800227c},
  3075. {0x74,0x80a32000},
  3076. {0x78,0x02800031},
  3077. {0x7c,0xc0202704},
  3078. {0xf0,0x63},
  3079. {0x00,0xda08217f},
  3080. {0x04,0xc200247c},
  3081. {0x08,0x965b4001},
  3082. {0x0c,0x03000007},
  3083. {0x10,0x821063ff},
  3084. {0x14,0x9b33200d},
  3085. {0x18,0xa2102000},
  3086. {0x1c,0x920b4001},
  3087. {0x20,0x80a4400b},
  3088. {0x24,0x900b0001},
  3089. {0x28,0x94102000},
  3090. {0x2c,0x1a800014},
  3091. {0x30,0xa0102000},
  3092. {0x34,0x03000018},
  3093. {0x38,0xa4106200},
  3094. {0x3c,0x9e106340},
  3095. {0x40,0x9a040010},
  3096. {0x44,0xc213400f},
  3097. {0x48,0x80a24001},
  3098. {0x4c,0xa2400011},
  3099. {0x50,0xc2134012},
  3100. {0x54,0x80a04008},
  3101. {0x58,0x0a800005},
  3102. {0x5c,0xa0042001},
  3103. {0x60,0x80a04009},
  3104. {0x64,0x08800004},
  3105. {0x68,0x80a4000b},
  3106. {0x6c,0x9402a001},
  3107. {0x70,0x80a4000b},
  3108. {0x74,0x0abffff4},
  3109. {0x78,0x9a040010},
  3110. {0x7c,0xa133201a},
  3111. {0xf0,0x64},
  3112. {0x00,0x80a44010},
  3113. {0x04,0x14800003},
  3114. {0x08,0x9a102001},
  3115. {0x0c,0x9a102000},
  3116. {0x10,0x80a28010},
  3117. {0x14,0x14800003},
  3118. {0x18,0x82102001},
  3119. {0x1c,0x82102000},
  3120. {0x20,0x80934001},
  3121. {0x24,0x22800007},
  3122. {0x28,0xc2002274},
  3123. {0x2c,0x033fc180},
  3124. {0x30,0x1b008000},
  3125. {0x34,0x8210603c},
  3126. {0x38,0xda204000},
  3127. {0x3c,0xc2002274},
  3128. {0x40,0x80a06000},
  3129. {0x44,0x02800022},
  3130. {0x48,0xa2102000},
  3131. {0x4c,0xc20023d4},
  3132. {0x50,0x80a44001},
  3133. {0x54,0xa4102000},
  3134. {0x58,0x1a800016},
  3135. {0x5c,0xa0102000},
  3136. {0x60,0xc200247c},
  3137. {0x64,0x80a40001},
  3138. {0x68,0x3a80000f},
  3139. {0x6c,0xa404a001},
  3140. {0x70,0x7ffff884},
  3141. {0x74,0x90100010},
  3142. {0x78,0x92100008},
  3143. {0x7c,0x7ffff81d},
  3144. {0xf0,0x65},
  3145. {0x00,0x90100012},
  3146. {0x04,0x0300003f},
  3147. {0x08,0xda002274},
  3148. {0x0c,0x821063ff},
  3149. {0x10,0x9a0b4001},
  3150. {0x14,0x80a2000d},
  3151. {0x18,0xa2400011},
  3152. {0x1c,0x10bffff1},
  3153. {0x20,0xa0042001},
  3154. {0x24,0xc20023d4},
  3155. {0x28,0x10bfffec},
  3156. {0x2c,0x80a48001},
  3157. {0x30,0xc2102274},
  3158. {0x34,0x80a44001},
  3159. {0x38,0x08800005},
  3160. {0x3c,0x033fc180},
  3161. {0x40,0x1b004000},
  3162. {0x44,0x8210603c},
  3163. {0x48,0xda204000},
  3164. {0x4c,0x81c7e008},
  3165. {0x50,0x81e80000},
  3166. {0x54,0x9de3bf98},
  3167. {0x58,0xda002310},
  3168. {0x5c,0x80a36000},
  3169. {0x60,0x0280004f},
  3170. {0x64,0x01000000},
  3171. {0x68,0xc200254c},
  3172. {0x6c,0x80886100},
  3173. {0x70,0x1280004b},
  3174. {0x74,0x01000000},
  3175. {0x78,0xc2002700},
  3176. {0x7c,0x82006001},
  3177. {0xf0,0x66},
  3178. {0x00,0x80a0400d},
  3179. {0x04,0x0a800046},
  3180. {0x08,0xc2202700},
  3181. {0x0c,0xa4102000},
  3182. {0x10,0xc20023d4},
  3183. {0x14,0x80a48001},
  3184. {0x18,0xc0202700},
  3185. {0x1c,0xa2102000},
  3186. {0x20,0x1a800027},
  3187. {0x24,0xa72c6002},
  3188. {0x28,0xc204e364},
  3189. {0x2c,0x80a06000},
  3190. {0x30,0x0280001f},
  3191. {0x34,0xa0102000},
  3192. {0x38,0xc208217e},
  3193. {0x3c,0x80a40001},
  3194. {0x40,0x1680001b},
  3195. {0x44,0x15000018},
  3196. {0x48,0xc2002548},
  3197. {0x4c,0x80886020},
  3198. {0x50,0xc20c2380},
  3199. {0x54,0x9412a340},
  3200. {0x58,0x90100011},
  3201. {0x5c,0x12800006},
  3202. {0x60,0x920860ff},
  3203. {0x64,0x15000018},
  3204. {0x68,0x920860ff},
  3205. {0x6c,0x9412a200},
  3206. {0x70,0x90100011},
  3207. {0x74,0x7ffff808},
  3208. {0x78,0xa0042001},
  3209. {0x7c,0xc204e364},
  3210. {0xf0,0x67},
  3211. {0x00,0xda002348},
  3212. {0x04,0x98020001},
  3213. {0x08,0x82034001},
  3214. {0x0c,0x80a20001},
  3215. {0x10,0x38bfffea},
  3216. {0x14,0xa404a001},
  3217. {0x18,0x80a3000d},
  3218. {0x1c,0x3abfffe8},
  3219. {0x20,0xc208217e},
  3220. {0x24,0x10bfffe5},
  3221. {0x28,0xa404a001},
  3222. {0x2c,0xa2046001},
  3223. {0x30,0xc20023d4},
  3224. {0x34,0x10bfffdb},
  3225. {0x38,0x80a44001},
  3226. {0x3c,0xd80026fc},
  3227. {0x40,0x80930012},
  3228. {0x44,0x1280000a},
  3229. {0x48,0x80a4a000},
  3230. {0x4c,0xda002548},
  3231. {0x50,0x83336005},
  3232. {0x54,0x82086001},
  3233. {0x58,0x82186001},
  3234. {0x5c,0x83286005},
  3235. {0x60,0x9a0b7fdf},
  3236. {0x64,0x9a134001},
  3237. {0x68,0xda202548},
  3238. {0x6c,0x12800004},
  3239. {0x70,0x82032001},
  3240. {0x74,0x10800003},
  3241. {0x78,0xc02026fc},
  3242. {0x7c,0xc22026fc},
  3243. {0xf0,0x68},
  3244. {0x00,0xc20026fc},
  3245. {0x04,0x80a06002},
  3246. {0x08,0x04800005},
  3247. {0x0c,0x1b000040},
  3248. {0x10,0xc200254c},
  3249. {0x14,0x8210400d},
  3250. {0x18,0xc220254c},
  3251. {0x1c,0x81c7e008},
  3252. {0x20,0x81e80000},
  3253. {0x24,0x9de3bf58},
  3254. {0x28,0xc2002548},
  3255. {0x2c,0x8330600c},
  3256. {0x30,0x80886001},
  3257. {0x34,0x1280006d},
  3258. {0x38,0x01000000},
  3259. {0x3c,0xfa002500},
  3260. {0x40,0xc20021f4},
  3261. {0x44,0x80a74001},
  3262. {0x48,0x18800068},
  3263. {0x4c,0x01000000},
  3264. {0x50,0xc200254c},
  3265. {0x54,0x8330600b},
  3266. {0x58,0x82086001},
  3267. {0x5c,0x80a00001},
  3268. {0x60,0x9a603fff},
  3269. {0x64,0x9403400d},
  3270. {0x68,0xc252a210},
  3271. {0x6c,0x80a06000},
  3272. {0x70,0x0280005e},
  3273. {0x74,0x8207bfb8},
  3274. {0x78,0xb810200f},
  3275. {0x7c,0xc0204000},
  3276. {0xf0,0x69},
  3277. {0x00,0xb8873fff},
  3278. {0x04,0x1cbffffe},
  3279. {0x08,0x82006004},
  3280. {0x0c,0xb0102001},
  3281. {0x10,0xc2002300},
  3282. {0x14,0x80a60001},
  3283. {0x18,0x1880003b},
  3284. {0x1c,0x03000019},
  3285. {0x20,0x82106080},
  3286. {0x24,0x96006030},
  3287. {0x28,0xb4102001},
  3288. {0x2c,0xc2002308},
  3289. {0x30,0x80a68001},
  3290. {0x34,0x38800030},
  3291. {0x38,0xb0062001},
  3292. {0x3c,0xb202e004},
  3293. {0x40,0xfa52a210},
  3294. {0x44,0xc2064000},
  3295. {0x48,0x80a0401d},
  3296. {0x4c,0x36800025},
  3297. {0x50,0xb406a001},
  3298. {0x54,0x832ea018},
  3299. {0x58,0xbb2e2010},
  3300. {0x5c,0x8200401d},
  3301. {0x60,0x9e006001},
  3302. {0x64,0xb8102000},
  3303. {0x68,0x98102001},
  3304. {0x6c,0xb607bfb8},
  3305. {0x70,0xbb2f2002},
  3306. {0x74,0xc20f6838},
  3307. {0x78,0x80a68001},
  3308. {0x7c,0x1280000f},
  3309. {0xf0,0x6a},
  3310. {0x00,0xb8072001},
  3311. {0x04,0xc20f6839},
  3312. {0x08,0x80a60001},
  3313. {0x0c,0x3280000c},
  3314. {0x10,0xc2176838},
  3315. {0x14,0xd826c000},
  3316. {0x18,0xc217683a},
  3317. {0x1c,0x80a061fe},
  3318. {0x20,0x38800010},
  3319. {0x24,0xb406a001},
  3320. {0x28,0xc2076838},
  3321. {0x2c,0x82006001},
  3322. {0x30,0x1080000b},
  3323. {0x34,0xc2276838},
  3324. {0x38,0xc2176838},
  3325. {0x3c,0x80a06000},
  3326. {0x40,0x12800005},
  3327. {0x44,0x80a7200f},
  3328. {0x48,0xd826c000},
  3329. {0x4c,0x10800004},
  3330. {0x50,0xde276838},
  3331. {0x54,0x08bfffe7},
  3332. {0x58,0xb606e004},
  3333. {0x5c,0xb406a001},
  3334. {0x60,0xc2002308},
  3335. {0x64,0x80a68001},
  3336. {0x68,0x08bfffd6},
  3337. {0x6c,0xb2066004},
  3338. {0x70,0xb0062001},
  3339. {0x74,0xc2002300},
  3340. {0x78,0x80a60001},
  3341. {0x7c,0x08bfffcb},
  3342. {0xf0,0x6b},
  3343. {0x00,0x9602e030},
  3344. {0x04,0xb4102000},
  3345. {0x08,0xb8102000},
  3346. {0x0c,0xb607bff8},
  3347. {0x10,0xbb2f2002},
  3348. {0x14,0x8207401b},
  3349. {0x18,0xc2007fc0},
  3350. {0x1c,0x80a06000},
  3351. {0x20,0x32800004},
  3352. {0x24,0xfa17683a},
  3353. {0x28,0x10800005},
  3354. {0x2c,0xc0276838},
  3355. {0x30,0xc20b63cc},
  3356. {0x34,0x80a74001},
  3357. {0x38,0xb466bfff},
  3358. {0x3c,0xb8072001},
  3359. {0x40,0x80a7200f},
  3360. {0x44,0x08bffff4},
  3361. {0x48,0xbb2f2002},
  3362. {0x4c,0xc20b63ce},
  3363. {0x50,0x80a68001},
  3364. {0x54,0x08800005},
  3365. {0x58,0x3b000200},
  3366. {0x5c,0xc200254c},
  3367. {0x60,0x8210401d},
  3368. {0x64,0xc220254c},
  3369. {0x68,0x81c7e008},
  3370. {0x6c,0x81e80000},
  3371. {0x70,0x9de3bf98},
  3372. {0x74,0xd8002200},
  3373. {0x78,0x80a32000},
  3374. {0x7c,0x1280000a},
  3375. {0xf0,0x6c},
  3376. {0x00,0x03000019},
  3377. {0x04,0xc2002548},
  3378. {0x08,0x82087ffb},
  3379. {0x0c,0xc2202548},
  3380. {0x10,0x033fc180},
  3381. {0x14,0x8210602c},
  3382. {0x18,0xc0204000},
  3383. {0x1c,0x1080004f},
  3384. {0x20,0xc02026e8},
  3385. {0x24,0x82106080},
  3386. {0x28,0xc0202504},
  3387. {0x2c,0x9e006030},
  3388. {0x30,0xb2102001},
  3389. {0x34,0x10800016},
  3390. {0x38,0xda102238},
  3391. {0x3c,0xf0002308},
  3392. {0x40,0x80a6c018},
  3393. {0x44,0x38800011},
  3394. {0x48,0xb2066001},
  3395. {0x4c,0xf410223a},
  3396. {0x50,0xba03e004},
  3397. {0x54,0xc2074000},
  3398. {0x58,0xb606e001},
  3399. {0x5c,0xba076004},
  3400. {0x60,0x80a0401a},
  3401. {0x64,0x04800005},
  3402. {0x68,0xb820401a},
  3403. {0x6c,0xc2002504},
  3404. {0x70,0x8200401c},
  3405. {0x74,0xc2202504},
  3406. {0x78,0x80a6c018},
  3407. {0x7c,0x28bffff7},
  3408. {0xf0,0x6d},
  3409. {0x00,0xc2074000},
  3410. {0x04,0xb2066001},
  3411. {0x08,0x9e03e030},
  3412. {0x0c,0x80a36000},
  3413. {0x10,0x32800003},
  3414. {0x14,0x80a6400d},
  3415. {0x18,0x80a6400c},
  3416. {0x1c,0x18800004},
  3417. {0x20,0x80a66010},
  3418. {0x24,0x08bfffe6},
  3419. {0x28,0xb6102001},
  3420. {0x2c,0xfa10223e},
  3421. {0x30,0xc2002504},
  3422. {0x34,0x80a0401d},
  3423. {0x38,0x3480000a},
  3424. {0x3c,0xc2002548},
  3425. {0x40,0xfa10223c},
  3426. {0x44,0x80a76000},
  3427. {0x48,0x2280000b},
  3428. {0x4c,0xc2002548},
  3429. {0x50,0xc2082517},
  3430. {0x54,0x80a0401d},
  3431. {0x58,0x0a800007},
  3432. {0x5c,0xc2002548},
  3433. {0x60,0x80886008},
  3434. {0x64,0x22800008},
  3435. {0x68,0xc20026e8},
  3436. {0x6c,0x10800008},
  3437. {0x70,0xc02026e8},
  3438. {0x74,0x80886008},
  3439. {0x78,0x22800005},
  3440. {0x7c,0xc02026e8},
  3441. {0xf0,0x6e},
  3442. {0x00,0xc20026e8},
  3443. {0x04,0x82006001},
  3444. {0x08,0xc22026e8},
  3445. {0x0c,0xfa0026e8},
  3446. {0x10,0xc2002290},
  3447. {0x14,0x80a74001},
  3448. {0x18,0x0880000b},
  3449. {0x1c,0xfa002548},
  3450. {0x20,0x83376003},
  3451. {0x24,0x82086001},
  3452. {0x28,0x82186001},
  3453. {0x2c,0x83286002},
  3454. {0x30,0xba0f7ffb},
  3455. {0x34,0xba174001},
  3456. {0x38,0xfa202548},
  3457. {0x3c,0xc02026e8},
  3458. {0x40,0xfa002548},
  3459. {0x44,0xbb376002},
  3460. {0x48,0x033fc180},
  3461. {0x4c,0xba0f6001},
  3462. {0x50,0x8210602c},
  3463. {0x54,0xfa204000},
  3464. {0x58,0x81c7e008},
  3465. {0x5c,0x81e80000},
  3466. {0x60,0x9de3bf70},
  3467. {0x64,0x1b00003f},
  3468. {0x68,0xc2002350},
  3469. {0x6c,0x9a1363ff},
  3470. {0x70,0xba08400d},
  3471. {0x74,0xa4102001},
  3472. {0x78,0xda002300},
  3473. {0x7c,0x80a4800d},
  3474. {0xf0,0x6f},
  3475. {0x00,0x18800055},
  3476. {0x04,0xa3306010},
  3477. {0x08,0xae10200c},
  3478. {0x0c,0xac10200c},
  3479. {0x10,0xaa102000},
  3480. {0x14,0xa8102000},
  3481. {0x18,0xa6102000},
  3482. {0x1c,0x80a46000},
  3483. {0x20,0x0280002c},
  3484. {0x24,0xa0102000},
  3485. {0x28,0x03000019},
  3486. {0x2c,0x96106080},
  3487. {0x30,0x92102000},
  3488. {0x34,0x9807bfd0},
  3489. {0x38,0x8204c009},
  3490. {0x3c,0xda086440},
  3491. {0x40,0x8205800d},
  3492. {0x44,0x80a36000},
  3493. {0x48,0x02800008},
  3494. {0x4c,0x83286002},
  3495. {0x50,0xc200400b},
  3496. {0x54,0xc2230000},
  3497. {0x58,0x92026001},
  3498. {0x5c,0x80a2600b},
  3499. {0x60,0x04bffff6},
  3500. {0x64,0x98032004},
  3501. {0x68,0x7ffff57b},
  3502. {0x6c,0x9007bfd0},
  3503. {0x70,0x80a74011},
  3504. {0x74,0x1480000b},
  3505. {0x78,0x9210001d},
  3506. {0x7c,0x832f6002},
  3507. {0xf0,0x70},
  3508. {0x00,0x8200401e},
  3509. {0x04,0x9a007fd0},
  3510. {0x08,0xc2034000},
  3511. {0x0c,0x92026001},
  3512. {0x10,0xa0040001},
  3513. {0x14,0x80a24011},
  3514. {0x18,0x04bffffc},
  3515. {0x1c,0x9a036004},
  3516. {0x20,0x8224401d},
  3517. {0x24,0x82006001},
  3518. {0x28,0x9b3c201f},
  3519. {0x2c,0x81836000},
  3520. {0x30,0x01000000},
  3521. {0x34,0x01000000},
  3522. {0x38,0x01000000},
  3523. {0x3c,0xa07c0001},
  3524. {0x40,0xc25021ae},
  3525. {0x44,0x80a40001},
  3526. {0x48,0x26800002},
  3527. {0x4c,0xa0100001},
  3528. {0x50,0x92102000},
  3529. {0x54,0x15000019},
  3530. {0x58,0x82050009},
  3531. {0x5c,0xda086440},
  3532. {0x60,0x8205c00d},
  3533. {0x64,0x92026001},
  3534. {0x68,0x9612a080},
  3535. {0x6c,0x80a36000},
  3536. {0x70,0x0280000e},
  3537. {0x74,0x99286002},
  3538. {0x78,0xc20023c8},
  3539. {0x7c,0x83306011},
  3540. {0xf0,0x71},
  3541. {0x00,0xda03000b},
  3542. {0x04,0x80886001},
  3543. {0x08,0x02800005},
  3544. {0x0c,0x9a234010},
  3545. {0x10,0xc20ca2af},
  3546. {0x14,0x825b4001},
  3547. {0x18,0x9b386007},
  3548. {0x1c,0x80a2600b},
  3549. {0x20,0x04bfffee},
  3550. {0x24,0xda23000b},
  3551. {0x28,0xaa056001},
  3552. {0x2c,0xa604e00c},
  3553. {0x30,0x80a56001},
  3554. {0x34,0x04bfffba},
  3555. {0x38,0xa805200c},
  3556. {0x3c,0xa404a001},
  3557. {0x40,0xc2002300},
  3558. {0x44,0x80a48001},
  3559. {0x48,0xac05a00c},
  3560. {0x4c,0x08bfffb1},
  3561. {0x50,0xae05e00c},
  3562. {0x54,0x81c7e008},
  3563. {0x58,0x81e80000},
  3564. {0x5c,0x9de3bf58},
  3565. {0x60,0xe2502458},
  3566. {0x64,0x80a46000},
  3567. {0x68,0x02800058},
  3568. {0x6c,0x01000000},
  3569. {0x70,0xc208217f},
  3570. {0x74,0x80a44001},
  3571. {0x78,0x16800054},
  3572. {0x7c,0xa0102001},
  3573. {0xf0,0x72},
  3574. {0x00,0xc208217e},
  3575. {0x04,0x80a40001},
  3576. {0x08,0x14800050},
  3577. {0x0c,0xe450245a},
  3578. {0x10,0x96102001},
  3579. {0x14,0xc208217f},
  3580. {0x18,0x80a2c001},
  3581. {0x1c,0x1480000f},
  3582. {0x20,0x03000019},
  3583. {0x24,0x9b2c2002},
  3584. {0x28,0x82106080},
  3585. {0x2c,0x9a034001},
  3586. {0x30,0x9a036030},
  3587. {0x34,0x9807bfb8},
  3588. {0x38,0xc2034000},
  3589. {0x3c,0xc2230000},
  3590. {0x40,0x9602e001},
  3591. {0x44,0xc208217f},
  3592. {0x48,0x80a2c001},
  3593. {0x4c,0x9a036030},
  3594. {0x50,0x04bffffa},
  3595. {0x54,0x98032004},
  3596. {0x58,0x9007bfb8},
  3597. {0x5c,0x7ffff51e},
  3598. {0x60,0xd208217f},
  3599. {0x64,0x96100012},
  3600. {0x68,0x80a48011},
  3601. {0x6c,0x1480000b},
  3602. {0x70,0x94102000},
  3603. {0x74,0x832ca002},
  3604. {0x78,0x8200401e},
  3605. {0x7c,0x9a007fb8},
  3606. {0xf0,0x73},
  3607. {0x00,0xc2034000},
  3608. {0x04,0x9602e001},
  3609. {0x08,0x94028001},
  3610. {0x0c,0x80a2c011},
  3611. {0x10,0x04bffffc},
  3612. {0x14,0x9a036004},
  3613. {0x18,0x82244012},
  3614. {0x1c,0x82006001},
  3615. {0x20,0x9b3aa01f},
  3616. {0x24,0x81836000},
  3617. {0x28,0x01000000},
  3618. {0x2c,0x01000000},
  3619. {0x30,0x01000000},
  3620. {0x34,0x947a8001},
  3621. {0x38,0xc25021ac},
  3622. {0x3c,0x80a28001},
  3623. {0x40,0x26800002},
  3624. {0x44,0x94100001},
  3625. {0x48,0x96102001},
  3626. {0x4c,0xc208217f},
  3627. {0x50,0x80a2c001},
  3628. {0x54,0x14800018},
  3629. {0x58,0x9b2c2002},
  3630. {0x5c,0x03000019},
  3631. {0x60,0x92106080},
  3632. {0x64,0x98036030},
  3633. {0x68,0xc2030009},
  3634. {0x6c,0x9a20400a},
  3635. {0x70,0xda230009},
  3636. {0x74,0xc20023c8},
  3637. {0x78,0x83306012},
  3638. {0x7c,0x80886001},
  3639. {0xf0,0x74},
  3640. {0x00,0x02800009},
  3641. {0x04,0x9602e001},
  3642. {0x08,0xc20c22af},
  3643. {0x0c,0x825b4001},
  3644. {0x10,0x9b38601f},
  3645. {0x14,0x9b336019},
  3646. {0x18,0x8200400d},
  3647. {0x1c,0x83386007},
  3648. {0x20,0xc2230009},
  3649. {0x24,0xc208217f},
  3650. {0x28,0x80a2c001},
  3651. {0x2c,0x04bfffef},
  3652. {0x30,0x98032030},
  3653. {0x34,0xa0042001},
  3654. {0x38,0xc208217e},
  3655. {0x3c,0x80a40001},
  3656. {0x40,0x04bfffb5},
  3657. {0x44,0x96102001},
  3658. {0x48,0x81c7e008},
  3659. {0x4c,0x81e80000},
  3660. {0x50,0x9de3bf98},
  3661. {0x54,0xfa5023c6},
  3662. {0x58,0x80a76000},
  3663. {0x5c,0x0280003c},
  3664. {0x60,0xb0102001},
  3665. {0x64,0xc208217e},
  3666. {0x68,0x80a60001},
  3667. {0x6c,0x14800038},
  3668. {0x70,0x19000019},
  3669. {0x74,0x82132080},
  3670. {0x78,0x9a10001d},
  3671. {0x7c,0x9e006004},
  3672. {0xf0,0x75},
  3673. {0x00,0xfa08217f},
  3674. {0x04,0x80a76000},
  3675. {0x08,0xb2102000},
  3676. {0x0c,0x0280002b},
  3677. {0x10,0x82102000},
  3678. {0x14,0xb810001d},
  3679. {0x18,0xf45023c4},
  3680. {0x1c,0xba03e030},
  3681. {0x20,0xf6074000},
  3682. {0x24,0x80a6c01a},
  3683. {0x28,0x06800004},
  3684. {0x2c,0xba076030},
  3685. {0x30,0xb206401b},
  3686. {0x34,0x82006001},
  3687. {0x38,0xb8873fff},
  3688. {0x3c,0x32bffffa},
  3689. {0x40,0xf6074000},
  3690. {0x44,0x80a06000},
  3691. {0x48,0x2280001d},
  3692. {0x4c,0xb0062001},
  3693. {0x50,0x973e601f},
  3694. {0x54,0x8182e000},
  3695. {0x58,0x01000000},
  3696. {0x5c,0x01000000},
  3697. {0x60,0x01000000},
  3698. {0x64,0x827e4001},
  3699. {0x68,0x8258400d},
  3700. {0x6c,0xbb38601f},
  3701. {0x70,0xbb376016},
  3702. {0x74,0x8200401d},
  3703. {0x78,0xb8102001},
  3704. {0x7c,0xfa08217f},
  3705. {0xf0,0x76},
  3706. {0x00,0x80a7001d},
  3707. {0x04,0x1480000d},
  3708. {0x08,0xb338600a},
  3709. {0x0c,0x832e2002},
  3710. {0x10,0xba006030},
  3711. {0x14,0xb6132080},
  3712. {0x18,0xc207401b},
  3713. {0x1c,0x82204019},
  3714. {0x20,0xc227401b},
  3715. {0x24,0xb8072001},
  3716. {0x28,0xc208217f},
  3717. {0x2c,0x80a70001},
  3718. {0x30,0x04bffffa},
  3719. {0x34,0xba076030},
  3720. {0x38,0xb0062001},
  3721. {0x3c,0xc208217e},
  3722. {0x40,0x80a60001},
  3723. {0x44,0x04bfffcf},
  3724. {0x48,0x9e03e004},
  3725. {0x4c,0x81c7e008},
  3726. {0x50,0x81e80000},
  3727. {0x54,0xc2082573},
  3728. {0x58,0xda00256c},
  3729. {0x5c,0x82006001},
  3730. {0x60,0xd808257f},
  3731. {0x64,0x9a5b4001},
  3732. {0x68,0x98032001},
  3733. {0x6c,0x81800000},
  3734. {0x70,0x01000000},
  3735. {0x74,0x01000000},
  3736. {0x78,0x01000000},
  3737. {0x7c,0x9a73400c},
  3738. {0xf0,0x77},
  3739. {0x00,0xda20256c},
  3740. {0x04,0x96102000},
  3741. {0x08,0x832ae002},
  3742. {0x0c,0xd800256c},
  3743. {0x10,0xda1063b6},
  3744. {0x14,0x9a5b400c},
  3745. {0x18,0x9b336007},
  3746. {0x1c,0x9602e001},
  3747. {0x20,0x80a2e003},
  3748. {0x24,0x04bffff9},
  3749. {0x28,0xda206520},
  3750. {0x2c,0xc20023c0},
  3751. {0x30,0x80a06000},
  3752. {0x34,0x02800007},
  3753. {0x38,0x82103000},
  3754. {0x3c,0xc2002200},
  3755. {0x40,0x80a06000},
  3756. {0x44,0x22800005},
  3757. {0x48,0xc200255c},
  3758. {0x4c,0x82103000},
  3759. {0x50,0xc220252c},
  3760. {0x54,0xc200255c},
  3761. {0x58,0x80a06000},
  3762. {0x5c,0x02800005},
  3763. {0x60,0xc2002288},
  3764. {0x64,0x9b306001},
  3765. {0x68,0x83306002},
  3766. {0x6c,0x8200400d},
  3767. {0x70,0xc220251c},
  3768. {0x74,0x03000007},
  3769. {0x78,0x81c0629c},
  3770. {0x7c,0x01000000},
  3771. {0xf0,0x78},
  3772. {0x00,0x01000000},
  3773. {0x04,0x9de3bf98},
  3774. {0x08,0xc2002548},
  3775. {0x0c,0x80886100},
  3776. {0x10,0xac102000},
  3777. {0x14,0x128000cf},
  3778. {0x18,0xa6102000},
  3779. {0x1c,0xc20026f4},
  3780. {0x20,0x80a06000},
  3781. {0x24,0x02800004},
  3782. {0x28,0xa2102001},
  3783. {0x2c,0x82007fff},
  3784. {0x30,0xc22026f4},
  3785. {0x34,0xc2002300},
  3786. {0x38,0x80a44001},
  3787. {0x3c,0x388000a9},
  3788. {0x40,0xda002530},
  3789. {0x44,0xae10200c},
  3790. {0x48,0xa4102001},
  3791. {0x4c,0xc2002308},
  3792. {0x50,0x80a48001},
  3793. {0x54,0x18800092},
  3794. {0x58,0x9b2de002},
  3795. {0x5c,0x03000050},
  3796. {0x60,0xaa044001},
  3797. {0x64,0xa8036004},
  3798. {0x68,0xc2002514},
  3799. {0x6c,0x80a06009},
  3800. {0x70,0x1880009b},
  3801. {0x74,0x03000019},
  3802. {0x78,0x82106080},
  3803. {0x7c,0xda050001},
  3804. {0xf0,0x79},
  3805. {0x00,0xc2002474},
  3806. {0x04,0x80a34001},
  3807. {0x08,0x0680007f},
  3808. {0x0c,0x03000040},
  3809. {0x10,0x90100012},
  3810. {0x14,0x7ffff846},
  3811. {0x18,0x92100011},
  3812. {0x1c,0x80a22000},
  3813. {0x20,0x02800079},
  3814. {0x24,0x03000040},
  3815. {0x28,0xc2002ff0},
  3816. {0x2c,0x80a06000},
  3817. {0x30,0x2280000a},
  3818. {0x34,0xc2002fe0},
  3819. {0x38,0x90100012},
  3820. {0x3c,0x9fc04000},
  3821. {0x40,0x92100011},
  3822. {0x44,0xc200259c},
  3823. {0x48,0x80a06000},
  3824. {0x4c,0x1280006e},
  3825. {0x50,0x03000040},
  3826. {0x54,0xc2002fe0},
  3827. {0x58,0x80a06000},
  3828. {0x5c,0x2280000b},
  3829. {0x60,0xc2002ff4},
  3830. {0x64,0x90100012},
  3831. {0x68,0x92100011},
  3832. {0x6c,0x9fc04000},
  3833. {0x70,0xd4002470},
  3834. {0x74,0xc200259c},
  3835. {0x78,0x80a06000},
  3836. {0x7c,0x12800062},
  3837. {0xf0,0x7a},
  3838. {0x00,0x03000040},
  3839. {0x04,0xc2002ff4},
  3840. {0x08,0x80a06000},
  3841. {0x0c,0x02800006},
  3842. {0x10,0xa0102000},
  3843. {0x14,0x90100012},
  3844. {0x18,0x9fc04000},
  3845. {0x1c,0x92100011},
  3846. {0x20,0xe000259c},
  3847. {0x24,0x90100012},
  3848. {0x28,0x92100011},
  3849. {0x2c,0x94100010},
  3850. {0x30,0x7ffff869},
  3851. {0x34,0xd6002470},
  3852. {0x38,0x80a22000},
  3853. {0x3c,0x02800052},
  3854. {0x40,0x03000040},
  3855. {0x44,0xc2002fe0},
  3856. {0x48,0x80a06000},
  3857. {0x4c,0x02800007},
  3858. {0x50,0x90100012},
  3859. {0x54,0x92100011},
  3860. {0x58,0x9fc04000},
  3861. {0x5c,0x94102100},
  3862. {0x60,0x10800004},
  3863. {0x64,0x94100010},
  3864. {0x68,0xc020259c},
  3865. {0x6c,0x94100010},
  3866. {0x70,0x90100012},
  3867. {0x74,0x92100011},
  3868. {0x78,0x7ffff857},
  3869. {0x7c,0x96102100},
  3870. {0xf0,0x7b},
  3871. {0x00,0x80a22000},
  3872. {0x04,0x22800011},
  3873. {0x08,0xc2002514},
  3874. {0x0c,0xc200259c},
  3875. {0x10,0x80a06000},
  3876. {0x14,0x3280000d},
  3877. {0x18,0xc2002514},
  3878. {0x1c,0xc2002280},
  3879. {0x20,0xd8002514},
  3880. {0x24,0xc22026f4},
  3881. {0x28,0x9b2ca010},
  3882. {0x2c,0x832b2002},
  3883. {0x30,0x9a034011},
  3884. {0x34,0xda206720},
  3885. {0x38,0x98032001},
  3886. {0x3c,0xd8202514},
  3887. {0x40,0x10800006},
  3888. {0x44,0xac05a001},
  3889. {0x48,0x9b286002},
  3890. {0x4c,0xea236720},
  3891. {0x50,0x82006001},
  3892. {0x54,0xc2202514},
  3893. {0x58,0xc2002514},
  3894. {0x5c,0x80a0600a},
  3895. {0x60,0x12800029},
  3896. {0x64,0x03000040},
  3897. {0x68,0x03000019},
  3898. {0x6c,0x9e106080},
  3899. {0x70,0xe6002720},
  3900. {0x74,0x90102001},
  3901. {0x78,0x932a2002},
  3902. {0x7c,0xd4026720},
  3903. {0xf0,0x7c},
  3904. {0x00,0x980aafff},
  3905. {0x04,0x960cefff},
  3906. {0x08,0x8203000c},
  3907. {0x0c,0x9a02c00b},
  3908. {0x10,0x8200400c},
  3909. {0x14,0x9a03400b},
  3910. {0x18,0x9932a010},
  3911. {0x1c,0x980b2fff},
  3912. {0x20,0x9734e010},
  3913. {0x24,0x83286002},
  3914. {0x28,0x8200400c},
  3915. {0x2c,0x960aefff},
  3916. {0x30,0x9b2b6002},
  3917. {0x34,0x83286002},
  3918. {0x38,0x9a03400b},
  3919. {0x3c,0xd800400f},
  3920. {0x40,0x9b2b6002},
  3921. {0x44,0xc203400f},
  3922. {0x48,0x80a30001},
  3923. {0x4c,0x36800004},
  3924. {0x50,0xd422671c},
  3925. {0x54,0xe622671c},
  3926. {0x58,0xa610000a},
  3927. {0x5c,0x90022001},
  3928. {0x60,0xda002514},
  3929. {0x64,0x80a2000d},
  3930. {0x68,0x2abfffe5},
  3931. {0x6c,0x932a2002},
  3932. {0x70,0x832b6002},
  3933. {0x74,0xc0206720},
  3934. {0x78,0x82037fff},
  3935. {0x7c,0xc2202514},
  3936. {0xf0,0x7d},
  3937. {0x00,0x03000040},
  3938. {0x04,0xaa054001},
  3939. {0x08,0xa404a001},
  3940. {0x0c,0xc2002308},
  3941. {0x10,0x80a48001},
  3942. {0x14,0x08bfff75},
  3943. {0x18,0xa8052004},
  3944. {0x1c,0xa2046001},
  3945. {0x20,0xc2002300},
  3946. {0x24,0x80a44001},
  3947. {0x28,0x08bfff68},
  3948. {0x2c,0xae05e00c},
  3949. {0x30,0x80a4e000},
  3950. {0x34,0x2280000b},
  3951. {0x38,0xda002530},
  3952. {0x3c,0xda002514},
  3953. {0x40,0x80a36009},
  3954. {0x44,0x38800007},
  3955. {0x48,0xda002530},
  3956. {0x4c,0x832b6002},
  3957. {0x50,0xe6206720},
  3958. {0x54,0x82036001},
  3959. {0x58,0xc2202514},
  3960. {0x5c,0xda002530},
  3961. {0x60,0x80a5800d},
  3962. {0x64,0x14800006},
  3963. {0x68,0x82100016},
  3964. {0x6c,0xc2002514},
  3965. {0x70,0x80a34001},
  3966. {0x74,0x28800002},
  3967. {0x78,0x8210000d},
  3968. {0x7c,0x80a5a000},
  3969. {0xf0,0x7e},
  3970. {0x00,0x02800004},
  3971. {0x04,0xc2202530},
  3972. {0x08,0x1080000a},
  3973. {0x0c,0xc20021f8},
  3974. {0x10,0x80a06000},
  3975. {0x14,0x22800009},
  3976. {0x18,0xc2002530},
  3977. {0x1c,0xc2002708},
  3978. {0x20,0x80a06000},
  3979. {0x24,0x22800004},
  3980. {0x28,0xc0202530},
  3981. {0x2c,0x82006001},
  3982. {0x30,0xc2202708},
  3983. {0x34,0xc2002530},
  3984. {0x38,0x80a06000},
  3985. {0x3c,0x02800005},
  3986. {0x40,0x01000000},
  3987. {0x44,0xc2002548},
  3988. {0x48,0x82106040},
  3989. {0x4c,0xc2202548},
  3990. {0x50,0x81c7e008},
  3991. {0x54,0x81e80000},
  3992. {0x58,0xd2002208},
  3993. {0x5c,0x80a26000},
  3994. {0x60,0x0280001a},
  3995. {0x64,0x01000000},
  3996. {0x68,0xc2102548},
  3997. {0x6c,0x80886001},
  3998. {0x70,0x12800016},
  3999. {0x74,0x01000000},
  4000. {0x78,0xc2002514},
  4001. {0x7c,0x80a06000},
  4002. {0xf0,0x7f},
  4003. {0x00,0x12800007},
  4004. {0x04,0xc2002558},
  4005. {0x08,0x80a06000},
  4006. {0x0c,0x0280000f},
  4007. {0x10,0x9a007fff},
  4008. {0x14,0x1080000d},
  4009. {0x18,0xda202558},
  4010. {0x1c,0x15200040},
  4011. {0x20,0x1b3fc200},
  4012. {0x24,0x9812a001},
  4013. {0x28,0x80a06000},
  4014. {0x2c,0x12800006},
  4015. {0x30,0x96136070},
  4016. {0x34,0xd8234000},
  4017. {0x38,0xc2002298},
  4018. {0x3c,0xc222c000},
  4019. {0x40,0xd4234000},
  4020. {0x44,0xd2202558},
  4021. {0x48,0x81c3e008},
  4022. {0x4c,0x01000000},
  4023. {0x50,0x82220009},
  4024. {0x54,0x9a58400a},
  4025. {0x58,0x833b601f},
  4026. {0x5c,0x80a20009},
  4027. {0x60,0x83306019},
  4028. {0x64,0x04800004},
  4029. {0x68,0x90102000},
  4030. {0x6c,0x82034001},
  4031. {0x70,0x91386007},
  4032. {0x74,0x81c3e008},
  4033. {0x78,0x01000000},
  4034. {0x7c,0x9de3bf98},
  4035. {0xf0,0x80},
  4036. {0x00,0x7ffff8b6},
  4037. {0x04,0xa8102001},
  4038. {0x08,0xc208217f},
  4039. {0x0c,0x80a07fff},
  4040. {0x10,0x0280001c},
  4041. {0x14,0xa6102003},
  4042. {0x18,0x23000019},
  4043. {0x1c,0xa12ce004},
  4044. {0x20,0x82146088},
  4045. {0x24,0xa4146084},
  4046. {0x28,0xd2040001},
  4047. {0x2c,0xd408228c},
  4048. {0x30,0x7fffffe8},
  4049. {0x34,0xd0040012},
  4050. {0x38,0x9a146080},
  4051. {0x3c,0xd024000d},
  4052. {0x40,0xc2002308},
  4053. {0x44,0xa12ce002},
  4054. {0x48,0xa0040001},
  4055. {0x4c,0xa12c2002},
  4056. {0x50,0xa214607c},
  4057. {0x54,0xd004000d},
  4058. {0x58,0xd2040011},
  4059. {0x5c,0x7fffffdd},
  4060. {0x60,0xd408228d},
  4061. {0x64,0xd0240012},
  4062. {0x68,0xc208217f},
  4063. {0x6c,0xa8052001},
  4064. {0x70,0x82006001},
  4065. {0x74,0x80a50001},
  4066. {0x78,0x08bfffe8},
  4067. {0x7c,0xa604e003},
  4068. {0xf0,0x81},
  4069. {0x00,0xa6102001},
  4070. {0x04,0xc2002308},
  4071. {0x08,0x80a4c001},
  4072. {0x0c,0x1880001c},
  4073. {0x10,0x23000019},
  4074. {0x14,0xa12ce002},
  4075. {0x18,0x821460e0},
  4076. {0x1c,0xa41460b0},
  4077. {0x20,0xd2040001},
  4078. {0x24,0xd408228e},
  4079. {0x28,0x7fffffca},
  4080. {0x2c,0xd0040012},
  4081. {0x30,0x9a146080},
  4082. {0x34,0xd024000d},
  4083. {0x38,0xc2002300},
  4084. {0x3c,0xa0004001},
  4085. {0x40,0xa0040001},
  4086. {0x44,0xa12c2002},
  4087. {0x48,0xa0040013},
  4088. {0x4c,0xa12c2002},
  4089. {0x50,0xa2146050},
  4090. {0x54,0xd004000d},
  4091. {0x58,0xd2040011},
  4092. {0x5c,0x7fffffbd},
  4093. {0x60,0xd408228f},
  4094. {0x64,0xd0240012},
  4095. {0x68,0xa604e001},
  4096. {0x6c,0xc2002308},
  4097. {0x70,0x80a4c001},
  4098. {0x74,0x08bfffe8},
  4099. {0x78,0x23000019},
  4100. {0x7c,0x81c7e008},
  4101. {0xf0,0x82},
  4102. {0x00,0x81e80000},
  4103. {0x04,0x9de3bf88},
  4104. {0x08,0xc2002fe4},
  4105. {0x0c,0x9fc04000},
  4106. {0x10,0xd0002590},
  4107. {0x14,0xda002550},
  4108. {0x18,0x832b6004},
  4109. {0x1c,0x8220400d},
  4110. {0x20,0xe000259c},
  4111. {0x24,0x82040001},
  4112. {0x28,0x83306004},
  4113. {0x2c,0xc2202550},
  4114. {0x30,0x11000018},
  4115. {0x34,0xc2002fe4},
  4116. {0x38,0x9fc04000},
  4117. {0x3c,0x90122200},
  4118. {0x40,0xc208217c},
  4119. {0x44,0xda08217d},
  4120. {0x48,0x9a5b4001},
  4121. {0x4c,0xc200259c},
  4122. {0x50,0x8200400d},
  4123. {0x54,0xc220259c},
  4124. {0x58,0xda00259c},
  4125. {0x5c,0xc2002550},
  4126. {0x60,0x80a34001},
  4127. {0x64,0x28800011},
  4128. {0x68,0xc2002548},
  4129. {0x6c,0xc200259c},
  4130. {0x70,0x80a04010},
  4131. {0x74,0x0880000d},
  4132. {0x78,0xc2002548},
  4133. {0x7c,0x80a42000},
  4134. {0xf0,0x83},
  4135. {0x00,0x0280000a},
  4136. {0x04,0x01000000},
  4137. {0x08,0x82087f7f},
  4138. {0x0c,0xc2202548},
  4139. {0x10,0xc2002668},
  4140. {0x14,0x80a06000},
  4141. {0x18,0x26800006},
  4142. {0x1c,0xc0202668},
  4143. {0x20,0x10800005},
  4144. {0x24,0xc208254e},
  4145. {0x28,0x82106080},
  4146. {0x2c,0xc2202548},
  4147. {0x30,0xc208254e},
  4148. {0x34,0x80a00001},
  4149. {0x38,0x82602000},
  4150. {0x3c,0xa0087ffe},
  4151. {0x40,0xd8002548},
  4152. {0x44,0x83332010},
  4153. {0x48,0x80886001},
  4154. {0x4c,0x02800004},
  4155. {0x50,0xa0042003},
  4156. {0x54,0x10800026},
  4157. {0x58,0xa0102000},
  4158. {0x5c,0x033fc200},
  4159. {0x60,0x82106030},
  4160. {0x64,0xda004000},
  4161. {0x68,0xc2002570},
  4162. {0x6c,0x80a34001},
  4163. {0x70,0x32800043},
  4164. {0x74,0xc02026e4},
  4165. {0x78,0xc2002200},
  4166. {0x7c,0x80a06000},
  4167. {0xf0,0x84},
  4168. {0x00,0x3280003f},
  4169. {0x04,0xc02026e4},
  4170. {0x08,0xda0026a0},
  4171. {0x0c,0x03000007},
  4172. {0x10,0x808b4001},
  4173. {0x14,0x3280003a},
  4174. {0x18,0xc02026e4},
  4175. {0x1c,0xda002664},
  4176. {0x20,0xc20021dc},
  4177. {0x24,0x80a34001},
  4178. {0x28,0x2a800008},
  4179. {0x2c,0xc2002514},
  4180. {0x30,0xc200254c},
  4181. {0x34,0x8330600e},
  4182. {0x38,0x80886001},
  4183. {0x3c,0x1280000a},
  4184. {0x40,0x808b2040},
  4185. {0x44,0xc2002514},
  4186. {0x48,0x80a06000},
  4187. {0x4c,0x22800009},
  4188. {0x50,0xc20c2314},
  4189. {0x54,0x808b2080},
  4190. {0x58,0x22800006},
  4191. {0x5c,0xc20c2314},
  4192. {0x60,0x808b2040},
  4193. {0x64,0x32800026},
  4194. {0x68,0xc02026e4},
  4195. {0x6c,0xc20c2314},
  4196. {0x70,0x80a06000},
  4197. {0x74,0x22800022},
  4198. {0x78,0xc02026e4},
  4199. {0x7c,0xc20026e4},
  4200. {0xf0,0x85},
  4201. {0x00,0x82006001},
  4202. {0x04,0xc22026e4},
  4203. {0x08,0xda0c2314},
  4204. {0x0c,0x80a0400d},
  4205. {0x10,0x0680001b},
  4206. {0x14,0x01000000},
  4207. {0x18,0xc02026e4},
  4208. {0x1c,0xc20c234c},
  4209. {0x20,0xc227bfec},
  4210. {0x24,0xc20c230c},
  4211. {0x28,0xc227bff0},
  4212. {0x2c,0xa0102000},
  4213. {0x30,0xc208217c},
  4214. {0x34,0x80a40001},
  4215. {0x38,0x1a800011},
  4216. {0x3c,0x01000000},
  4217. {0x40,0xc20c2380},
  4218. {0x44,0xc227bfe8},
  4219. {0x48,0xa2102000},
  4220. {0x4c,0xc208217d},
  4221. {0x50,0x80a44001},
  4222. {0x54,0x3a800006},
  4223. {0x58,0xa0042001},
  4224. {0x5c,0x7ffff813},
  4225. {0x60,0x9007bfe8},
  4226. {0x64,0x10bffffa},
  4227. {0x68,0xa2046001},
  4228. {0x6c,0xc208217c},
  4229. {0x70,0x80a40001},
  4230. {0x74,0x2abffff4},
  4231. {0x78,0xc20c2380},
  4232. {0x7c,0x81c7e008},
  4233. {0xf0,0x86},
  4234. {0x00,0x81e80000},
  4235. {0x04,0x9de3bf80},
  4236. {0x08,0x03003fc0},
  4237. {0x0c,0x82106001},
  4238. {0x10,0xc227bff4},
  4239. {0x14,0xc227bff0},
  4240. {0x18,0xa4102000},
  4241. {0x1c,0xc2002514},
  4242. {0x20,0x80a48001},
  4243. {0x24,0x1a800025},
  4244. {0x28,0xa2102000},
  4245. {0x2c,0x8207bff8},
  4246. {0x30,0x9a044001},
  4247. {0x34,0xa12c6002},
  4248. {0x38,0xa0040001},
  4249. {0x3c,0xd44b7ff9},
  4250. {0x40,0x90100012},
  4251. {0x44,0x7ffff75a},
  4252. {0x48,0xd24b7ff8},
  4253. {0x4c,0xa2046001},
  4254. {0x50,0x80a46003},
  4255. {0x54,0x04bffff6},
  4256. {0x58,0xd0243fe8},
  4257. {0x5c,0xc2002fe8},
  4258. {0x60,0x80a06000},
  4259. {0x64,0x02800005},
  4260. {0x68,0xda07bfe4},
  4261. {0x6c,0x9fc04000},
  4262. {0x70,0x9007bfe0},
  4263. {0x74,0xda07bfe4},
  4264. {0x78,0xc207bfec},
  4265. {0x7c,0x83286010},
  4266. {0xf0,0x87},
  4267. {0x00,0x9b2b6018},
  4268. {0x04,0x9a034001},
  4269. {0x08,0xc207bfe0},
  4270. {0x0c,0x83286008},
  4271. {0x10,0x9a034001},
  4272. {0x14,0xc207bfe8},
  4273. {0x18,0x9a034001},
  4274. {0x1c,0x832ca002},
  4275. {0x20,0xda206748},
  4276. {0x24,0xa404a001},
  4277. {0x28,0xc2002514},
  4278. {0x2c,0x80a48001},
  4279. {0x30,0x0abfffdf},
  4280. {0x34,0xa2102000},
  4281. {0x38,0x81c7e008},
  4282. {0x3c,0x81e80000},
  4283. {0x40,0x9de3bf98},
  4284. {0x44,0x90102000},
  4285. {0x48,0xc2002514},
  4286. {0x4c,0x80a20001},
  4287. {0x50,0x1a800077},
  4288. {0x54,0x92102000},
  4289. {0x58,0xb72a2002},
  4290. {0x5c,0xf20ee748},
  4291. {0x60,0xc20ee749},
  4292. {0x64,0x80a64001},
  4293. {0x68,0x9e102000},
  4294. {0x6c,0x9a102000},
  4295. {0x70,0x14800024},
  4296. {0x74,0x98102000},
  4297. {0x78,0x82064019},
  4298. {0x7c,0x82004019},
  4299. {0xf0,0x88},
  4300. {0x00,0x3b000019},
  4301. {0x04,0xa0176080},
  4302. {0x08,0xb9286002},
  4303. {0x0c,0xc20ee74b},
  4304. {0x10,0xf40ee74a},
  4305. {0x14,0x80a68001},
  4306. {0x18,0x14800014},
  4307. {0x1c,0x8207001a},
  4308. {0x20,0x83286002},
  4309. {0x24,0xb0004010},
  4310. {0x28,0x94066001},
  4311. {0x2c,0xd60a674b},
  4312. {0x30,0xf6060000},
  4313. {0x34,0x8206a001},
  4314. {0x38,0xb4100001},
  4315. {0x3c,0xba5ec001},
  4316. {0x40,0xb0062004},
  4317. {0x44,0x80a6e000},
  4318. {0x48,0x04800005},
  4319. {0x4c,0x825ec00a},
  4320. {0x50,0x9a034001},
  4321. {0x54,0x9803001d},
  4322. {0x58,0x9e03c01b},
  4323. {0x5c,0x80a6800b},
  4324. {0x60,0x24bffff5},
  4325. {0x64,0xf6060000},
  4326. {0x68,0xb72a2002},
  4327. {0x6c,0xb2066001},
  4328. {0x70,0xc20ee749},
  4329. {0x74,0x80a64001},
  4330. {0x78,0x04bfffe5},
  4331. {0x7c,0xb807200c},
  4332. {0xf0,0x89},
  4333. {0x00,0x832b6006},
  4334. {0x04,0xb92b2006},
  4335. {0x08,0x9b38601f},
  4336. {0x0c,0x81836000},
  4337. {0x10,0x01000000},
  4338. {0x14,0x01000000},
  4339. {0x18,0x01000000},
  4340. {0x1c,0xb678400f},
  4341. {0x20,0xfa026720},
  4342. {0x24,0x833f201f},
  4343. {0x28,0x81806000},
  4344. {0x2c,0x01000000},
  4345. {0x30,0x01000000},
  4346. {0x34,0x01000000},
  4347. {0x38,0xb87f000f},
  4348. {0x3c,0xbb37600c},
  4349. {0x40,0x808f6001},
  4350. {0x44,0x9a06ffa0},
  4351. {0x48,0x02800007},
  4352. {0x4c,0x98073fa0},
  4353. {0x50,0xc200237c},
  4354. {0x54,0x80a06000},
  4355. {0x58,0x22800003},
  4356. {0x5c,0x9a06ff60},
  4357. {0x60,0x98073f60},
  4358. {0x64,0x80a36000},
  4359. {0x68,0x24800002},
  4360. {0x6c,0x9a102001},
  4361. {0x70,0x80a32000},
  4362. {0x74,0x24800002},
  4363. {0x78,0x98102001},
  4364. {0x7c,0xfa08217f},
  4365. {0xf0,0x8a},
  4366. {0x00,0x832f6006},
  4367. {0x04,0x80a34001},
  4368. {0x08,0x36800002},
  4369. {0x0c,0x9a007fff},
  4370. {0x10,0xc208217e},
  4371. {0x14,0x83286006},
  4372. {0x18,0x80a30001},
  4373. {0x1c,0x36800002},
  4374. {0x20,0x98007fff},
  4375. {0x24,0xc20021e0},
  4376. {0x28,0x80a06000},
  4377. {0x2c,0x22800012},
  4378. {0x30,0x9e102000},
  4379. {0x34,0x80a76040},
  4380. {0x38,0x3880000f},
  4381. {0x3c,0x9e102000},
  4382. {0x40,0x81800000},
  4383. {0x44,0x01000000},
  4384. {0x48,0x01000000},
  4385. {0x4c,0x01000000},
  4386. {0x50,0x9ef3c001},
  4387. {0x54,0x12800004},
  4388. {0x58,0x80a3e00f},
  4389. {0x5c,0x10800006},
  4390. {0x60,0x9e102001},
  4391. {0x64,0x34800004},
  4392. {0x68,0x9e10200f},
  4393. {0x6c,0x10800003},
  4394. {0x70,0x832b6010},
  4395. {0x74,0x832b6010},
  4396. {0x78,0x8200400c},
  4397. {0x7c,0xbb2be01c},
  4398. {0xf0,0x8b},
  4399. {0x00,0xba074001},
  4400. {0x04,0xf8026720},
  4401. {0x08,0x0300003c},
  4402. {0x0c,0xb80f0001},
  4403. {0x10,0xba07401c},
  4404. {0x14,0xfa226720},
  4405. {0x18,0x90022001},
  4406. {0x1c,0xc2002514},
  4407. {0x20,0x80a20001},
  4408. {0x24,0x0abfff8d},
  4409. {0x28,0x92026004},
  4410. {0x2c,0x7ffff582},
  4411. {0x30,0x91e8205a},
  4412. {0x34,0x01000000},
  4413. {0x38,0x9de3bf98},
  4414. {0x3c,0xd8002548},
  4415. {0x40,0x8333200c},
  4416. {0x44,0x80886001},
  4417. {0x48,0x12800081},
  4418. {0x4c,0x01000000},
  4419. {0x50,0xc208254d},
  4420. {0x54,0x80a06000},
  4421. {0x58,0x1280007d},
  4422. {0x5c,0x01000000},
  4423. {0x60,0xc208254e},
  4424. {0x64,0x80a06000},
  4425. {0x68,0x02800079},
  4426. {0x6c,0x01000000},
  4427. {0x70,0xc2002554},
  4428. {0x74,0x825860fa},
  4429. {0x78,0xda002500},
  4430. {0x7c,0x80a34001},
  4431. {0xf0,0x8c},
  4432. {0x00,0x0a800073},
  4433. {0x04,0x01000000},
  4434. {0x08,0xd6002668},
  4435. {0x0c,0x80a2e000},
  4436. {0x10,0x1480001c},
  4437. {0x14,0x8202ffff},
  4438. {0x18,0xc2002514},
  4439. {0x1c,0x80a06001},
  4440. {0x20,0x3280006b},
  4441. {0x24,0xc0202668},
  4442. {0x28,0xc2002720},
  4443. {0x2c,0x80a06000},
  4444. {0x30,0x12800004},
  4445. {0x34,0x808b2040},
  4446. {0x38,0x10800065},
  4447. {0x3c,0xc0202668},
  4448. {0x40,0x32800006},
  4449. {0x44,0xd800239c},
  4450. {0x48,0x80a2e000},
  4451. {0x4c,0x0680000d},
  4452. {0x50,0x8202e001},
  4453. {0x54,0xd800239c},
  4454. {0x58,0x0300003f},
  4455. {0x5c,0x9b332010},
  4456. {0x60,0x821063ff},
  4457. {0x64,0x980b0001},
  4458. {0x68,0x9a38000d},
  4459. {0x6c,0x9a23400c},
  4460. {0x70,0x80a2c00d},
  4461. {0x74,0x06800005},
  4462. {0x78,0x03296956},
  4463. {0x7c,0x8202ffff},
  4464. {0xf0,0x8d},
  4465. {0x00,0x10800053},
  4466. {0x04,0xc2202668},
  4467. {0x08,0x9a10625a},
  4468. {0x0c,0xc200250c},
  4469. {0x10,0x80a0400d},
  4470. {0x14,0x02800004},
  4471. {0x18,0xa0102000},
  4472. {0x1c,0xda20250c},
  4473. {0x20,0xc0202664},
  4474. {0x24,0x832c2002},
  4475. {0x28,0x92006620},
  4476. {0x2c,0xc2006620},
  4477. {0x30,0x90102720},
  4478. {0x34,0x80a06000},
  4479. {0x38,0x0280000d},
  4480. {0x3c,0xa0042001},
  4481. {0x40,0x7ffff5ab},
  4482. {0x44,0x01000000},
  4483. {0x48,0xc2002300},
  4484. {0x4c,0xda002308},
  4485. {0x50,0x82584001},
  4486. {0x54,0x9a5b400d},
  4487. {0x58,0x8200400d},
  4488. {0x5c,0x83286006},
  4489. {0x60,0x80a20001},
  4490. {0x64,0x0a80003a},
  4491. {0x68,0x01000000},
  4492. {0x6c,0x80a4200f},
  4493. {0x70,0x08bfffee},
  4494. {0x74,0x832c2002},
  4495. {0x78,0x030041eb},
  4496. {0x7c,0xc2202668},
  4497. {0xf0,0x8e},
  4498. {0x00,0xa010200f},
  4499. {0x04,0x9b2c2002},
  4500. {0x08,0xc203661c},
  4501. {0x0c,0xa0843fff},
  4502. {0x10,0x12bffffd},
  4503. {0x14,0xc2236620},
  4504. {0x18,0xda002664},
  4505. {0x1c,0xc2002720},
  4506. {0x20,0xc2202620},
  4507. {0x24,0x80a3600f},
  4508. {0x28,0x14800003},
  4509. {0x2c,0x9010200f},
  4510. {0x30,0x9010000d},
  4511. {0x34,0x03000017},
  4512. {0x38,0x9e106240},
  4513. {0x3c,0x82006400},
  4514. {0x40,0xa2106200},
  4515. {0x44,0x0300003f},
  4516. {0x48,0xa61063ff},
  4517. {0x4c,0x92022001},
  4518. {0x50,0xa0102000},
  4519. {0x54,0xa410000f},
  4520. {0x58,0x972c2002},
  4521. {0x5c,0x8203c00b},
  4522. {0x60,0xda106002},
  4523. {0x64,0x9804400b},
  4524. {0x68,0xd4132002},
  4525. {0x6c,0xc213c00b},
  4526. {0x70,0xd814400b},
  4527. {0x74,0x82584008},
  4528. {0x78,0x9a5b4008},
  4529. {0x7c,0x8200400c},
  4530. {0xf0,0x8f},
  4531. {0x00,0x9a03400a},
  4532. {0x04,0x81800000},
  4533. {0x08,0x01000000},
  4534. {0x0c,0x01000000},
  4535. {0x10,0x01000000},
  4536. {0x14,0x82704009},
  4537. {0x18,0x81800000},
  4538. {0x1c,0x01000000},
  4539. {0x20,0x01000000},
  4540. {0x24,0x01000000},
  4541. {0x28,0x9a734009},
  4542. {0x2c,0x83286010},
  4543. {0x30,0x9a0b4013},
  4544. {0x34,0x8200400d},
  4545. {0x38,0xa0042001},
  4546. {0x3c,0x80a4204f},
  4547. {0x40,0x08bfffe6},
  4548. {0x44,0xc222c012},
  4549. {0x48,0xd2202664},
  4550. {0x4c,0x81c7e008},
  4551. {0x50,0x81e80000},
  4552. {0x54,0x9de3bf98},
  4553. {0x58,0xa2102000},
  4554. {0x5c,0xc2002514},
  4555. {0x60,0x80a44001},
  4556. {0x64,0xa0102000},
  4557. {0x68,0x1a800012},
  4558. {0x6c,0x832c2002},
  4559. {0x70,0x92006720},
  4560. {0x74,0xc2006720},
  4561. {0x78,0x80a06000},
  4562. {0x7c,0x02800009},
  4563. {0xf0,0x90},
  4564. {0x00,0x90100018},
  4565. {0x04,0x7ffff55a},
  4566. {0x08,0x01000000},
  4567. {0x0c,0x82102001},
  4568. {0x10,0x80a20019},
  4569. {0x14,0x1a800003},
  4570. {0x18,0x83284010},
  4571. {0x1c,0xa2144001},
  4572. {0x20,0xa0042001},
  4573. {0x24,0xc2002514},
  4574. {0x28,0x10bffff0},
  4575. {0x2c,0x80a40001},
  4576. {0x30,0x81c7e008},
  4577. {0x34,0x91e80011},
  4578. {0x38,0x9de3bf90},
  4579. {0x3c,0x03003fc0},
  4580. {0x40,0x82106001},
  4581. {0x44,0xc227bff0},
  4582. {0x48,0xc027bff4},
  4583. {0x4c,0xa0102000},
  4584. {0x50,0x8207bff8},
  4585. {0x54,0x82040001},
  4586. {0x58,0xd2487ff9},
  4587. {0x5c,0xd0487ff8},
  4588. {0x60,0x90060008},
  4589. {0x64,0x92064009},
  4590. {0x68,0x94102000},
  4591. {0x6c,0x7ffff59a},
  4592. {0x70,0x9610001a},
  4593. {0x74,0x80a22000},
  4594. {0x78,0x02800004},
  4595. {0x7c,0xa0042001},
  4596. {0xf0,0x91},
  4597. {0x00,0x10800006},
  4598. {0x04,0xb0102001},
  4599. {0x08,0x80a42004},
  4600. {0x0c,0x04bffff2},
  4601. {0x10,0x8207bff8},
  4602. {0x14,0xb0102000},
  4603. {0x18,0x81c7e008},
  4604. {0x1c,0x81e80000},
  4605. {0x20,0x9de3bf90},
  4606. {0x24,0xc2102548},
  4607. {0x28,0x80886001},
  4608. {0x2c,0x128000e6},
  4609. {0x30,0x03003fc0},
  4610. {0x34,0x82106001},
  4611. {0x38,0xc227bff0},
  4612. {0x3c,0xc027bff4},
  4613. {0x40,0xda002500},
  4614. {0x44,0xc20022d0},
  4615. {0x48,0x80a34001},
  4616. {0x4c,0xb8102000},
  4617. {0x50,0xba102000},
  4618. {0x54,0x18800007},
  4619. {0x58,0xae102000},
  4620. {0x5c,0xc2002548},
  4621. {0x60,0x8330600c},
  4622. {0x64,0x80886001},
  4623. {0x68,0x22800004},
  4624. {0x6c,0xc200254c},
  4625. {0x70,0xba102001},
  4626. {0x74,0xc200254c},
  4627. {0x78,0x80886200},
  4628. {0x7c,0x32800010},
  4629. {0xf0,0x92},
  4630. {0x00,0xc20026a0},
  4631. {0x04,0x03296956},
  4632. {0x08,0xda00250c},
  4633. {0x0c,0x8210625a},
  4634. {0x10,0x80a34001},
  4635. {0x14,0x12800006},
  4636. {0x18,0xc20023c8},
  4637. {0x1c,0x80886800},
  4638. {0x20,0x32800007},
  4639. {0x24,0xc20026a0},
  4640. {0x28,0xc20023c8},
  4641. {0x2c,0x80886400},
  4642. {0x30,0x22800014},
  4643. {0x34,0xec0022ac},
  4644. {0x38,0xc20026a0},
  4645. {0x3c,0x80886200},
  4646. {0x40,0x1280000a},
  4647. {0x44,0xb8102001},
  4648. {0x48,0x13000017},
  4649. {0x4c,0xc2002fd0},
  4650. {0x50,0x92126240},
  4651. {0x54,0x9fc04000},
  4652. {0x58,0xd0002590},
  4653. {0x5c,0xc20026a0},
  4654. {0x60,0x82106200},
  4655. {0x64,0xc22026a0},
  4656. {0x68,0x10800006},
  4657. {0x6c,0xec0023a0},
  4658. {0x70,0x03000080},
  4659. {0x74,0x82134001},
  4660. {0x78,0x1080007d},
  4661. {0x7c,0xc220254c},
  4662. {0xf0,0x93},
  4663. {0x00,0x7ffff48d},
  4664. {0x04,0x901020aa},
  4665. {0x08,0xaa102000},
  4666. {0x0c,0xa12d6003},
  4667. {0x10,0xc2042770},
  4668. {0x14,0x80a06000},
  4669. {0x18,0x22800072},
  4670. {0x1c,0xaa056001},
  4671. {0x20,0x80a56000},
  4672. {0x24,0x12800008},
  4673. {0x28,0x80a76000},
  4674. {0x2c,0xc200255c},
  4675. {0x30,0x80a06000},
  4676. {0x34,0x1280000c},
  4677. {0x38,0x29200000},
  4678. {0x3c,0x1080000a},
  4679. {0x40,0xa8102000},
  4680. {0x44,0x02800005},
  4681. {0x48,0x90042770},
  4682. {0x4c,0xc0242774},
  4683. {0x50,0x10800063},
  4684. {0x54,0xc0242770},
  4685. {0x58,0x7fffff7f},
  4686. {0x5c,0x92100016},
  4687. {0x60,0xa8100008},
  4688. {0x64,0x80a52000},
  4689. {0x68,0x1280000b},
  4690. {0x6c,0xae15c014},
  4691. {0x70,0xc2142774},
  4692. {0x74,0x80a06000},
  4693. {0x78,0x22800058},
  4694. {0x7c,0xc0242774},
  4695. {0xf0,0x94},
  4696. {0x00,0xc2042774},
  4697. {0x04,0x1b3fffc0},
  4698. {0x08,0x8200400d},
  4699. {0x0c,0x10800054},
  4700. {0x10,0xc2242774},
  4701. {0x14,0xc2142776},
  4702. {0x18,0x80a06000},
  4703. {0x1c,0x0280000a},
  4704. {0x20,0x80a56000},
  4705. {0x24,0xc2042774},
  4706. {0x28,0x82007fff},
  4707. {0x2c,0xc2242774},
  4708. {0x30,0xc2142776},
  4709. {0x34,0x80a06000},
  4710. {0x38,0x3280004a},
  4711. {0x3c,0xaa056001},
  4712. {0x40,0x80a56000},
  4713. {0x44,0x1280000c},
  4714. {0x48,0x1b004000},
  4715. {0x4c,0xc200254c},
  4716. {0x50,0x8210400d},
  4717. {0x54,0x10800042},
  4718. {0x58,0xc220254c},
  4719. {0x5c,0xc200254c},
  4720. {0x60,0x1b000080},
  4721. {0x64,0x8210400d},
  4722. {0x68,0xc220254c},
  4723. {0x6c,0x10800037},
  4724. {0x70,0xc02026f8},
  4725. {0x74,0xda00254c},
  4726. {0x78,0x83336019},
  4727. {0x7c,0x80886001},
  4728. {0xf0,0x95},
  4729. {0x00,0x12bfffbc},
  4730. {0x04,0x80a72000},
  4731. {0x08,0x02bfffba},
  4732. {0x0c,0xa2102000},
  4733. {0x10,0xc2002514},
  4734. {0x14,0x80a44001},
  4735. {0x18,0x1a80002c},
  4736. {0x1c,0x83350011},
  4737. {0x20,0x80886001},
  4738. {0x24,0x02800027},
  4739. {0x28,0x9b2c6002},
  4740. {0x2c,0xc2036720},
  4741. {0x30,0x9b306016},
  4742. {0x34,0x82086fff},
  4743. {0x38,0x83386006},
  4744. {0x3c,0x9a0b603f},
  4745. {0x40,0xa4006001},
  4746. {0x44,0xa6036001},
  4747. {0x48,0x92100013},
  4748. {0x4c,0xd410246e},
  4749. {0x50,0x7fffff5a},
  4750. {0x54,0x90100012},
  4751. {0x58,0x80a22000},
  4752. {0x5c,0x12800011},
  4753. {0x60,0x82102001},
  4754. {0x64,0xd410246c},
  4755. {0x68,0x80a2a000},
  4756. {0x6c,0x22800011},
  4757. {0x70,0xc20026f8},
  4758. {0x74,0xc2002548},
  4759. {0x78,0x90100012},
  4760. {0x7c,0x80886080},
  4761. {0xf0,0x96},
  4762. {0x00,0x0280000b},
  4763. {0x04,0x92100013},
  4764. {0x08,0x7fffff4c},
  4765. {0x0c,0x01000000},
  4766. {0x10,0x80a22000},
  4767. {0x14,0x22800007},
  4768. {0x18,0xc20026f8},
  4769. {0x1c,0x82102001},
  4770. {0x20,0x83284011},
  4771. {0x24,0x10800007},
  4772. {0x28,0xa82d0001},
  4773. {0x2c,0xc20026f8},
  4774. {0x30,0x82006001},
  4775. {0x34,0x80a06004},
  4776. {0x38,0x14bfffc9},
  4777. {0x3c,0xc22026f8},
  4778. {0x40,0x10bfffd4},
  4779. {0x44,0xa2046001},
  4780. {0x48,0x80a52000},
  4781. {0x4c,0x32800005},
  4782. {0x50,0xaa056001},
  4783. {0x54,0xc0242774},
  4784. {0x58,0xc0242770},
  4785. {0x5c,0xaa056001},
  4786. {0x60,0x80a56013},
  4787. {0x64,0x04bfff8b},
  4788. {0x68,0xa12d6003},
  4789. {0x6c,0x80a5e000},
  4790. {0x70,0x22800002},
  4791. {0x74,0xc02026f8},
  4792. {0x78,0xc200255c},
  4793. {0x7c,0x80a06000},
  4794. {0xf0,0x97},
  4795. {0x00,0x0280000a},
  4796. {0x04,0x80a76000},
  4797. {0x08,0xc2002770},
  4798. {0x0c,0x80a06000},
  4799. {0x10,0x12800006},
  4800. {0x14,0x80a76000},
  4801. {0x18,0x03000004},
  4802. {0x1c,0xc2202770},
  4803. {0x20,0xc2002248},
  4804. {0x24,0xc2202774},
  4805. {0x28,0x12800027},
  4806. {0x2c,0xaa102000},
  4807. {0x30,0xc2002514},
  4808. {0x34,0x80a54001},
  4809. {0x38,0x1a800023},
  4810. {0x3c,0x96102001},
  4811. {0x40,0x992d6002},
  4812. {0x44,0xc2032720},
  4813. {0x48,0x8330600c},
  4814. {0x4c,0x80886001},
  4815. {0x50,0x32800019},
  4816. {0x54,0xaa056001},
  4817. {0x58,0x832ac015},
  4818. {0x5c,0x808dc001},
  4819. {0x60,0x32800015},
  4820. {0x64,0xaa056001},
  4821. {0x68,0xa2102001},
  4822. {0x6c,0x9b2c6003},
  4823. {0x70,0xc2036770},
  4824. {0x74,0x80a06000},
  4825. {0x78,0x1280000b},
  4826. {0x7c,0xa2046001},
  4827. {0xf0,0x98},
  4828. {0x00,0xc2032720},
  4829. {0x04,0x80a72000},
  4830. {0x08,0x02800004},
  4831. {0x0c,0xc2236770},
  4832. {0x10,0x10800003},
  4833. {0x14,0xc200239c},
  4834. {0x18,0xc2002378},
  4835. {0x1c,0x10800005},
  4836. {0x20,0xc2236774},
  4837. {0x24,0x80a46013},
  4838. {0x28,0x04bffff2},
  4839. {0x2c,0x9b2c6003},
  4840. {0x30,0xaa056001},
  4841. {0x34,0xc2002514},
  4842. {0x38,0x80a54001},
  4843. {0x3c,0x0abfffe2},
  4844. {0x40,0x992d6002},
  4845. {0x44,0x81c7e008},
  4846. {0x48,0x81e80000},
  4847. {0x4c,0x9de3bf98},
  4848. {0x50,0x7ffff5a2},
  4849. {0x54,0x01000000},
  4850. {0x58,0xc2002538},
  4851. {0x5c,0x80a06000},
  4852. {0x60,0x2280000b},
  4853. {0x64,0xc208254d},
  4854. {0x68,0x82007fff},
  4855. {0x6c,0x80a06000},
  4856. {0x70,0x12800006},
  4857. {0x74,0xc2202538},
  4858. {0x78,0xc200254c},
  4859. {0x7c,0x1b002000},
  4860. {0xf0,0x99},
  4861. {0x00,0x8210400d},
  4862. {0x04,0xc220254c},
  4863. {0x08,0xc208254d},
  4864. {0x0c,0x80a06000},
  4865. {0x10,0x0280001f},
  4866. {0x14,0x033fc180},
  4867. {0x18,0xc0204000},
  4868. {0x1c,0xa0102002},
  4869. {0x20,0x7ffff5e4},
  4870. {0x24,0x90102001},
  4871. {0x28,0x11000099},
  4872. {0x2c,0x7ffff03a},
  4873. {0x30,0x9012233c},
  4874. {0x34,0xa0843fff},
  4875. {0x38,0x1cbffffa},
  4876. {0x3c,0x01000000},
  4877. {0x40,0x7ffff5dc},
  4878. {0x44,0x90102000},
  4879. {0x48,0xda00254c},
  4880. {0x4c,0x83336010},
  4881. {0x50,0x80886001},
  4882. {0x54,0x32800002},
  4883. {0x58,0xc020250c},
  4884. {0x5c,0x83336017},
  4885. {0x60,0x80886001},
  4886. {0x64,0x32800005},
  4887. {0x68,0xc2002538},
  4888. {0x6c,0xc2002188},
  4889. {0x70,0xc2202538},
  4890. {0x74,0xc2002538},
  4891. {0x78,0xc220266c},
  4892. {0x7c,0x7ffff25f},
  4893. {0xf0,0x9a},
  4894. {0x00,0x90102015},
  4895. {0x04,0x82102001},
  4896. {0x08,0xc2202584},
  4897. {0x0c,0x81c7e008},
  4898. {0x10,0x81e80000},
  4899. {0x14,0xc2002588},
  4900. {0x18,0x80a06000},
  4901. {0x1c,0x32800006},
  4902. {0x20,0xc200258c},
  4903. {0x24,0xc2002554},
  4904. {0x28,0xc2202588},
  4905. {0x2c,0xc0202594},
  4906. {0x30,0xc200258c},
  4907. {0x34,0x80a06000},
  4908. {0x38,0x32800006},
  4909. {0x3c,0xc2102548},
  4910. {0x40,0xc2002554},
  4911. {0x44,0xc220258c},
  4912. {0x48,0xc0202598},
  4913. {0x4c,0xc2102548},
  4914. {0x50,0x80886001},
  4915. {0x54,0x02800007},
  4916. {0x58,0x01000000},
  4917. {0x5c,0xc2002558},
  4918. {0x60,0x80a06001},
  4919. {0x64,0x18800003},
  4920. {0x68,0x82102001},
  4921. {0x6c,0xc2202584},
  4922. {0x70,0x81c3e008},
  4923. {0x74,0x01000000},
  4924. {0x78,0xc2002548},
  4925. {0x7c,0x8330600e},
  4926. {0xf0,0x9b},
  4927. {0x00,0x80886001},
  4928. {0x04,0x12800056},
  4929. {0x08,0x98102000},
  4930. {0x0c,0xc2002514},
  4931. {0x10,0x80a30001},
  4932. {0x14,0x1a80000b},
  4933. {0x18,0x033fc180},
  4934. {0x1c,0x96106004},
  4935. {0x20,0x832b2002},
  4936. {0x24,0xda006720},
  4937. {0x28,0xda20400b},
  4938. {0x2c,0x98032001},
  4939. {0x30,0xc2002514},
  4940. {0x34,0x80a30001},
  4941. {0x38,0x0abffffb},
  4942. {0x3c,0x832b2002},
  4943. {0x40,0xda00254c},
  4944. {0x44,0x808b6001},
  4945. {0x48,0x32800008},
  4946. {0x4c,0xc208254e},
  4947. {0x50,0xc2002514},
  4948. {0x54,0x9a136001},
  4949. {0x58,0x82106100},
  4950. {0x5c,0xda20254c},
  4951. {0x60,0xc2202514},
  4952. {0x64,0xc208254e},
  4953. {0x68,0x80a06000},
  4954. {0x6c,0x3280000b},
  4955. {0x70,0xd80023c8},
  4956. {0x74,0xc20023c8},
  4957. {0x78,0x83306016},
  4958. {0x7c,0x80886001},
  4959. {0xf0,0x9c},
  4960. {0x00,0x22800006},
  4961. {0x04,0xd80023c8},
  4962. {0x08,0xc2002514},
  4963. {0x0c,0x82106200},
  4964. {0x10,0xc2202514},
  4965. {0x14,0xd80023c8},
  4966. {0x18,0x8333200c},
  4967. {0x1c,0x80886001},
  4968. {0x20,0x1280000f},
  4969. {0x24,0xc2082517},
  4970. {0x28,0x80a06000},
  4971. {0x2c,0x32800007},
  4972. {0x30,0xda002500},
  4973. {0x34,0xc2002560},
  4974. {0x38,0x80a06000},
  4975. {0x3c,0x22800008},
  4976. {0x40,0xc2082517},
  4977. {0x44,0xda002500},
  4978. {0x48,0xc2002514},
  4979. {0x4c,0x9b2b6010},
  4980. {0x50,0x8210400d},
  4981. {0x54,0xc2202514},
  4982. {0x58,0xc2082517},
  4983. {0x5c,0x80a06000},
  4984. {0x60,0x22800010},
  4985. {0x64,0xc2002574},
  4986. {0x68,0xc2002548},
  4987. {0x6c,0x80886800},
  4988. {0x70,0x02800005},
  4989. {0x74,0x80a32000},
  4990. {0x78,0xc2002514},
  4991. {0x7c,0x82106400},
  4992. {0xf0,0x9d},
  4993. {0x00,0xc2202514},
  4994. {0x04,0x36800007},
  4995. {0x08,0xc2002574},
  4996. {0x0c,0xc2002514},
  4997. {0x10,0x1b000004},
  4998. {0x14,0x8210400d},
  4999. {0x18,0xc2202514},
  5000. {0x1c,0xc2002574},
  5001. {0x20,0x80a06000},
  5002. {0x24,0x2280000c},
  5003. {0x28,0xda002514},
  5004. {0x2c,0x82007fff},
  5005. {0x30,0xda082517},
  5006. {0x34,0x80a36000},
  5007. {0x38,0x02800006},
  5008. {0x3c,0xc2202574},
  5009. {0x40,0xc2002514},
  5010. {0x44,0x1b000008},
  5011. {0x48,0x8210400d},
  5012. {0x4c,0xc2202514},
  5013. {0x50,0xda002514},
  5014. {0x54,0x033fc180},
  5015. {0x58,0xda204000},
  5016. {0x5c,0x81c3e008},
  5017. {0x60,0x01000000},
  5018. {0x64,0x9de3bf98},
  5019. {0x68,0xd8002548},
  5020. {0x6c,0x8333200e},
  5021. {0x70,0x80886001},
  5022. {0x74,0x22800006},
  5023. {0x78,0xc2102516},
  5024. {0x7c,0x03000010},
  5025. {0xf0,0x9e},
  5026. {0x00,0x822b0001},
  5027. {0x04,0x1080001e},
  5028. {0x08,0xc2202548},
  5029. {0x0c,0x80a06000},
  5030. {0x10,0x02800006},
  5031. {0x14,0x9b332003},
  5032. {0x18,0x808b2004},
  5033. {0x1c,0x2280000a},
  5034. {0x20,0xc200231c},
  5035. {0x24,0x9b332003},
  5036. {0x28,0x83332002},
  5037. {0x2c,0x82086001},
  5038. {0x30,0x9a0b6001},
  5039. {0x34,0x80a0400d},
  5040. {0x38,0x2280000a},
  5041. {0x3c,0xc2002560},
  5042. {0x40,0xc200231c},
  5043. {0x44,0x80a06000},
  5044. {0x48,0x22800003},
  5045. {0x4c,0x82102014},
  5046. {0x50,0x82102005},
  5047. {0x54,0xc2202560},
  5048. {0x58,0x10800007},
  5049. {0x5c,0x90102001},
  5050. {0x60,0x80a06000},
  5051. {0x64,0x02800004},
  5052. {0x68,0x90102000},
  5053. {0x6c,0x10bffffa},
  5054. {0x70,0x82007fff},
  5055. {0x74,0x7ffff52f},
  5056. {0x78,0x01000000},
  5057. {0x7c,0xc2002548},
  5058. {0xf0,0x9f},
  5059. {0x00,0x9a004001},
  5060. {0x04,0x9a0b6008},
  5061. {0x08,0x82087ff7},
  5062. {0x0c,0x8210400d},
  5063. {0x10,0xc2202548},
  5064. {0x14,0x81c7e008},
  5065. {0x18,0x81e80000},
  5066. {0x1c,0x00000000},
  5067. {0x20,0x00000000},
  5068. {0x24,0x00000000},
  5069. {0x28,0x00000000},
  5070. {0x2c,0x00000000},
  5071. {0x30,0x00000000},
  5072. {0x34,0x00000000},
  5073. {0x38,0x00000000},
  5074. {0x3c,0x00000000},
  5075. {0x40,0x00000000},
  5076. {0x44,0x00000000},
  5077. {0x48,0x00000000},
  5078. {0x4c,0x00000000},
  5079. {0x50,0x00000000},
  5080. {0x54,0x00000000},
  5081. {0x58,0x00000000},
  5082. {0x5c,0x00000000},
  5083. {0x60,0x00000000},
  5084. {0x64,0x00000000},
  5085. {0x68,0x00000000},
  5086. {0x6c,0x00000000},
  5087. {0x70,0x00000000},
  5088. {0x74,0x00000000},
  5089. {0x78,0x00000000},
  5090. {0x7c,0x00000000},
  5091. {0xf0,0xa0},
  5092. {0x00,0x00001688},
  5093. {0x04,0xa5010502},
  5094. {0x08,0xa5000000},
  5095. {0x0c,0x00000000},
  5096. {0x10,0x4c494348},
  5097. {0x14,0x49444449},
  5098. {0x18,0x88ecbdae},
  5099. {0x1c,0x39cf8648},
  5100. {0x20,0x80cdc96f},
  5101. {0x24,0xbe719243},
  5102. {0x28,0xc641c654},
  5103. {0x2c,0xcc4d80cb},
  5104. {0x30,0x80d1c471},
  5105. {0x34,0xcce5c9e5},
  5106. {0x38,0xc400c643},
  5107. {0x3c,0xbd130000},
  5108. {0x40,0x00000000},
  5109. {0x44,0x00000000},
  5110. {0x48,0x00000000},
  5111. {0x4c,0x00000000},
  5112. {0x50,0x00000000},
  5113. {0x54,0x00000000},
  5114. {0x58,0x00000000},
  5115. {0x5c,0x00000000},
  5116. {0x60,0x00000000},
  5117. {0x64,0x00000000},
  5118. {0x68,0x4e6f7620},
  5119. {0x6c,0x31372032},
  5120. {0x70,0x30313400},
  5121. {0x74,0x00000000},
  5122. {0x78,0x31393a35},
  5123. {0x7c,0x353a3534},
  5124. };
  5125. #endif

四、adb 读touch pad ic的寄存器可以发现有的寄存器是读不出来的,i2c通信没有相应信号。

五、adb getevent 命令 查看触摸触摸屏的时候android上层是否收到信号。

 五、到这里可以确认触摸屏的驱动已经work了,但是这个时候又发现一个问题,触摸屏操作类似鼠标一样,手指在屏幕上滑动的时候有个光标跟着移动。

      1、现象如下图:

       2、解决方案,触摸设备(尤其是内置触摸屏)通常都需要 IDC 文件。输入设备配置文件(input device configuration files),添加gslX680.idc,复制到/system/usr/idc/路径下。

       3、gslX680.idc 内容如下:

  1. touch.deviceType = touchScreen
  2. touch.orientationAware = 1

       4、adb 执行dumpsys input 可以看到对应的ConfigurationFile文件

        5、到这里触摸屏就可以正常工作了。

六、参考文章

[RK3399] [Android7.1] 调试笔记:TSC2007 触摸屏_Yumin's Blog-CSDN博客_tsc2007触摸屏

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/330342
推荐阅读
相关标签
  

闽ICP备14008679号