GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
|
||||
ifneq ($(MCU), )
|
||||
include Makefile.riscv
|
||||
else
|
||||
include Makefile.linux
|
||||
endif
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
ISP_DIR := $(shell cd ../.. && /bin/pwd)
|
||||
SDK_DIR ?= $(shell cd $(ISP_DIR)/../../../.. && /bin/pwd)
|
||||
|
||||
include $(SDK_DIR)/build/base.mk
|
||||
include $(ISP_DIR)/sensor/plat.mk
|
||||
|
||||
LIB_NAME := libsns_os08a20
|
||||
|
||||
SRCS := $(wildcard *.c)
|
||||
|
||||
SDK_USR_CFLAGS += -I$(GMP_DIR)/include
|
||||
SDK_USR_CFLAGS += -I$(GMP_DIR)/usr/include
|
||||
SDK_USR_CFLAGS += -I$(ISP_DIR)/include
|
||||
SDK_USR_CFLAGS += -I$(ISP_DIR)/../include
|
||||
SDK_USR_CFLAGS += -I.
|
||||
AT := @
|
||||
|
||||
$(info SRCS=$(SRCS))
|
||||
|
||||
include $(SDK_DIR)/build/sdk_lib_rules.mk
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
SRCS-y += os08a20.c
|
||||
SRCS-y += os08a20_ctrl.c
|
||||
|
||||
+1841
File diff suppressed because it is too large
Load Diff
+84
@@ -0,0 +1,84 @@
|
||||
#ifndef __OS08A20_H__
|
||||
#define __OS08A20_H__
|
||||
|
||||
#include "sns_comm.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define OS08A20_BIT_WIDTH_10
|
||||
|
||||
#ifdef OS08A20_BIT_WIDTH_10
|
||||
#define OS08A20_VMAX_8M_LINEAR 2314 // 10bit
|
||||
#define OS08A20_VMAX_5M_LINEAR OS08A20_VMAX_8M_LINEAR // crop from 8M
|
||||
#define OS08A20_VMAX_4M_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_4M_1440P_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_3M_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_2M_LINEAR 4628
|
||||
#else
|
||||
#ifdef FPGA
|
||||
#define OS08A20_VMAX_8M_LINEAR 4000 // 0xfa0 12bit
|
||||
#else
|
||||
#define OS08A20_VMAX_8M_LINEAR 2314
|
||||
#endif
|
||||
#define OS08A20_VMAX_5M_LINEAR OS08A20_VMAX_8M_LINEAR // crop from 8M
|
||||
#define OS08A20_VMAX_4M_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_4M_1440P_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_3M_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#define OS08A20_VMAX_2M_LINEAR OS08A20_VMAX_8M_LINEAR
|
||||
#endif
|
||||
|
||||
#define OS08A20_VMAX_8M_WDR 2317 // 10bit
|
||||
#define OS08A20_VMAX_5M_WDR OS08A20_VMAX_8M_WDR // crop from 8M
|
||||
#define OS08A20_VMAX_4M_WDR OS08A20_VMAX_8M_WDR
|
||||
#define OS08A20_VMAX_4M_1440P_WDR OS08A20_VMAX_8M_WDR
|
||||
#define OS08A20_VMAX_3M_WDR OS08A20_VMAX_8M_WDR
|
||||
#define OS08A20_VMAX_2M_WDR OS08A20_VMAX_8M_WDR
|
||||
|
||||
#define OS08A20_EXP_OFFSET_LINEAR 10
|
||||
#define OS08A20_EXP_OFFSET_WDR 18
|
||||
|
||||
#define OS08A20_REG_DELAY_CONFIG_NUM 0
|
||||
|
||||
// OS08A20 Register Address
|
||||
#define OS08A20_REG_ADDR_EXP_H 0x3501
|
||||
#define OS08A20_REG_ADDR_EXP_L 0x3502
|
||||
#define OS08A20_REG_ADDR_AGAIN_H 0x3508
|
||||
#define OS08A20_REG_ADDR_AGAIN_L 0x3509
|
||||
#define OS08A20_REG_ADDR_DGAIN_H 0x350a
|
||||
#define OS08A20_REG_ADDR_DGAIN_L 0x350b
|
||||
#define OS08A20_REG_ADDR_VMAX_H 0x380e
|
||||
#define OS08A20_REG_ADDR_VMAX_L 0x380f
|
||||
#define OS08A20_REG_ADDR_S_EXP_H 0x3511
|
||||
#define OS08A20_REG_ADDR_S_EXP_L 0x3512
|
||||
#define OS08A20_REG_ADDR_S_AGAIN_H 0x350c
|
||||
#define OS08A20_REG_ADDR_S_AGAIN_L 0x350d
|
||||
#define OS08A20_REG_ADDR_S_DGAIN_H 0x350e
|
||||
#define OS08A20_REG_ADDR_S_DGAIN_L 0x350f
|
||||
|
||||
typedef enum {
|
||||
OS08A20_REG_EXP_H_IDX = 0,
|
||||
OS08A20_REG_EXP_L_IDX,
|
||||
OS08A20_REG_AGAIN_H_IDX,
|
||||
OS08A20_REG_AGAIN_L_IDX,
|
||||
OS08A20_REG_DGAIN_H_IDX,
|
||||
OS08A20_REG_DGAIN_L_IDX,
|
||||
OS08A20_REG_VMAX_H_IDX,
|
||||
OS08A20_REG_VMAX_L_IDX,
|
||||
OS08A20_REG_L_MAX_NUM,
|
||||
|
||||
OS08A20_REG_S_EXP_H_IDX = OS08A20_REG_L_MAX_NUM,
|
||||
OS08A20_REG_S_EXP_L_IDX,
|
||||
OS08A20_REG_S_AGAIN_H_IDX,
|
||||
OS08A20_REG_S_AGAIN_L_IDX,
|
||||
OS08A20_REG_S_DGAIN_H_IDX,
|
||||
OS08A20_REG_S_DGAIN_L_IDX,
|
||||
OS08A20_REG_MAX_NUM
|
||||
} os08a20_reg_index;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // __OS08A20_H__
|
||||
+1407
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,43 @@
|
||||
#ifndef __OS08A20_CTRL_H__
|
||||
#define __OS08A20_CTRL_H__
|
||||
|
||||
#include "sns_comm.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define OS08A20_I2C_ADDR 0x6c
|
||||
#define OS08A20_ADDR_BYTE 2
|
||||
#define OS08A20_DATA_BYTE 1
|
||||
|
||||
// os08a20 specs list
|
||||
typedef enum {
|
||||
OS08A20_8M_LINEAR_MODE = 1, // 3840x2160
|
||||
OS08A20_5M_LINEAR_MODE, // 2560x1920
|
||||
OS08A20_4M_LINEAR_MODE, // 2688x1520
|
||||
OS08A20_4M_1440P_LINEAR_MODE, // 2560x1440
|
||||
OS08A20_3M_LINEAR_MODE, // 2048x1536
|
||||
OS08A20_2M_LINEAR_MODE, // 1920x1080
|
||||
|
||||
OS08A20_8M_WDR_MODE, // 3840x2160
|
||||
OS08A20_5M_WDR_MODE, // 2560x1920
|
||||
OS08A20_4M_WDR_MODE, // 2560x1920
|
||||
OS08A20_4M_1440P_WDR_MODE, // 2560x1440
|
||||
OS08A20_3M_WDR_MODE, // 2560x1920
|
||||
OS08A20_2M_WDR_MODE, // 1920x1080
|
||||
} os08a20_specs;
|
||||
|
||||
xmedia_s32 os08a20_i2c_init(xmedia_u32 dev, xmedia_s8 i2c_dev, xmedia_u32 i2c_addr);
|
||||
xmedia_s32 os08a20_i2c_exit(xmedia_u32 dev);
|
||||
xmedia_s32 os08a20_read_reg(xmedia_u32 dev, xmedia_u32 addr, xmedia_u32 *data);
|
||||
xmedia_s32 os08a20_write_reg(xmedia_u32 dev, xmedia_u32 addr, xmedia_u32 data);
|
||||
xmedia_s32 os08a20_set_mirror_flip(xmedia_u32 dev, xmedia_bool mirror_en, xmedia_bool flip_en);
|
||||
xmedia_s32 os08a20_init_image(xmedia_u32 dev, xmedia_u8 img_mode);
|
||||
xmedia_s32 os08a20_set_slave_addr(xmedia_u32 dev, xmedia_u32 slave_addr);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //__OS08A20_CTRL_H__
|
||||
+811
@@ -0,0 +1,811 @@
|
||||
#ifndef __OS08A20_EX_H__
|
||||
#define __OS08A20_EX_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
// Piris attr
|
||||
static const xmedia_isp_piris_attr g_os08a20_piris_attr = {
|
||||
0,
|
||||
1,
|
||||
94,
|
||||
62,
|
||||
// Step-F number mapping table. Must be from small to large. F1.0 is 1024 and F32.0 is 1
|
||||
{ 30, 35, 40, 45, 50, 56, 61, 67, 73, 79, 85, 92, 98, 105, 112, 120, 127, 135, 143, 150, 158,
|
||||
166, 174, 183, 191, 200, 208, 217, 225, 234, 243, 252, 261, 270, 279, 289, 298, 307, 316, 325, 335, 344,
|
||||
353, 362, 372, 381, 390, 399, 408, 417, 426, 435, 444, 453, 462, 470, 478, 486, 493, 500, 506, 512 },
|
||||
XMEDIA_ISP_IRIS_F_NO_1_4,
|
||||
XMEDIA_ISP_IRIS_F_NO_5_6
|
||||
};
|
||||
|
||||
static const xmedia_isp_awb_ccm g_os08a20_awb_ccm = {
|
||||
5,
|
||||
{
|
||||
{
|
||||
7504,
|
||||
{ 428,32914,32794,32853,482,32909,10,32963,441},
|
||||
},
|
||||
{
|
||||
6536,
|
||||
{ 435,32918,32797,32853,479,32906,13,32975,450},
|
||||
},
|
||||
{
|
||||
5074,
|
||||
{ 433,32896,32817,32864,483,32899,15,33003,476},
|
||||
},
|
||||
{
|
||||
4065,
|
||||
{ 463,32932,32811,32864,467,32883,25,33063,526 },
|
||||
},
|
||||
{
|
||||
2811,
|
||||
{ 480,32898,32862,32880,482,32882,30,33204,662},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const xmedia_isp_awb_ccm g_os08a20_awb_wdr_ccm = {
|
||||
4,
|
||||
{
|
||||
{
|
||||
6175,
|
||||
{ 440, 32967, 15, 32852, 424, 32852, 11, 33014, 491 },
|
||||
},
|
||||
{
|
||||
4990,
|
||||
{ 443, 32969, 14, 32860, 423, 32843, 13, 33044, 519 },
|
||||
},
|
||||
{
|
||||
3865,
|
||||
{ 450, 32973, 11, 32857, 407, 32830, 18, 33031, 501 },
|
||||
},
|
||||
{
|
||||
2450,
|
||||
{ 458, 32977, 7, 32853, 389, 32816, 24, 33018, 482 },
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const xmedia_isp_awb_agc_table g_os08a20_awb_agc_table = {
|
||||
// bvalid
|
||||
1,
|
||||
|
||||
// 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768
|
||||
// saturation
|
||||
{128,128,128,128,128,128,128,128,128,110,110,100,100,100,100,100}, //sat
|
||||
};
|
||||
|
||||
static const xmedia_isp_awb_agc_table g_os08a20_awb_wdr_agc_table = {
|
||||
// bvalid
|
||||
1,
|
||||
// saturation
|
||||
{100,100,100,100,90,80,70,60,55,55,50,50,50,50,45,40}
|
||||
};
|
||||
static const xmedia_isp_blc_attr os08a20_blc={
|
||||
0, //op_type
|
||||
{
|
||||
{256,256,256,256}, //black_level
|
||||
}, //manual_attr
|
||||
{
|
||||
12, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,102400,204800,409600,819200,1638400,3276800}, //iso_level
|
||||
{
|
||||
{256,256,256,256}, //black_level[0]
|
||||
{256,256,256,256}, //black_level[1]
|
||||
{256,256,256,256}, //black_level[2]
|
||||
{256,256,256,256}, //black_level[3]
|
||||
{256,256,256,256}, //black_level[4]
|
||||
{256,256,256,256}, //black_level[5]
|
||||
{256,256,256,256}, //black_level[6]
|
||||
{256,256,256,256}, //black_level[7]
|
||||
{256,256,256,256}, //black_level[8]
|
||||
{256,256,256,256}, //black_level[9]
|
||||
{257,257,257,257}, //black_level[10]
|
||||
{258,258,258,258}, //black_level[11]
|
||||
{256,256,256,256}, //black_level[12]
|
||||
{256,256,256,256}, //black_level[13]
|
||||
{256,256,256,256}, //black_level[14]
|
||||
{257,257,257,257}, //black_level[15]
|
||||
}, //black_level
|
||||
}, //auto_attr
|
||||
};
|
||||
|
||||
static const xmedia_isp_bnr_attr os08a20_bnr={
|
||||
1, //enable
|
||||
2, //ainr_pos_switch
|
||||
0, //coring_pos_switch
|
||||
0, //noise_reserve_enable
|
||||
{102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,103,104,105,106,107,108,108,108,108,108,108,108,108,108,108,108,115,115,115,115,123,123,123,123,131,131,131,131,138,138,138,138,146,146,146,146,154,154,154,154,161,161}, //noise_reserve_lut
|
||||
1600, //noise_profile_thd
|
||||
{ 0.0002985333333333, 0.0000000000000064, 0.0000002908888889, 0.0000000000000001, 0.0000000000023768 },
|
||||
{ 0.0002985333333333, 0.0000000000000064, 0.0000002908888889, 0.0000000000000001, 0.0000000000023768 },
|
||||
0, //snr_wdr_comp_en
|
||||
1, //tnr_enable
|
||||
0, //tnr_luma_comp_enable
|
||||
0, //tnr_wdr_comp_enable
|
||||
0, //op_type
|
||||
{
|
||||
12, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,102400,204800,409600,819200,1638400,3276800}, //iso_level
|
||||
{
|
||||
{282,282,282,282}, //snr_coarse_str[0]
|
||||
{282,282,282,282}, //snr_coarse_str[1]
|
||||
{307,307,307,307}, //snr_coarse_str[2]
|
||||
{333,333,333,333}, //snr_coarse_str[3]
|
||||
{358,358,358,358}, //snr_coarse_str[4]
|
||||
{358,358,358,358}, //snr_coarse_str[5]
|
||||
{358,358,358,358}, //snr_coarse_str[6]
|
||||
{358,358,358,358}, //snr_coarse_str[7]
|
||||
{358,358,358,358}, //snr_coarse_str[8]
|
||||
{358,358,358,358}, //snr_coarse_str[9]
|
||||
{358,358,358,358}, //snr_coarse_str[10]
|
||||
{358,358,358,358}, //snr_coarse_str[11]
|
||||
{358,358,358,358}, //snr_coarse_str[12]
|
||||
{358,358,358,358}, //snr_coarse_str[13]
|
||||
{358,358,358,358}, //snr_coarse_str[14]
|
||||
{358,358,358,358}, //snr_coarse_str[15]
|
||||
}, //snr_coarse_str
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_coring_wgt
|
||||
{
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[0]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[1]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[2]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[3]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[4]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[5]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[6]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[7]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[8]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[9]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[10]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[11]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[12]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[13]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[14]
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str[15]
|
||||
}, //snr_luma_nr_str
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //snr_center_luma_mode
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //snr_center_tnr_luma_mode
|
||||
{512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512}, //snr_wdr_comp_scl
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_noise_min
|
||||
{256,256,256,256,256,320,384,448,512,512,64,64,64,64,64,64}, //tnr_bayer_str
|
||||
{56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56}, //tnr_md_thd_low
|
||||
{112,112,112,112,112,112,112,112,112,112,112,112,112,112,112,112}, //tnr_md_thd_high
|
||||
{512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512}, //tnr_wgt_min
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //tnr_min_ratio
|
||||
{70,64,56,48,40,32,24,16,12,8,8,8,8,8,8,8}, //tnr_mot_bld_thd_low
|
||||
{140,128,112,96,80,64,48,32,24,16,16,16,16,16,16,16}, //tnr_mot_bld_thd_high
|
||||
{120,112,104,96,88,16,16,32,32,32,32,32,32,32,32,32}, //tnr_edge_md_thd_low
|
||||
{240,224,208,192,176,32,32,64,64,64,64,64,64,64,64,64}, //tnr_edge_md_thd_high
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_flat_md_scl
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_edge_md_scl
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //tnr_md_mode
|
||||
{1024,1024,1024,1024,896,768,640,512,256,128,128,128,128,128,128,128}, //tnr_luma_md_thd_low
|
||||
{2048,2048,2048,2048,2560,1024,1024,1024,512,256,256,256,256,256,256,256}, //tnr_luma_md_thd_high
|
||||
{256,256,256,256,256,256,256,256,320,320,320,320,320,320,320,320}, //tnr_dark_md_scl
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_bright_md_scl
|
||||
{
|
||||
{176,176,176}, //tnr_mot_scl[0]
|
||||
{176,176,176}, //tnr_mot_scl[1]
|
||||
{176,176,176}, //tnr_mot_scl[2]
|
||||
{176,176,176}, //tnr_mot_scl[3]
|
||||
{176,176,176}, //tnr_mot_scl[4]
|
||||
{176,176,176}, //tnr_mot_scl[5]
|
||||
{176,176,176}, //tnr_mot_scl[6]
|
||||
{176,176,176}, //tnr_mot_scl[7]
|
||||
{176,176,176}, //tnr_mot_scl[8]
|
||||
{176,176,176}, //tnr_mot_scl[9]
|
||||
{176,176,176}, //tnr_mot_scl[10]
|
||||
{176,176,176}, //tnr_mot_scl[11]
|
||||
{176,176,176}, //tnr_mot_scl[12]
|
||||
{176,176,176}, //tnr_mot_scl[13]
|
||||
{176,176,176}, //tnr_mot_scl[14]
|
||||
{176,176,176}, //tnr_mot_scl[15]
|
||||
}, //tnr_mot_scl
|
||||
{32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32}, //tnr_var_scl
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //tnr_mot_noise_luma_thd_low
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //tnr_mot_noise_luma_thd_high
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_mot_noise_dark_scl
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_mot_noise_bright_scl
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //tnr_mot_dpc_str
|
||||
{
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[0]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[1]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[2]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[3]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[4]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[5]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[6]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[7]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[8]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[9]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[10]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[11]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[12]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[13]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[14]
|
||||
{880,1280,1280,1536}, //tnr_mot_convg_thd[15]
|
||||
}, //tnr_mot_convg_thd
|
||||
{256,256,256,256,256,256,320,384,384,384,384,384,384,384,384,384}, //tnr_mot_noise_scl
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_mot_noise_scl_high
|
||||
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, //tnr_dpc_en
|
||||
{0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1}, //tnr_dp_mode
|
||||
{384,384,389,384,384,384,384,384,256,256,256,256,256,256,256,256}, //tnr_dp_thd_rb
|
||||
{384,384,384,384,384,384,384,384,256,256,256,256,256,256,256,256}, //tnr_dp_thd_g
|
||||
{128,128,128,128,128,256,256,384,384,384,384,384,384,384,384,384}, //tnr_dp_luma_thd_low
|
||||
{256,256,256,256,256,512,512,768,768,768,768,768,768,768,768,768}, //tnr_dp_luma_thd_high
|
||||
{256,256,256,256,256,224,192,160,128,128,128,128,128,128,128,128}, //tnr_dp_thd_low_dark_scl
|
||||
{256,256,256,256,256,256,224,192,160,128,128,128,128,128,128,128}, //tnr_dp_thd_high_dark_scl
|
||||
{
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[0]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[1]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[2]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[3]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[4]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[5]
|
||||
{128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[6]
|
||||
{64,96,128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[7]
|
||||
{32,64,96,128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[8]
|
||||
{0,32,64,96,128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[9]
|
||||
{0,32,64,96,128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[10]
|
||||
{0,32,64,96,128,160,192,224,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[11]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[12]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[13]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[14]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //tnr_luma_ratio[15]
|
||||
}, //tnr_luma_ratio
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //tnr_wdr_comp_scl
|
||||
}, //auto_attr
|
||||
{
|
||||
{128,128,128,128}, //snr_coarse_str
|
||||
128, //snr_coring_wgt
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //snr_luma_nr_str
|
||||
0, //snr_center_luma_mode
|
||||
0, //snr_center_tnr_luma_mode
|
||||
512, //snr_wdr_comp_scl
|
||||
335, //tnr_noise_min
|
||||
512, //tnr_bayer_str
|
||||
8, //tnr_md_thd_low
|
||||
16, //tnr_md_thd_high
|
||||
512, //tnr_wgt_min
|
||||
256, //tnr_min_ratio
|
||||
6, //tnr_mot_bld_thd_low
|
||||
12, //tnr_mot_bld_thd_high
|
||||
16, //tnr_edge_md_thd_low
|
||||
48, //tnr_edge_md_thd_high
|
||||
256, //tnr_flat_md_scl
|
||||
256, //tnr_edge_md_scl
|
||||
3, //tnr_md_mode
|
||||
128, //tnr_luma_md_thd_low
|
||||
256, //tnr_luma_md_thd_high
|
||||
512, //tnr_dark_md_scl
|
||||
256, //tnr_bright_md_scl
|
||||
{144,144,144}, //tnr_mot_scl
|
||||
32, //tnr_var_scl
|
||||
128, //tnr_mot_noise_luma_thd_low
|
||||
256, //tnr_mot_noise_luma_thd_high
|
||||
256, //tnr_mot_noise_dark_scl
|
||||
256, //tnr_mot_noise_bright_scl
|
||||
64, //tnr_mot_dpc_str
|
||||
{360,512,1280,1536}, //tnr_mot_convg_thd
|
||||
256, //tnr_mot_noise_scl
|
||||
256, //tnr_mot_noise_scl_high
|
||||
1, //tnr_dpc_en
|
||||
1, //tnr_dp_mode
|
||||
68, //tnr_dp_thd_rb
|
||||
105, //tnr_dp_thd_g
|
||||
128, //tnr_dp_luma_thd_low
|
||||
256, //tnr_dp_luma_thd_high
|
||||
256, //tnr_dp_thd_low_dark_scl
|
||||
256, //tnr_dp_thd_high_dark_scl
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //tnr_luma_ratio
|
||||
0, //tnr_wdr_comp_scl
|
||||
}, //manual_attr
|
||||
{
|
||||
{64,64}, //wdr_frame_str
|
||||
}, //wdr
|
||||
};
|
||||
|
||||
#if 0
|
||||
static const xmedia_isp_anti_false_color_attr os08a20__anti_false_color={
|
||||
|
||||
1,// enable;
|
||||
0,// op_type;
|
||||
{
|
||||
10,// iso_num;
|
||||
{100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200,},// iso_level[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{0,0,0,0,0,0,0,0,0,0,},// edge_thd[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{0,0,0,0,0,0,0,0,0,0,},// edge_gain[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{0,0,0,0,0,0,0,0,0,0,},// fcr_str[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
xmedia_u8 sat_low[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
xmedia_u8 sat_high[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
},// auto_attr;
|
||||
{
|
||||
xmedia_u8 edge_thd; // 去伪彩阈值
|
||||
xmedia_u8 edge_gain; // 去伪彩边缘增益
|
||||
xmedia_u8 fcr_str; // 去伪彩强度
|
||||
xmedia_u8 sat_low; // 去伪彩饱和度低阈值
|
||||
xmedia_u8 sat_high; // 去伪彩饱和度高阈值
|
||||
},// manual_attr;
|
||||
|
||||
};
|
||||
#endif
|
||||
static const xmedia_isp_cr_attr os08a20_crosstalk={
|
||||
|
||||
1, //enable
|
||||
0, //op_type
|
||||
{
|
||||
31, //slope
|
||||
100, //threshold
|
||||
512, //np_offset
|
||||
}, //manual_attr
|
||||
{
|
||||
12, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,102400,204800,409600,819200,1638400,3276800}, //iso_level
|
||||
{31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31}, //slope
|
||||
{300,300,400,500,600,700,800,900,1000,1000,1000,1000,1000,1000,1000,1000}, //threshold
|
||||
{512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512}, //npOffset
|
||||
}, //auto_attr
|
||||
};
|
||||
|
||||
static const xmedia_isp_csc_attr os08a20_csc={
|
||||
1,// enable;
|
||||
1,// color_gamut;
|
||||
50,// hue;
|
||||
50,// luma;
|
||||
50,// contrast;
|
||||
50,// saturation;
|
||||
0,// limited_range_en;
|
||||
1,// ext_csc_en;
|
||||
1,// ct_mode_en;
|
||||
{
|
||||
{0,0,0},// csc_idc[XMEDIA_ISP_CSC_INPUT_DC_NUM];
|
||||
{0,128,128},// csc_odc[XMEDIA_ISP_CSC_OUTPUT_DC_NUM];
|
||||
{213,715,72,-117,-394,511,511,-464,-47}
|
||||
},// csc_matrix;
|
||||
|
||||
};
|
||||
static const xmedia_isp_demosaic_attr os08a20_demosaic={
|
||||
1, //enable
|
||||
0, //op_type
|
||||
{
|
||||
12, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,102400,204800,409600,819200,1638400,3276800}, //iso_level
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //mf_de_str
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //mf_de_osh_str
|
||||
{128,128,128,128,128,128,128,128,128,128,128,128,128,128,128,128}, //mf_de_ush_str
|
||||
{128,100,80,64,64,64,64,64,64,64,64,64,64,64,64,64}, //hf_de_str
|
||||
{3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4}, //hf_smooth_range
|
||||
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, //detail_smooth_str
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //detail_mf_de_bias
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //detail_hf_de_bias
|
||||
}, //auto_attr
|
||||
{
|
||||
32, //mf_de_str
|
||||
128, //mf_de_osh_str
|
||||
128, //mf_de_ush_str
|
||||
32, //hf_de_str
|
||||
4, //hf_smooth_range
|
||||
1, //detail_smooth_str
|
||||
0, //detail_mf_de_bias
|
||||
0, //detail_hf_de_bias
|
||||
}, //manual_attr
|
||||
};
|
||||
static const xmedia_isp_dehaze_attr os08a20_dehaze={
|
||||
1, //enable
|
||||
0, //userlut_enable
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //dehaze_lut
|
||||
1, //opType
|
||||
{
|
||||
1, //strength
|
||||
{288,284,280,276,272,268,264,260,258,256,256,256,256,256,256,256,256}, //bmap_curve
|
||||
{256,256,258,260,262,264,266,268,270,272,272,272,272,272,272,272,272}, //dmap_curve
|
||||
}, //manual_attr
|
||||
{
|
||||
16, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,102400,204800,409600,819200,1638400,3276800}, //iso_level
|
||||
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, //strength
|
||||
{
|
||||
{360,350,340,330,320,310,300,290,280,270,266,262,260,258,256,256,256}, //bmap_curve[0]
|
||||
{360,350,340,330,320,310,300,290,280,270,266,262,260,258,256,256,256}, //bmap_curve[1]
|
||||
{360,350,340,330,320,310,300,290,280,270,266,262,260,258,256,256,256}, //bmap_curve[2]
|
||||
{360,350,340,330,320,310,300,290,280,270,266,262,260,258,256,256,256}, //bmap_curve[3]
|
||||
{304,296,288,280,276,272,268,264,260,258,256,256,256,256,256,256,256}, //bmap_curve[4]
|
||||
{304,296,288,280,276,272,268,264,260,258,256,256,256,256,256,256,256}, //bmap_curve[5]
|
||||
{304,296,288,280,276,272,268,264,260,258,256,256,256,256,256,256,256}, //bmap_curve[6]
|
||||
{288,284,280,276,272,268,264,260,258,256,256,256,256,256,256,256,256}, //bmap_curve[7]
|
||||
{288,284,280,276,272,268,264,260,258,256,256,256,256,256,256,256,256}, //bmap_curve[8]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[9]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[10]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[11]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[12]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[13]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[14]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //bmap_curve[15]
|
||||
}, //bmap_curve
|
||||
{
|
||||
{256,256,260,264,268,270,272,274,276,278,280,280,280,280,280,280,280}, //dmap_curve[0]
|
||||
{256,256,260,264,268,270,272,274,276,278,280,280,280,280,280,280,280}, //dmap_curve[1]
|
||||
{256,256,260,264,268,270,272,274,276,278,280,280,280,280,280,280,280}, //dmap_curve[2]
|
||||
{256,256,260,264,268,270,272,274,276,278,280,280,280,280,280,280,280}, //dmap_curve[3]
|
||||
{256,256,258,260,262,264,266,268,270,272,272,272,272,272,272,272,272}, //dmap_curve[4]
|
||||
{256,256,258,260,262,264,266,268,270,272,272,272,272,272,272,272,272}, //dmap_curve[5]
|
||||
{256,256,258,260,262,264,266,268,270,272,272,272,272,272,272,272,272}, //dmap_curve[6]
|
||||
{256,256,257,258,259,260,262,264,266,268,268,268,268,268,268,268,268}, //dmap_curve[7]
|
||||
{256,256,257,258,259,260,262,264,266,268,268,268,268,268,268,268,268}, //dmap_curve[8]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[9]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[10]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[11]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[12]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[13]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[14]
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //dmap_curve[15]
|
||||
}, //dmap_curve
|
||||
}, //auto_attr
|
||||
128, //temporal_incr_coef
|
||||
128, //temporal_decr_coef
|
||||
};
|
||||
static const xmedia_isp_gamma_attr os08a20_gamma={
|
||||
1, //enable
|
||||
3, //curve_type
|
||||
0, //op_type
|
||||
{
|
||||
{0,16,32,49,65,81,98,114,130,147,163,179,196,212,228,245,261,277,294,310,327,343,359,376,392,408,425,441,457,474,490,506,523,539,555,572,588,605,621,637,653,668,684,699,713,728,742,757,770,784,798,811,824,837,850,863,875,887,900,912,923,935,947,958,970,981,
|
||||
992,1003,1014,1025,1035,1046,1056,1067,1077,1087,1097,1107,1117,1127,1136,1146,1156,1165,1174,1184,1193,1202,1211,1220,1229,1238,1247,1255,1264,1273,1281,1290,1298,1306,1315,1323,1331,1339,1347,1355,1363,1371,1379,1387,1395,1402,1410,1418,1425,1433,1440,1448,
|
||||
1455,1462,1470,1477,1484,1491,1498,1505,1512,1519,1526,1533,1540,1547,1554,1561,1567,1574,1581,1587,1594,1601,1607,1614,1620,1627,1633,1639,1646,1652,1658,1665,1671,1677,1683,1689,1696,1702,1708,1714,1720,1726,1732,1738,1744,1749,1755,1761,1767,1773,1778,1784,
|
||||
1790,1796,1801,1807,1813,1818,1824,1829,1835,1840,1846,1851,1857,1862,1868,1873,1878,1884,1889,1894,1900,1905,1910,1915,1920,1926,1931,1936,1941,1946,1951,1956,1961,1966,1971,1976,1981,1986,1991,1996,2001,2006,2011,2016,2021,2026,2030,2035,2040,2045,2050,2054,
|
||||
2059,2064,2069,2073,2078,2083,2087,2092,2096,2101,2106,2110,2115,2119,2124,2128,2133,2137,2142,2146,2151,2155,2160,2164,2169,2173,2177,2182,2186,2190,2195,2199,2203,2208,2212,2216,2220,2225,2229,2233,2237,2242,2246,2250,2254,2258,2262,2267,2271,2275,2279,2283,
|
||||
2287,2291,2295,2299,2303,2307,2311,2315,2319,2323,2327,2331,2335,2339,2343,2347,2351,2355,2359,2363,2367,2371,2374,2378,2382,2386,2390,2394,2397,2401,2405,2409,2413,2416,2420,2424,2428,2431,2435,2439,2443,2446,2450,2454,2457,2461,2465,2468,2472,2476,2479,2483,
|
||||
2487,2490,2494,2497,2501,2504,2508,2512,2515,2519,2522,2526,2529,2533,2536,2540,2543,2547,2550,2554,2557,2561,2564,2568,2571,2575,2578,2581,2585,2588,2592,2595,2598,2602,2605,2608,2612,2615,2619,2622,2625,2629,2632,2635,2639,2642,2645,2648,2652,2655,2658,2661,
|
||||
2665,2668,2671,2674,2678,2681,2684,2687,2691,2694,2697,2700,2703,2707,2710,2713,2716,2719,2722,2726,2729,2732,2735,2738,2741,2744,2747,2751,2754,2757,2760,2763,2766,2769,2772,2775,2778,2781,2784,2787,2790,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,
|
||||
2827,2830,2832,2835,2838,2841,2844,2847,2850,2853,2856,2859,2862,2865,2868,2871,2874,2876,2879,2882,2885,2888,2891,2894,2897,2899,2902,2905,2908,2911,2914,2917,2919,2922,2925,2928,2931,2934,2936,2939,2942,2945,2948,2950,2953,2956,2959,2961,2964,2967,2970,2972,
|
||||
2975,2978,2981,2983,2986,2989,2992,2994,2997,3000,3002,3005,3008,3011,3013,3016,3019,3021,3024,3027,3029,3032,3035,3037,3040,3043,3045,3048,3051,3053,3056,3059,3061,3064,3066,3069,3072,3074,3077,3079,3082,3085,3087,3090,3092,3095,3098,3100,3103,3105,3108,3110,
|
||||
3113,3116,3118,3121,3123,3126,3128,3131,3133,3136,3138,3141,3143,3146,3148,3151,3153,3156,3158,3161,3163,3166,3168,3171,3173,3176,3178,3181,3183,3186,3188,3191,3193,3196,3198,3200,3203,3205,3208,3210,3213,3215,3218,3220,3222,3225,3227,3230,3232,3234,3237,3239,
|
||||
3242,3244,3246,3249,3251,3254,3256,3258,3261,3263,3265,3268,3270,3273,3275,3277,3280,3282,3284,3287,3289,3291,3294,3296,3298,3301,3303,3305,3308,3310,3312,3315,3317,3319,3322,3324,3326,3328,3331,3333,3335,3338,3340,3342,3344,3347,3349,3351,3354,3356,3358,3360,
|
||||
3363,3365,3367,3369,3372,3374,3376,3378,3381,3383,3385,3387,3390,3392,3394,3396,3398,3401,3403,3405,3407,3409,3412,3414,3416,3418,3420,3423,3425,3427,3429,3431,3434,3436,3438,3440,3442,3444,3447,3449,3451,3453,3455,3457,3460,3462,3464,3466,3468,3470,3473,3475,
|
||||
3477,3479,3481,3483,3485,3487,3490,3492,3494,3496,3498,3500,3502,3504,3507,3509,3511,3513,3515,3517,3519,3521,3523,3525,3527,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3559,3561,3563,3565,3567,3569,3571,3573,3575,3577,3579,3581,3583,
|
||||
3585,3587,3589,3591,3593,3595,3597,3599,3601,3603,3605,3607,3609,3611,3613,3615,3617,3619,3621,3623,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3649,3651,3653,3655,3657,3659,3661,3663,3665,3667,3669,3671,3673,3675,3677,3679,3681,3682,3684,3686,
|
||||
3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3709,3711,3713,3715,3717,3719,3721,3723,3725,3727,3729,3730,3732,3734,3736,3738,3740,3742,3744,3746,3748,3749,3751,3753,3755,3757,3759,3761,3763,3764,3766,3768,3770,3772,3774,3776,3777,3779,3781,3783,3785,
|
||||
3787,3789,3790,3792,3794,3796,3798,3800,3802,3803,3805,3807,3809,3811,3813,3814,3816,3818,3820,3822,3824,3825,3827,3829,3831,3833,3834,3836,3838,3840,3842,3844,3845,3847,3849,3851,3853,3854,3856,3858,3860,3862,3863,3865,3867,3869,3870,3872,3874,3876,3878,3879,
|
||||
3881,3883,3885,3886,3888,3890,3892,3894,3895,3897,3899,3901,3902,3904,3906,3908,3909,3911,3913,3915,3916,3918,3920,3922,3923,3925,3927,3929,3930,3932,3934,3936,3937,3939,3941,3943,3944,3946,3948,3949,3951,3953,3955,3956,3958,3960,3961,3963,3965,3967,3968,3970,
|
||||
3972,3973,3975,3977,3979,3980,3982,3984,3985,3987,3989,3990,3992,3994,3996,3997,3999,4001,4002,4004,4006,4007,4009,4011,4012,4014,4016,4017,4019,4021,4022,4024,4026,4027,4029,4031,4032,4034,4036,4037,4039,4041,4042,4044,4046,4047,4049,4051,4052,4054,4056,4057,
|
||||
4059,4061,4062,4064,4066,4067,4069,4070,4072,4074,4075,4077,4079,4080,4082,4084,4085,4087,4088,4090,4092,4093,4095}, //table[0]
|
||||
},
|
||||
{
|
||||
4, //iso_num
|
||||
{100,3200,25600,102400}, //iso_level
|
||||
{
|
||||
{0,16,32,49,65,81,98,114,130,147,163,179,196,212,228,245,261,277,294,310,327,343,359,376,392,408,425,441,457,474,490,506,523,539,555,572,588,605,621,637,653,668,684,699,713,728,742,757,770,784,798,811,824,837,850,863,875,887,900,912,923,935,947,958,970,981,
|
||||
992,1003,1014,1025,1035,1046,1056,1067,1077,1087,1097,1107,1117,1127,1136,1146,1156,1165,1174,1184,1193,1202,1211,1220,1229,1238,1247,1255,1264,1273,1281,1290,1298,1306,1315,1323,1331,1339,1347,1355,1363,1371,1379,1387,1395,1402,1410,1418,1425,1433,1440,1448,
|
||||
1455,1462,1470,1477,1484,1491,1498,1505,1512,1519,1526,1533,1540,1547,1554,1561,1567,1574,1581,1587,1594,1601,1607,1614,1620,1627,1633,1639,1646,1652,1658,1665,1671,1677,1683,1689,1696,1702,1708,1714,1720,1726,1732,1738,1744,1749,1755,1761,1767,1773,1778,1784,
|
||||
1790,1796,1801,1807,1813,1818,1824,1829,1835,1840,1846,1851,1857,1862,1868,1873,1878,1884,1889,1894,1900,1905,1910,1915,1920,1926,1931,1936,1941,1946,1951,1956,1961,1966,1971,1976,1981,1986,1991,1996,2001,2006,2011,2016,2021,2026,2030,2035,2040,2045,2050,2054,
|
||||
2059,2064,2069,2073,2078,2083,2087,2092,2096,2101,2106,2110,2115,2119,2124,2128,2133,2137,2142,2146,2151,2155,2160,2164,2169,2173,2177,2182,2186,2190,2195,2199,2203,2208,2212,2216,2220,2225,2229,2233,2237,2242,2246,2250,2254,2258,2262,2267,2271,2275,2279,2283,
|
||||
2287,2291,2295,2299,2303,2307,2311,2315,2319,2323,2327,2331,2335,2339,2343,2347,2351,2355,2359,2363,2367,2371,2374,2378,2382,2386,2390,2394,2397,2401,2405,2409,2413,2416,2420,2424,2428,2431,2435,2439,2443,2446,2450,2454,2457,2461,2465,2468,2472,2476,2479,2483,
|
||||
2487,2490,2494,2497,2501,2504,2508,2512,2515,2519,2522,2526,2529,2533,2536,2540,2543,2547,2550,2554,2557,2561,2564,2568,2571,2575,2578,2581,2585,2588,2592,2595,2598,2602,2605,2608,2612,2615,2619,2622,2625,2629,2632,2635,2639,2642,2645,2648,2652,2655,2658,2661,
|
||||
2665,2668,2671,2674,2678,2681,2684,2687,2691,2694,2697,2700,2703,2707,2710,2713,2716,2719,2722,2726,2729,2732,2735,2738,2741,2744,2747,2751,2754,2757,2760,2763,2766,2769,2772,2775,2778,2781,2784,2787,2790,2794,2797,2800,2803,2806,2809,2812,2815,2818,2821,2824,
|
||||
2827,2830,2832,2835,2838,2841,2844,2847,2850,2853,2856,2859,2862,2865,2868,2871,2874,2876,2879,2882,2885,2888,2891,2894,2897,2899,2902,2905,2908,2911,2914,2917,2919,2922,2925,2928,2931,2934,2936,2939,2942,2945,2948,2950,2953,2956,2959,2961,2964,2967,2970,2972,
|
||||
2975,2978,2981,2983,2986,2989,2992,2994,2997,3000,3002,3005,3008,3011,3013,3016,3019,3021,3024,3027,3029,3032,3035,3037,3040,3043,3045,3048,3051,3053,3056,3059,3061,3064,3066,3069,3072,3074,3077,3079,3082,3085,3087,3090,3092,3095,3098,3100,3103,3105,3108,3110,
|
||||
3113,3116,3118,3121,3123,3126,3128,3131,3133,3136,3138,3141,3143,3146,3148,3151,3153,3156,3158,3161,3163,3166,3168,3171,3173,3176,3178,3181,3183,3186,3188,3191,3193,3196,3198,3200,3203,3205,3208,3210,3213,3215,3218,3220,3222,3225,3227,3230,3232,3234,3237,3239,
|
||||
3242,3244,3246,3249,3251,3254,3256,3258,3261,3263,3265,3268,3270,3273,3275,3277,3280,3282,3284,3287,3289,3291,3294,3296,3298,3301,3303,3305,3308,3310,3312,3315,3317,3319,3322,3324,3326,3328,3331,3333,3335,3338,3340,3342,3344,3347,3349,3351,3354,3356,3358,3360,
|
||||
3363,3365,3367,3369,3372,3374,3376,3378,3381,3383,3385,3387,3390,3392,3394,3396,3398,3401,3403,3405,3407,3409,3412,3414,3416,3418,3420,3423,3425,3427,3429,3431,3434,3436,3438,3440,3442,3444,3447,3449,3451,3453,3455,3457,3460,3462,3464,3466,3468,3470,3473,3475,
|
||||
3477,3479,3481,3483,3485,3487,3490,3492,3494,3496,3498,3500,3502,3504,3507,3509,3511,3513,3515,3517,3519,3521,3523,3525,3527,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3559,3561,3563,3565,3567,3569,3571,3573,3575,3577,3579,3581,3583,
|
||||
3585,3587,3589,3591,3593,3595,3597,3599,3601,3603,3605,3607,3609,3611,3613,3615,3617,3619,3621,3623,3625,3627,3629,3631,3633,3635,3637,3639,3641,3643,3645,3647,3649,3651,3653,3655,3657,3659,3661,3663,3665,3667,3669,3671,3673,3675,3677,3679,3681,3682,3684,3686,
|
||||
3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3709,3711,3713,3715,3717,3719,3721,3723,3725,3727,3729,3730,3732,3734,3736,3738,3740,3742,3744,3746,3748,3749,3751,3753,3755,3757,3759,3761,3763,3764,3766,3768,3770,3772,3774,3776,3777,3779,3781,3783,3785,
|
||||
3787,3789,3790,3792,3794,3796,3798,3800,3802,3803,3805,3807,3809,3811,3813,3814,3816,3818,3820,3822,3824,3825,3827,3829,3831,3833,3834,3836,3838,3840,3842,3844,3845,3847,3849,3851,3853,3854,3856,3858,3860,3862,3863,3865,3867,3869,3870,3872,3874,3876,3878,3879,
|
||||
3881,3883,3885,3886,3888,3890,3892,3894,3895,3897,3899,3901,3902,3904,3906,3908,3909,3911,3913,3915,3916,3918,3920,3922,3923,3925,3927,3929,3930,3932,3934,3936,3937,3939,3941,3943,3944,3946,3948,3949,3951,3953,3955,3956,3958,3960,3961,3963,3965,3967,3968,3970,
|
||||
3972,3973,3975,3977,3979,3980,3982,3984,3985,3987,3989,3990,3992,3994,3996,3997,3999,4001,4002,4004,4006,4007,4009,4011,4012,4014,4016,4017,4019,4021,4022,4024,4026,4027,4029,4031,4032,4034,4036,4037,4039,4041,4042,4044,4046,4047,4049,4051,4052,4054,4056,4057,
|
||||
4059,4061,4062,4064,4066,4067,4069,4070,4072,4074,4075,4077,4079,4080,4082,4084,4085,4087,4088,4090,4092,4093,4095}, //table[0]
|
||||
{0,15,30,45,60,75,91,106,121,136,151,167,182,197,212,227,242,258,273,288,303,318,334,349,364,379,394,409,425,440,455,470,485,501,516,531,546,561,576,592,607,622,637,652,667,682,697,711,725,739,753,766,780,793,806,818,831,844,856,868,880,892,904,915,927,938,
|
||||
950,961,972,983,994,1004,1015,1025,1036,1046,1056,1066,1076,1086,1096,1106,1115,1125,1135,1144,1153,1163,1172,1181,1190,1199,1208,1217,1225,1234,1243,1251,1260,1268,1277,1285,1293,1302,1310,1318,1326,1334,1342,1350,1358,1366,1373,1381,1389,1396,1404,1411,
|
||||
1419,1426,1434,1441,1448,1456,1463,1470,1477,1484,1491,1498,1505,1512,1519,1526,1533,1540,1547,1553,1560,1567,1573,1580,1586,1593,1600,1606,1612,1619,1625,1632,1638,1644,1650,1657,1663,1669,1675,1681,1687,1693,1700,1706,1712,1717,1723,1729,1735,1741,1747,
|
||||
1753,1759,1764,1770,1776,1781,1787,1793,1798,1804,1810,1815,1821,1826,1832,1837,1843,1848,1853,1859,1864,1870,1875,1880,1885,1890,1895,1900,1905,1909,1914,1918,1922,1926,1930,1934,1937,1941,1944,1948,1951,1954,1957,1961,1964,1967,1970,1973,1976,1980,1983,
|
||||
1986,1989,1992,1996,1999,2003,2007,2010,2014,2019,2023,2027,2031,2035,2040,2044,2049,2053,2058,2062,2067,2072,2077,2082,2087,2093,2098,2104,2109,2115,2120,2125,2131,2136,2140,2145,2149,2153,2157,2160,2163,2166,2169,2172,2175,2177,2180,2182,2185,2188,2191,
|
||||
2194,2197,2200,2204,2207,2211,2215,2219,2222,2226,2230,2234,2237,2241,2244,2248,2251,2254,2257,2260,2262,2265,2267,2270,2272,2274,2276,2278,2281,2283,2285,2287,2290,2292,2294,2297,2299,2301,2304,2306,2309,2311,2314,2317,2319,2322,2324,2327,2329,2332,2334,
|
||||
2337,2340,2342,2345,2348,2350,2353,2355,2358,2361,2363,2366,2369,2372,2374,2377,2380,2382,2385,2388,2391,2393,2396,2399,2402,2405,2407,2410,2413,2416,2419,2421,2424,2427,2430,2433,2436,2439,2441,2444,2447,2450,2453,2456,2459,2462,2465,2468,2471,2473,2476,
|
||||
2479,2482,2485,2488,2491,2494,2497,2500,2503,2506,2509,2512,2515,2518,2521,2524,2527,2530,2533,2536,2540,2543,2546,2549,2552,2555,2558,2561,2564,2567,2570,2573,2577,2580,2583,2586,2589,2592,2595,2598,2602,2605,2608,2611,2614,2617,2620,2624,2627,2630,2633,
|
||||
2636,2639,2643,2646,2649,2652,2655,2658,2662,2665,2668,2671,2674,2678,2681,2684,2687,2690,2694,2697,2700,2703,2707,2710,2713,2716,2719,2723,2726,2729,2732,2736,2739,2742,2745,2749,2752,2755,2758,2761,2765,2768,2771,2774,2778,2781,2784,2787,2791,2794,2797,
|
||||
2800,2804,2807,2810,2813,2817,2820,2823,2826,2830,2833,2836,2839,2843,2846,2849,2852,2856,2859,2862,2865,2868,2872,2875,2878,2881,2885,2888,2891,2894,2898,2901,2904,2907,2910,2914,2917,2920,2923,2927,2930,2933,2936,2939,2943,2946,2949,2952,2955,2959,2962,
|
||||
2965,2968,2971,2974,2978,2981,2984,2987,2990,2993,2997,3000,3003,3006,3009,3012,3015,3019,3022,3025,3028,3031,3034,3037,3040,3043,3047,3050,3053,3056,3059,3062,3065,3068,3071,3074,3077,3080,3083,3086,3089,3092,3096,3099,3102,3105,3108,3111,3114,3117,3120,
|
||||
3122,3124,3126,3128,3130,3132,3135,3137,3139,3141,3143,3145,3148,3150,3152,3154,3156,3159,3161,3163,3165,3168,3170,3172,3174,3177,3179,3181,3183,3186,3188,3190,3193,3195,3197,3199,3202,3204,3206,3209,3211,3213,3216,3218,3220,3223,3225,3227,3230,3232,3234,
|
||||
3237,3239,3241,3244,3246,3249,3251,3253,3256,3258,3260,3263,3265,3268,3270,3272,3275,3277,3280,3282,3285,3287,3289,3292,3294,3297,3299,3302,3304,3306,3309,3311,3314,3316,3319,3321,3324,3326,3329,3331,3333,3336,3338,3341,3343,3346,3348,3351,3353,3356,3358,
|
||||
3361,3363,3366,3368,3371,3373,3376,3378,3381,3383,3386,3388,3391,3393,3396,3398,3401,3403,3406,3408,3411,3414,3416,3419,3421,3424,3426,3429,3431,3434,3436,3439,3441,3444,3446,3449,3451,3454,3457,3459,3462,3464,3467,3469,3472,3474,3477,3479,3482,3484,3487,
|
||||
3490,3492,3495,3497,3500,3502,3505,3507,3510,3512,3515,3518,3520,3523,3525,3528,3530,3533,3535,3538,3540,3543,3545,3548,3550,3553,3556,3558,3561,3563,3566,3568,3571,3573,3576,3578,3581,3583,3586,3588,3591,3593,3596,3598,3601,3603,3606,3608,3611,3613,3616,
|
||||
3618,3621,3623,3626,3628,3631,3633,3636,3638,3641,3643,3646,3648,3651,3653,3656,3658,3661,3663,3666,3668,3671,3673,3675,3678,3680,3683,3685,3688,3690,3693,3695,3697,3700,3702,3705,3707,3710,3712,3714,3717,3719,3722,3724,3726,3729,3731,3733,3736,3738,3741,
|
||||
3743,3745,3748,3750,3752,3755,3757,3760,3762,3764,3767,3769,3771,3774,3776,3778,3780,3783,3785,3787,3790,3792,3794,3797,3799,3801,3803,3806,3808,3810,3812,3815,3817,3819,3821,3824,3826,3828,3830,3832,3835,3837,3839,3841,3843,3846,3848,3850,3852,3854,3856,
|
||||
3859,3861,3863,3865,3867,3869,3871,3874,3876,3878,3880,3882,3884,3886,3888,3890,3892,3894,3897,3899,3901,3903,3905,3907,3909,3911,3913,3915,3917,3919,3921,3923,3925,3927,3929,3931,3933,3934,3936,3938,3940,3942,3944,3946,3948,3950,3952,3953,3955,3957,3959,
|
||||
3961,3963,3965,3966,3968,3970,3972,3974,3975,3977,3979,3981,3983,3984,3986,3988,3990,3991,3993,3995,3996,3998,4000,4001,4003,4005,4006,4008,4010,4011,4013,4015,4016,4018,4019,4021,4023,4024,4026,4027,4029,4030,4032,4033,4035,4036,4038,4039,4041,4042,4044,
|
||||
4045,4047,4048,4050,4051,4052,4054,4055,4057,4058,4059,4061,4062,4063,4065,4066,4067,4069,4070,4071,4073,4074,4075,4076,4078,4079,4080,4081,4082,4084,4085,4086,4087,4088,4089,4091,4092,4093,4094,4095}, //table[1]
|
||||
{0,16,32,48,65,81,97,114,131,147,164,180,197,214,230,247,263,280,296,312,328,344,360,376,392,407,422,437,452,467,481,495,509,523,536,549,562,575,588,600,613,625,637,649,661,673,684,696,707,718,729,740,751,762,773,783,794,805,815,826,836,846,857,867,877,887,
|
||||
897,907,917,927,937,946,956,965,975,984,993,1002,1012,1021,1029,1038,1047,1056,1064,1073,1081,1090,1098,1107,1115,1123,1131,1139,1147,1155,1163,1171,1179,1186,1194,1201,1209,1216,1223,1230,1237,1244,1251,1258,1265,1272,1278,1285,1291,1298,1305,1311,1317,
|
||||
1324,1330,1336,1343,1349,1355,1361,1368,1374,1380,1386,1392,1398,1404,1410,1416,1422,1427,1433,1439,1444,1450,1455,1461,1466,1472,1477,1482,1488,1493,1498,1504,1509,1515,1520,1525,1531,1536,1542,1547,1552,1558,1564,1569,1575,1580,1586,1591,1597,1603,1608,
|
||||
1614,1619,1625,1631,1636,1642,1647,1653,1658,1664,1669,1675,1680,1686,1691,1697,1702,1708,1713,1718,1723,1729,1734,1739,1744,1750,1755,1760,1765,1770,1775,1780,1785,1790,1795,1800,1805,1810,1815,1820,1825,1830,1835,1839,1844,1849,1854,1859,1863,1868,1873,
|
||||
1878,1883,1887,1892,1897,1901,1906,1911,1915,1920,1925,1929,1934,1939,1943,1948,1952,1957,1961,1966,1970,1975,1979,1984,1988,1993,1997,2001,2006,2010,2014,2019,2023,2027,2032,2036,2040,2044,2049,2053,2057,2061,2065,2069,2074,2078,2082,2086,2090,2094,2098,
|
||||
2102,2106,2110,2114,2118,2122,2126,2130,2134,2138,2141,2145,2149,2153,2157,2161,2165,2169,2173,2177,2181,2185,2189,2193,2196,2200,2204,2208,2212,2216,2220,2223,2227,2231,2235,2239,2242,2246,2250,2254,2257,2261,2265,2269,2272,2276,2280,2283,2287,2291,2294,
|
||||
2298,2302,2306,2309,2313,2316,2320,2324,2327,2331,2335,2338,2342,2345,2349,2353,2356,2360,2363,2367,2371,2374,2378,2381,2385,2388,2392,2395,2399,2402,2406,2409,2413,2416,2420,2423,2427,2430,2434,2437,2441,2444,2447,2451,2454,2458,2461,2465,2468,2471,2475,
|
||||
2478,2482,2485,2488,2492,2495,2498,2502,2505,2509,2512,2515,2519,2522,2525,2529,2532,2535,2538,2542,2545,2548,2552,2555,2558,2561,2565,2568,2571,2575,2578,2581,2584,2588,2591,2594,2597,2600,2604,2607,2610,2613,2617,2620,2623,2626,2629,2632,2636,2639,2642,
|
||||
2645,2648,2651,2655,2658,2661,2664,2667,2670,2673,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2708,2711,2714,2717,2720,2723,2726,2729,2732,2735,2738,2741,2744,2747,2750,2753,2756,2759,2762,2765,2769,2772,2775,2778,2781,2784,2786,2789,2792,2795,2798,
|
||||
2801,2804,2807,2810,2813,2816,2819,2822,2825,2828,2831,2834,2837,2840,2843,2846,2849,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2880,2883,2886,2889,2892,2895,2898,2901,2903,2906,2909,2912,2915,2918,2920,2923,2926,2929,2932,2935,2937,2940,2943,2946,
|
||||
2949,2952,2954,2957,2960,2963,2965,2968,2971,2974,2977,2979,2982,2985,2988,2991,2993,2996,2999,3002,3004,3007,3010,3013,3015,3018,3021,3024,3026,3029,3032,3034,3037,3040,3043,3045,3048,3051,3053,3056,3059,3062,3064,3067,3070,3072,3075,3078,3080,3083,3086,
|
||||
3088,3091,3094,3096,3099,3102,3104,3107,3110,3112,3115,3118,3120,3123,3125,3128,3131,3133,3136,3139,3141,3144,3146,3149,3152,3154,3157,3160,3162,3165,3167,3170,3173,3175,3178,3180,3183,3185,3188,3191,3193,3196,3198,3201,3203,3206,3209,3211,3214,3216,3219,
|
||||
3221,3224,3226,3229,3232,3234,3237,3239,3242,3244,3247,3249,3252,3254,3257,3259,3262,3264,3267,3269,3272,3274,3277,3279,3282,3284,3287,3289,3292,3294,3297,3299,3302,3304,3307,3309,3312,3314,3317,3319,3322,3324,3327,3329,3331,3334,3336,3339,3341,3344,3346,
|
||||
3349,3351,3353,3356,3358,3361,3363,3366,3368,3370,3373,3375,3378,3380,3383,3385,3387,3390,3392,3395,3397,3399,3402,3404,3407,3409,3411,3414,3416,3419,3421,3423,3426,3428,3430,3433,3435,3438,3440,3442,3445,3447,3449,3452,3454,3457,3459,3461,3464,3466,3468,
|
||||
3471,3473,3475,3478,3480,3482,3485,3487,3489,3492,3494,3496,3499,3501,3503,3506,3508,3510,3513,3515,3517,3520,3522,3524,3526,3529,3531,3533,3536,3538,3540,3543,3545,3547,3549,3552,3554,3556,3559,3561,3563,3565,3568,3570,3572,3575,3577,3579,3581,3584,3586,
|
||||
3588,3590,3593,3595,3597,3599,3602,3604,3606,3608,3611,3613,3615,3617,3620,3622,3624,3626,3629,3631,3633,3635,3637,3640,3642,3644,3646,3649,3651,3653,3655,3657,3660,3662,3664,3666,3668,3671,3673,3675,3677,3680,3682,3684,3686,3688,3690,3693,3695,3697,3699,
|
||||
3701,3704,3706,3708,3710,3712,3714,3717,3719,3721,3723,3725,3728,3730,3732,3734,3736,3738,3741,3743,3745,3747,3749,3751,3753,3756,3758,3760,3762,3764,3766,3768,3771,3773,3775,3777,3779,3781,3783,3786,3788,3790,3792,3794,3796,3798,3800,3803,3805,3807,3809,
|
||||
3811,3813,3815,3817,3819,3822,3824,3826,3828,3830,3832,3834,3836,3838,3840,3843,3845,3847,3849,3851,3853,3855,3857,3859,3861,3863,3866,3868,3870,3872,3874,3876,3878,3880,3882,3884,3886,3888,3890,3892,3895,3897,3899,3901,3903,3905,3907,3909,3911,3913,3915,
|
||||
3917,3919,3921,3923,3925,3927,3929,3931,3933,3936,3938,3940,3942,3944,3946,3948,3950,3952,3954,3956,3958,3960,3962,3964,3966,3968,3970,3972,3974,3976,3978,3980,3982,3984,3986,3988,3990,3992,3994,3996,3998,4000,4002,4004,4006,4008,4010,4012,4014,4016,4018,
|
||||
4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4042,4044,4046,4048,4050,4052,4054,4056,4058,4060,4062,4064,4066,4068,4070,4072,4073,4075,4077,4079,4081,4083,4085,4087,4089,4091,4093,4095}, //table[2]
|
||||
{0,16,32,48,65,81,97,114,131,147,164,180,197,214,230,247,263,280,296,312,328,344,360,376,392,407,422,437,452,467,481,495,509,523,536,549,562,575,588,600,613,625,637,649,661,673,684,696,707,718,729,740,751,762,773,783,794,805,815,826,836,846,857,867,877,
|
||||
887,897,907,917,927,937,946,956,965,975,984,993,1002,1012,1021,1029,1038,1047,1056,1064,1073,1081,1090,1098,1107,1115,1123,1131,1139,1147,1155,1163,1171,1179,1186,1194,1201,1209,1216,1223,1230,1237,1244,1251,1258,1265,1272,1278,1285,1291,1298,1305,1311,
|
||||
1317,1324,1330,1336,1343,1349,1355,1361,1368,1374,1380,1386,1392,1398,1404,1410,1416,1422,1427,1433,1439,1444,1450,1455,1461,1466,1472,1477,1482,1488,1493,1498,1504,1509,1515,1520,1525,1531,1536,1542,1547,1552,1558,1564,1569,1575,1580,1586,1591,1597,1603,
|
||||
1608,1614,1619,1625,1631,1636,1642,1647,1653,1658,1664,1669,1675,1680,1686,1691,1697,1702,1708,1713,1718,1723,1729,1734,1739,1744,1750,1755,1760,1765,1770,1775,1780,1785,1790,1795,1800,1805,1810,1815,1820,1825,1830,1835,1839,1844,1849,1854,1859,1863,1868,
|
||||
1873,1878,1883,1887,1892,1897,1901,1906,1911,1915,1920,1925,1929,1934,1939,1943,1948,1952,1957,1961,1966,1970,1975,1979,1984,1988,1993,1997,2001,2006,2010,2014,2019,2023,2027,2032,2036,2040,2044,2049,2053,2057,2061,2065,2069,2074,2078,2082,2086,2090,2094,
|
||||
2098,2102,2106,2110,2114,2118,2122,2126,2130,2134,2138,2141,2145,2149,2153,2157,2161,2165,2169,2173,2177,2181,2185,2189,2193,2196,2200,2204,2208,2212,2216,2220,2223,2227,2231,2235,2239,2242,2246,2250,2254,2257,2261,2265,2269,2272,2276,2280,2283,2287,2291,
|
||||
2294,2298,2302,2306,2309,2313,2316,2320,2324,2327,2331,2335,2338,2342,2345,2349,2353,2356,2360,2363,2367,2371,2374,2378,2381,2385,2388,2392,2395,2399,2402,2406,2409,2413,2416,2420,2423,2427,2430,2434,2437,2441,2444,2447,2451,2454,2458,2461,2465,2468,2471,
|
||||
2475,2478,2482,2485,2488,2492,2495,2498,2502,2505,2509,2512,2515,2519,2522,2525,2529,2532,2535,2538,2542,2545,2548,2552,2555,2558,2561,2565,2568,2571,2575,2578,2581,2584,2588,2591,2594,2597,2600,2604,2607,2610,2613,2617,2620,2623,2626,2629,2632,2636,2639,
|
||||
2642,2645,2648,2651,2655,2658,2661,2664,2667,2670,2673,2677,2680,2683,2686,2689,2692,2695,2698,2701,2704,2708,2711,2714,2717,2720,2723,2726,2729,2732,2735,2738,2741,2744,2747,2750,2753,2756,2759,2762,2765,2769,2772,2775,2778,2781,2784,2786,2789,2792,2795,
|
||||
2798,2801,2804,2807,2810,2813,2816,2819,2822,2825,2828,2831,2834,2837,2840,2843,2846,2849,2851,2854,2857,2860,2863,2866,2869,2872,2875,2878,2880,2883,2886,2889,2892,2895,2898,2901,2903,2906,2909,2912,2915,2918,2920,2923,2926,2929,2932,2935,2937,2940,2943,
|
||||
2946,2949,2952,2954,2957,2960,2963,2965,2968,2971,2974,2977,2979,2982,2985,2988,2991,2993,2996,2999,3002,3004,3007,3010,3013,3015,3018,3021,3024,3026,3029,3032,3034,3037,3040,3043,3045,3048,3051,3053,3056,3059,3062,3064,3067,3070,3072,3075,3078,3080,3083,
|
||||
3086,3088,3091,3094,3096,3099,3102,3104,3107,3110,3112,3115,3118,3120,3123,3125,3128,3131,3133,3136,3139,3141,3144,3146,3149,3152,3154,3157,3160,3162,3165,3167,3170,3173,3175,3178,3180,3183,3185,3188,3191,3193,3196,3198,3201,3203,3206,3209,3211,3214,3216,
|
||||
3219,3221,3224,3226,3229,3232,3234,3237,3239,3242,3244,3247,3249,3252,3254,3257,3259,3262,3264,3267,3269,3272,3274,3277,3279,3282,3284,3287,3289,3292,3294,3297,3299,3302,3304,3307,3309,3312,3314,3317,3319,3322,3324,3327,3329,3331,3334,3336,3339,3341,3344,
|
||||
3346,3349,3351,3353,3356,3358,3361,3363,3366,3368,3370,3373,3375,3378,3380,3383,3385,3387,3390,3392,3395,3397,3399,3402,3404,3407,3409,3411,3414,3416,3419,3421,3423,3426,3428,3430,3433,3435,3438,3440,3442,3445,3447,3449,3452,3454,3457,3459,3461,3464,3466,
|
||||
3468,3471,3473,3475,3478,3480,3482,3485,3487,3489,3492,3494,3496,3499,3501,3503,3506,3508,3510,3513,3515,3517,3520,3522,3524,3526,3529,3531,3533,3536,3538,3540,3543,3545,3547,3549,3552,3554,3556,3559,3561,3563,3565,3568,3570,3572,3575,3577,3579,3581,3584,
|
||||
3586,3588,3590,3593,3595,3597,3599,3602,3604,3606,3608,3611,3613,3615,3617,3620,3622,3624,3626,3629,3631,3633,3635,3637,3640,3642,3644,3646,3649,3651,3653,3655,3657,3660,3662,3664,3666,3668,3671,3673,3675,3677,3680,3682,3684,3686,3688,3690,3693,3695,3697,
|
||||
3699,3701,3704,3706,3708,3710,3712,3714,3717,3719,3721,3723,3725,3728,3730,3732,3734,3736,3738,3741,3743,3745,3747,3749,3751,3753,3756,3758,3760,3762,3764,3766,3768,3771,3773,3775,3777,3779,3781,3783,3786,3788,3790,3792,3794,3796,3798,3800,3803,3805,3807,
|
||||
3809,3811,3813,3815,3817,3819,3822,3824,3826,3828,3830,3832,3834,3836,3838,3840,3843,3845,3847,3849,3851,3853,3855,3857,3859,3861,3863,3866,3868,3870,3872,3874,3876,3878,3880,3882,3884,3886,3888,3890,3892,3895,3897,3899,3901,3903,3905,3907,3909,3911,3913,
|
||||
3915,3917,3919,3921,3923,3925,3927,3929,3931,3933,3936,3938,3940,3942,3944,3946,3948,3950,3952,3954,3956,3958,3960,3962,3964,3966,3968,3970,3972,3974,3976,3978,3980,3982,3984,3986,3988,3990,3992,3994,3996,3998,4000,4002,4004,4006,4008,4010,4012,4014,4016,
|
||||
4018,4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4042,4044,4046,4048,4050,4052,4054,4056,4058,4060,4062,4064,4066,4068,4070,4072,4073,4075,4077,4079,4081,4083,4085,4087,4089,4091,4093,4095}, //table[3]
|
||||
}, //table
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
static const xmedia_isp_lce_attr os08a20_lce={
|
||||
1, //enable
|
||||
0, //op_type
|
||||
0, //input_di_mode_en
|
||||
0, //output_di_mode_en
|
||||
{
|
||||
20, //contrast_str
|
||||
{-2,1}, //contrast_blc_slope
|
||||
{-10,1}, //contrast_wht_slope
|
||||
10, //blending_fmax
|
||||
919, //blending_sigma_div
|
||||
25, //blending_mean
|
||||
15, //blending_blc_str
|
||||
32, //blending_blc_value
|
||||
14, //blending_wht_str
|
||||
150,//blending_wht_value
|
||||
{0,256}, //black_luma_expand
|
||||
{0,256}, //white_luma_expand
|
||||
15,// flat_denoise_thd;
|
||||
8,// flat_denoise_str;
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str
|
||||
0,// halo_str;
|
||||
128,// temporal_incr_coef;
|
||||
128,// temporal_decr_coef;
|
||||
},// manual_attr;
|
||||
{
|
||||
10,
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200},
|
||||
{20,18,18,16,15,14,12,10,10,8,8,6,4,4,4,2}, //contrast_str
|
||||
{
|
||||
{-2,1}, //contrast_blc_slop[0]
|
||||
{-2,1}, //contrast_blc_slop[1]
|
||||
{-2,1}, //contrast_blc_slop[2]
|
||||
{-2,1}, //contrast_blc_slop[3]
|
||||
{-2,1}, //contrast_blc_slop[4]
|
||||
{-2,1}, //contrast_blc_slop[5]
|
||||
{-2,1}, //contrast_blc_slop[6]
|
||||
{-2,1}, //contrast_blc_slop[7]
|
||||
{-2,1}, //contrast_blc_slop[8]
|
||||
{-2,1}, //contrast_blc_slop[9]
|
||||
{-2,1}, //contrast_blc_slop[10]
|
||||
{0,1}, //contrast_blc_slop[11]
|
||||
{0,1}, //contrast_blc_slop[12]
|
||||
{0,1}, //contrast_blc_slop[13]
|
||||
{0,1}, //contrast_blc_slop[14]
|
||||
{0,1}, //contrast_blc_slop[15]
|
||||
}, //contrast_blc_slop
|
||||
{
|
||||
{-10,1}, //contrast_wht_slope[0]
|
||||
{-10,1}, //contrast_wht_slope[1]
|
||||
{-10,1}, //contrast_wht_slope[2]
|
||||
{-10,1}, //contrast_wht_slope[3]
|
||||
{-10,1}, //contrast_wht_slope[4]
|
||||
{-10,1}, //contrast_wht_slope[5]
|
||||
{-10,1}, //contrast_wht_slope[6]
|
||||
{-10,1}, //contrast_wht_slope[7]
|
||||
{-10,1}, //contrast_wht_slope[8]
|
||||
{-10,1}, //contrast_wht_slope[9]
|
||||
{-10,1}, //contrast_wht_slope[10]
|
||||
{0,1}, //contrast_wht_slope[11]
|
||||
{0,1}, //contrast_wht_slope[12]
|
||||
{0,1}, //contrast_wht_slope[13]
|
||||
{0,1}, //contrast_wht_slope[14]
|
||||
{0,1}, //contrast_wht_slope[15]
|
||||
}, //contrast_wht_slope
|
||||
{10,10,10,10,10,10,10,10,12,12,12,12,12,12,12,12}, //blending_fmax blending_fmax[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{919,919,919,919,919,919,919,919,919,919,919,919,919,919,919,919}, // blending_sigma_div[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{25,25,25,25,25,25,25,25,25,25,},// blending_mean[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{15,15,15,15,15,15,15,15,15,15,},// blending_blc_str[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{32,32,32,32,32,32,32,32,32,32,},// blending_blc_value[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{14,14,14,14,14,14,14,14,14,14,},// blending_wht_str[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{150,150,150,150,150,150,150,150,150,150,},// blending_wht_value[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{
|
||||
{512,256}, //black_luma_expand[0]
|
||||
{512,256}, //black_luma_expand[1]
|
||||
{512,256}, //black_luma_expand[2]
|
||||
{512,256}, //black_luma_expand[3]
|
||||
{512,256}, //black_luma_expand[4]
|
||||
{512,256}, //black_luma_expand[5]
|
||||
{512,256}, //black_luma_expand[6]
|
||||
{512,256}, //black_luma_expand[7]
|
||||
{512,256}, //black_luma_expand[8]
|
||||
{512,256}, //black_luma_expand[9]
|
||||
{512,256}, //black_luma_expand[10]
|
||||
{512,256}, //black_luma_expand[11]
|
||||
{512,256}, //black_luma_expand[12]
|
||||
{512,256}, //black_luma_expand[13]
|
||||
{512,256}, //black_luma_expand[14]
|
||||
{512,256}, //black_luma_expand[15]
|
||||
}, //black_luma_expan black_luma_expand[XMEDIA_ISP_ISO_MAX_COUNT][XMEDIA_ISP_LCE_CONTRAST_BWLE_NUM];
|
||||
{
|
||||
{512,256}, //black_luma_expand[0]
|
||||
{512,256}, //black_luma_expand[1]
|
||||
{512,256}, //black_luma_expand[2]
|
||||
{512,256}, //black_luma_expand[3]
|
||||
{512,256}, //black_luma_expand[4]
|
||||
{512,256}, //black_luma_expand[5]
|
||||
{512,256}, //black_luma_expand[6]
|
||||
{512,256}, //black_luma_expand[7]
|
||||
{512,256}, //black_luma_expand[8]
|
||||
{512,256}, //black_luma_expand[9]
|
||||
{512,256}, //black_luma_expand[10]
|
||||
{512,256}, //black_luma_expand[11]
|
||||
{512,256}, //black_luma_expand[12]
|
||||
{512,256}, //black_luma_expand[13]
|
||||
{512,256}, //black_luma_expand[14]
|
||||
{512,256}, //black_luma_expand[15]
|
||||
}, //white_luma_expand white_luma_expand[XMEDIA_ISP_ISO_MAX_COUNT][XMEDIA_ISP_LCE_CONTRAST_BWLE_NUM];
|
||||
{15,15,15,15,15,15,15,15,15,15,}, //flat_denoise_thd[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{8,8,8,8,8,8,8,8,8,8,}, // flat_denoise_str[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[0]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[1]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[2]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[3]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[4]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[5]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[6]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[7]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[8]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[9]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[10]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[11]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[12]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[13]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[14]
|
||||
{1,1,1,1,8,1,1,1,1}, //flat_filter_str[15]
|
||||
}, //flat_filter_str
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, //halo_str halo_str[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{128,128,128,128,128,128,128,128,128,128,}, // temporal_incr_coef[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
{128,128,128,128,128,128,128,128,128,128,}, // temporal_decr_coef[XMEDIA_ISP_ISO_MAX_COUNT];
|
||||
},// auto_attr;
|
||||
|
||||
};
|
||||
|
||||
static const xmedia_isp_drc_attr os08a20_drc={
|
||||
1, //drc_en
|
||||
0, //ltmc_en
|
||||
1, //dering_en
|
||||
1, //detail_enhance_en
|
||||
0, //tm_type
|
||||
1, //op_type
|
||||
{
|
||||
1000, //range_fil_coef
|
||||
4450, //spatial_fil_coef
|
||||
16, //dering_thd
|
||||
12, //dering_coarse_str
|
||||
102, //dering_fine_str
|
||||
128, //mixing_bright_min
|
||||
128, //mixing_bright_max
|
||||
64, //mixing_bright_thd_low
|
||||
512, //mixing_bright_thd_high
|
||||
128, //mixing_dark_min
|
||||
192, //mixing_dark_max
|
||||
64, //mixing_dark_thd_low
|
||||
512, //mixing_dark_thd_high
|
||||
16, //ltmc_str
|
||||
256, //drc_str
|
||||
{
|
||||
6, //asymmetry
|
||||
150, //second_pole
|
||||
60, //stretch
|
||||
200, //compress
|
||||
}, //asymmetry_curve
|
||||
{
|
||||
6, //asymmetry
|
||||
150, //second_pole
|
||||
50, //stretch
|
||||
100, //compress
|
||||
}, //asymmetry_max_curve
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user
|
||||
}, //manual_attr
|
||||
{
|
||||
10, //iso_num
|
||||
{100,200,400,800,1600,3200,6400,12800,25600,51200,0,0,0,0,0,0}, //iso_level
|
||||
{1000,1000,1000,1000,800,600,600,600,600,600,2,2,2,2,2,2}, //range_fil_coef
|
||||
{145,145,145,145,145,145,145,145,145,145,16,16,16,16,16,16}, //spatial_fil_coef
|
||||
{16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0}, //dering_thd
|
||||
{12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0}, //dering_coarse_str
|
||||
{102,102,102,102,102,102,102,102,102,0,0,0,0,0,0,0}, //dering_fine_str
|
||||
{128,128,128,128,128,128,128,128,128,128,0,0,0,0,0,0}, //mixing_bright_min
|
||||
{128,128,128,128,128,128,128,128,128,128,0,0,0,0,0,0}, //mixing_bright_max
|
||||
{64,64,64,64,64,64,64,64,64,64,0,0,0,0,0,0}, //mixing_bright_thd_low
|
||||
{512,512,512,512,512,512,512,512,512,512,4,4,4,4,4,4}, //mixing_bright_thd_high
|
||||
{128,128,128,128,128,128,128,128,128,128,0,0,0,0,0,0}, //mixing_dark_min
|
||||
{192,192,192,192,192,192,192,192,192,192,0,0,0,0,0,0}, //mixing_dark_max
|
||||
{64,64,64,64,64,64,64,64,64,64,0,0,0,0,0,0}, //mixing_dark_thd_low
|
||||
{1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024,1024}, //mixing_dark_thd_high
|
||||
{16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0}, //ltmc_str
|
||||
{256,256,256,256,256,256,256,256,256,256,256,256,256,256,256,256}, //drc_str
|
||||
9, // ratio_num;
|
||||
{64,128,256,512,1024,2048,4096,8192,16384},// iso_level[XMEDIA_ISP_EXP_RATIO_MAX_COUNT];
|
||||
{
|
||||
{30,150,60,200}, //asymmetry_curve[0]
|
||||
{30,150,60,200}, //asymmetry_curve[1]
|
||||
{30,150,60,200}, //asymmetry_curve[2]
|
||||
{30,150,60,200}, //asymmetry_curve[3]
|
||||
{30,150,60,200}, //asymmetry_curve[4]
|
||||
{30,150,60,200}, //asymmetry_curve[5]
|
||||
{30,150,60,200}, //asymmetry_curve[6]
|
||||
{30,150,60,200}, //asymmetry_curve[7]
|
||||
{30,150,60,200}, //asymmetry_curve[8]
|
||||
}, //asymmetry_curve
|
||||
{
|
||||
{30,150,60,200}, //asymmetry_max_curve[0]
|
||||
{30,150,60,200}, //asymmetry_max_curve[1]
|
||||
{30,150,60,200}, //asymmetry_max_curve[2]
|
||||
{30,150,60,200}, //asymmetry_max_curve[3]
|
||||
{30,150,60,200}, //asymmetry_max_curve[4]
|
||||
{30,150,60,200}, //asymmetry_max_curve[5]
|
||||
{30,150,60,200}, //asymmetry_max_curve[6]
|
||||
{30,150,60,200}, //asymmetry_max_curve[7]
|
||||
{30,150,60,200}, //asymmetry_max_curve[8]
|
||||
}, //asymmetry_max_curve
|
||||
{
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[0]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[1]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[2]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[3]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[4]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[5]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[6]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[7]
|
||||
{0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,516,520,524,528,532,536,540,544,548,552,556,560,564,568,572,576,580,584,588,592,596,600,604,608,612,616,620,624,628,632,636,640,644,648,652,656,660,664,668,672,676,680,684,688,692,696,700,704,708,712,716,720,724,728,732,736,740,744,748,752,756,760,764,768,772,776,780,784,788,792,796,800,804,808,812,816,820,824,828,832,836,840,844,848,852,856,860,864,868,872,876,880,884,888,892,896,900,904,908,912,916,920,924,928,932,936,940,944,948,952,956,960,964,968,972,976,980,984,988,992,996,1000,1004,1008,1012,1016,1020,1024,1032,1040,1048,1056,1064,1072,1080,1088,1096,1104,1112,1120,1128,1136,1144,1152,1160,1168,1176,1184,1192,1200,1208,1216,1224,1232,1240,1248,1256,1264,1272,1280,1288,1296,1304,1312,1320,1328,1336,1344,1352,1360,1368,1376,1384,1392,1400,1408,1416,1424,1432,1440,1448,1456,1464,1472,1480,1488,1496,1504,1512,1520,1528,1536,1544,1552,1560,1568,1576,1584,1592,1600,1608,1616,1624,1632,1640,1648,1656,1664,1672,1680,1688,1696,1704,1712,1720,1728,1736,1744,1752,1760,1768,1776,1784,1792,1800,1808,1816,1824,1832,1840,1848,1856,1864,1872,1880,1888,1896,1904,1912,1920,1928,1936,1944,1952,1960,1968,1976,1984,1992,2000,2008,2016,2024,2032,2040,2048,2063,2079,2095,2111,2127,2143,2159,2175,2191,2207,2223,2239,2255,2271,2287,2303,2319,2335,2351,2367,2383,2399,2415,2431,2447,2463,2479,2495,2511,2527,2543,2559,2575,2591,2607,2623,2639,2655,2671,2687,2703,2719,2735,2751,2767,2783,2799,2815,2831,2847,2863,2879,2895,2911,2927,2943,2959,2975,2991,3007,3023,3039,3055,3071,3087,3103,3119,3135,3151,3167,3183,3199,3215,3231,3247,3263,3279,3295,3311,3327,3343,3359,3375,3391,3407,3423,3439,3455,3471,3487,3503,3519,3535,3551,3567,3583,3599,3615,3631,3647,3663,3679,3695,3711,3727,3743,3759,3775,3791,3807,3823,3839,3855,3871,3887,3903,3919,3935,3951,3967,3983,3999,4015,4031,4047,4063,4079}, //tm_value_user[8]
|
||||
}, //tm_value_user
|
||||
{
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[0]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[1]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[2]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[3]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[4]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[5]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[6]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[7]
|
||||
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,26,26,26,26,26,26,26,26,27,27,27,27,27,27,27,27,28,28,28,28,28,28,28,28,29,29,29,29,29,29,29,29,30,30,30,30,30,30,30,30,31,31,31,31,31,31,31,31,32,32,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,64,64,64,65,65,66,66,67,67,68,68,69,69,70,70,71,71,72,72,73,73,74,74,75,75,76,76,77,77,78,78,79,79,80,80,81,81,82,82,83,83,84,84,85,85,86,86,87,87,88,88,89,89,90,90,91,91,92,92,93,93,94,94,95,95,96,96,97,97,98,98,99,99,100,100,101,101,102,102,103,103,104,104,105,105,106,106,107,107,108,108,109,109,110,110,111,111,112,112,113,113,114,114,115,115,116,116,117,117,118,118,119,119,120,120,121,121,122,122,123,123,124,124,125,125,126,126,127,127,128,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254}, //tm_value_max_user[9]
|
||||
}, //tm_value_max_user
|
||||
}, //auto_attr
|
||||
};
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user