hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
{
   "sensor_calib":    {
       "resolution":    {
           "width":    4224,
           "height":    3136
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 15.5, 128, 0, 1, 128, 1984],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    15.5
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    8,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 22]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    2,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 10]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    2,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 10]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    0,
           "hdr_mode":    "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
           "line_mode":    "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
       },
       "CISDcgSet":    {
           "Linear":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    1,
               "sync_switch":    0,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           },
           "Hdr":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    1,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    0
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    1.6,
           "EFL":    5.2,
           "LensT":    90,
           "IRCutT":    90
       }
   },
   "main_scene":    [{
           "name":    "normal",
           "sub_scene":    [{
                   "name":    "day",
                   "scene_isp30":    {
                       "ae_calib":    {
                           "CommCtrl":    {
                               "Enable":    1,
                               "AecRunInterval":    0,
                               "AecOpType":    "RK_AIQ_OP_MODE_AUTO",
                               "HistStatsMode":    "CAM_HISTV2_MODE_Y",
                               "RawStatsMode":    "CAM_RAWSTATSV2_MODE_Y",
                               "YRangeMode":    "CAM_YRANGEV2_MODE_FULL",
                               "AecGridWeight":    [1, 1, 1, 1, 1, 1, 11, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5, 8, 6, 6, 6, 6, 6, 2, 1, 1, 1, 1, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 2, 1, 1, 1, 1, 1, 1, 2, 5, 5, 8, 8, 8, 8, 5, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 20, 20, 20, 20, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 20, 20, 20, 20, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 10, 10, 10, 10, 10, 2, 1, 1, 1, 1, 1, 1, 2, 8, 10, 10, 10, 10, 10, 10, 2, 1, 1, 1, 1, 1, 1, 1, 1, 10, 10, 10, 10, 10, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 8, 8, 8, 8, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.01,
                                       "GainValue":    1,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "SmoothEn":    1,
                                   "DyDampEn":    1,
                                   "DampOver":    0.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    4,
                                   "WhiteDelay":    4
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    15
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.003,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.04, 0.04, 0.04, 0.04, 0.066],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 3, 6, 9, 15.5],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.096, 0.192, 0.576, 0.73, 1.023],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [45, 43, 40, 38, 35, 25],
                                   "DySetpoint_len":    6
                               },
                               "BackLightCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MeasArea":    "AECV2_MEASURE_AREA_AUTO",
                                   "OEROILowTh":    150,
                                   "LumaDistTh":    10,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "BacklitSetPoint":    {
                                       "ExpLevel":    [0.096, 0.192, 0.384, 0.576, 0.96, 1.344],
                                       "ExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
                                       "LowLightPdfTh_len":    6,
                                       "TargetLLLuma":    [25, 22, 20, 18, 15, 12],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "OverExpCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MaxWeight":    8,
                                   "HighLightTh":    150,
                                   "LowLightTh":    30,
                                   "OverExpSetPoint":    {
                                       "OEpdf":    [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
                                       "OEpdf_len":    6,
                                       "LowLightWeight":    [1, 1, 1, 1, 1, 1],
                                       "LowLightWeight_len":    6,
                                       "HighLightWeight":    [4, 3, 3, 3, 2, 2],
                                       "HighLightWeight_len":    6
                                   }
                               }
                           },
                           "HdrAeCtrl":    {
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "LumaDistTh":    10,
                               "InitExp":    {
                                   "InitTimeValue":    [0.0005, 0.003, 0.003],
                                   "InitGainValue":    [1, 1, 1],
                                   "InitIspDGainValue":    [1, 1, 1],
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "Frm0TimeDot":    [0, 0.003, 0.003, 0.003, 0.003, 0.003],
                                   "Frm0TimeDot_len":    6,
                                   "Frm0GainDot":    [1, 1, 4, 8, 15.5, 32],
                                   "Frm0GainDot_len":    6,
                                   "Frm0IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm0IspDGainDot_len":    6,
                                   "Frm1TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm1TimeDot_len":    6,
                                   "Frm1GainDot":    [1, 1, 4, 8, 15.5, 64],
                                   "Frm1GainDot_len":    6,
                                   "Frm1IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm1IspDGainDot_len":    6,
                                   "Frm2TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm2TimeDot_len":    6,
                                   "Frm2GainDot":    [1, 1, 4, 8, 15.5, 64],
                                   "Frm2GainDot_len":    6,
                                   "Frm2IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm2IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "ExpRatioCtrl":    {
                                   "ExpRatioType":    "AECV2_HDR_RATIOTYPE_MODE_AUTO",
                                   "ExpRatio":    {
                                       "RatioExpDot":    [0, 0.1, 0.3, 0.5, 0.7, 1],
                                       "RatioExpDot_len":    6,
                                       "M2SRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "M2SRatioFix_len":    6,
                                       "L2MRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "L2MRatioFix_len":    6,
                                       "M2SRatioMax":    [64, 64, 64, 64, 64, 64],
                                       "M2SRatioMax_len":    6,
                                       "L2MRatioMax":    [32, 32, 30, 28, 26, 24],
                                       "L2MRatioMax_len":    6
                                   }
                               },
                               "LongFrmMode":    {
                                   "mode":    "AECV2_HDR_LONGFRMMODE_NORMAL",
                                   "SfrmMinLine":    2,
                                   "LfrmModeExpTh":    0.62
                               },
                               "LframeCtrl":    {
                                   "OEROILowTh":    150,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "LfrmSetPoint":    {
                                       "LExpLevel":    [0, 0.0192, 0.0576, 0.096, 0.192, 0.384],
                                       "LExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
                                       "LowLightPdfTh_len":    6,
                                       "LSetPoint":    [75, 70, 65, 60, 45, 40],
                                       "LSetPoint_len":    6,
                                       "TargetLLLuma":    [35, 32, 30, 28, 25, 20],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "MframeCtrl":    {
                                   "MExpLevel":    [0.096, 0.192, 0.384, 0.96, 1.344, 1.92],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
                                       "SExpLevel_len":    6,
                                       "SSetPoint":    [18, 18, 15, 12, 12, 12],
                                       "SSetPoint_len":    6,
                                       "TargetHLLuma":    [100, 100, 100, 90, 80, 70],
                                       "TargetHLLuma_len":    6
                                   }
                               }
                           },
                           "IrisCtrl":    {
                               "Enable":    0,
                               "IrisType":    "IRISV2_DC_TYPE",
                               "ManualEn":    0,
                               "ManualAttr":    {
                                   "PIrisGainValue":    1,
                                   "DCIrisHoldValue":    30
                               },
                               "InitAttr":    {
                                   "PIrisGainValue":    512,
                                   "DCIrisHoldValue":    100
                               },
                               "PIrisAttr":    {
                                   "TotalStep":    81,
                                   "EffcStep":    44,
                                   "ZeroIsMax":    1,
                                   "StepTable":    [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               },
                               "DCIrisAttr":    {
                                   "Kp":    0.5,
                                   "Ki":    0.2,
                                   "Kd":    0.3,
                                   "MinPwmDuty":    0,
                                   "MaxPwmDuty":    100,
                                   "OpenPwmDuty":    40,
                                   "ClosePwmDuty":    22
                               }
                           },
                           "SyncTest":    {
                               "Enable":    0,
                               "IntervalFrm":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [1.32703, 1, 1, 3.31432],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_AUTO",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    1,
                               "lsUsedForYuvDet":    ["A", "CWF", "D50", "D65", "D75", "HZ", "TL84"],
                               "lsUsedForYuvDet_len":    7,
                               "blkStatisticsEnable":    1,
                               "downScaleMode":    "CALIB_AWB_DS_8X8",
                               "blkMeasureMode":    "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
                               "mainWindow":    {
                                   "mode":    "CALIB_AWB_WINDOW_CFG_AUTO",
                                   "window":    [0, 0, 1, 1]
                               },
                               "limitRange":    {
                                   "lumaValue":    [0],
                                   "lumaValue_len":    1,
                                   "maxR":    [230],
                                   "maxR_len":    1,
                                   "minR":    [3],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [3],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [3],
                                   "minB_len":    1,
                                   "maxY":    [230],
                                   "maxY_len":    1,
                                   "minY":    [3],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.332845, 0.333949, 0.333205],
                                   "rotationMat":    [-0.698524, 0.715587, -0.487261, 0.715587, 0.698524, 0.45911, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0371094, 0.136719, 0.0136719, 32.5, -0.0878906, 0.0078125, 0.0625, 136.313, 0.0390625, -0.0585938, 0.0566406, 112, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }],
                               "wpDiffLumaWeight":    {
                                   "enable":    0,
                                   "wpDiffWeiEnableTh":    {
                                       "wpDiffWeiNoTh":    0.004,
                                       "wpDiffWeiLvValueTh":    64
                                   },
                                   "wpDiffwei_y":    [0, 16, 32, 64, 96, 128, 192, 224, 240],
                                   "perfectBin":    [0, 0, 0, 1, 1, 1, 1, 0],
                                   "wpDiffWeightLvSet":    [{
                                           "LvValue":    256,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    4224,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0, 0.2, 0.5, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    0,
                               "wpDiffBlkWeight":    [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
                               "lightSources":    [{
                                       "name":    "A",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.1068, 1, 1, 2.18225],
                                       "uvRegion":    {
                                           "u":    [126.007, 66.3314, 67.1004, 125.97],
                                           "v":    [127.184, 137.91, 115.617, 126.185]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.38577, -0.952539, 0.0741844, -0.00844141],
                                           "big":    [-1.38791, -0.952539, 0.0766805, -0.0277886]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.2, 0.2, 0.2, 0.76, 1, 4],
                                           "lineVector":    [10, 142.438, 111.563, 185.438, 97.9375, 114.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.64721, 1, 1, 1.89943],
                                       "uvRegion":    {
                                           "u":    [126.687, 90.8807, 82.2946, 126.043],
                                           "v":    [125.183, 84.0001, 94.5061, 125.948]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.951019, -0.489941, 0.00721559, -0.0695107],
                                           "big":    [-0.951019, -0.489941, 0.00721559, -0.0758151]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.2, 0.2, 0.2, 0.76, 1, 4],
                                           "lineVector":    [10, 138.625, 113.063, 190.25, 123.438, 106.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.71074, 1, 1, 1.46089],
                                       "uvRegion":    {
                                           "u":    [128.304, 107.709, 90.9896, 127.455],
                                           "v":    [125.188, 73.3912, 84.5872, 125.717]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.489941, -0.167969, 0.174141, 0.0141406],
                                           "big":    [-0.489941, -0.167969, 0.204141, -0.0158594]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.2, 0.2, 0.2, 0.76, 1, 4],
                                           "lineVector":    [10, 137.375, 111.875, 191, 133.938, 114.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.14637, 1, 1, 1.31616],
                                       "uvRegion":    {
                                           "u":    [128.499, 127.004, 107.487, 127.522],
                                           "v":    [124.673, 68.3713, 72.8546, 124.886]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.167969, 0.0859949, 0.0760937, -0.0847503],
                                           "big":    [-0.167969, 0.0859949, 0.106094, -0.112202]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 3, 5, 8, 8, 8],
                                           "lineVector":    [10, 135.25, 112.25, 190.563, 148.375, 113.063],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.1872, 1, 1, 1.15889],
                                       "uvRegion":    {
                                           "u":    [132.255, 140.194, 126.159, 128.991],
                                           "v":    [123.204, 65.2514, 68.0819, 124.961]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.085253, 0.208262, 0.10207, -0.067212],
                                           "big":    [0.085253, 0.208262, 0.13207, -0.0984759]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 3, 5, 8, 8, 8],
                                           "lineVector":    [10, 134.375, 111.625, 189.75, 154.875, 118],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.866314, 1, 1, 2.48066],
                                       "uvRegion":    {
                                           "u":    [125.16, 70.4618, 66.1881, 124.775],
                                           "v":    [128.383, 161.427, 137.961, 127.461]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.76675, -1.38467, 0.0644518, -0.0624219],
                                           "big":    [-1.76794, -1.38467, 0.0760322, -0.0924219]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 3, 5, 8, 8, 8],
                                           "lineVector":    [10, 145.125, 110.75, 179.125, 81.1875, 119.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.57393, 1, 1, 1.92879],
                                       "uvRegion":    {
                                           "u":    [126.656, 84.2668, 67.1004, 126.084],
                                           "v":    [125.06, 92.0891, 115.507, 125.88]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.950742, -0.491401, 0.0656406, -0.0190391],
                                           "big":    [-0.950742, -0.491401, 0.0776128, -0.0316918]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.2, 0.2, 0.2, 0.76, 1, 4],
                                           "lineVector":    [10, 139.063, 112.75, 190, 120.438, 107.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 4224],
                                       "defaultDayGainLow":    [1.71074, 1, 1, 1.46089],
                                       "defaultDayGainHigh":    [2.14637, 1, 1, 1.31616],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0, 0, 0, 0],
                                   "toleranceValue_len":    4
                               },
                               "runInterval":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "intervalValue":    [0, 0, 0, 0],
                                   "intervalValue_len":    4
                               },
                               "dampFactor":    {
                                   "dFStep":    0.05,
                                   "dFMin":    0.7,
                                   "dFMax":    0.9,
                                   "lvIIRsize":    4,
                                   "lvVarTh":    0.04
                               },
                               "wbGainAdjust":    {
                                   "enable":    0,
                                   "lutAll":    [{
                                           "lumaValue":    128,
                                           "ct_grid_num":    10,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [1000, 10000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
                                           "ct_lut_out_len":    90,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    90
                                       }, {
                                           "lumaValue":    4224,
                                           "ct_grid_num":    10,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [1000, 10000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
                                           "ct_lut_out_len":    90,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    90
                                       }, {
                                           "lumaValue":    65536,
                                           "ct_grid_num":    10,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [1000, 10000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000],
                                           "ct_lut_out_len":    90,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    90
                                       }],
                                   "lutAll_len":    3
                               },
                               "wbGainDaylightClip":    {
                                   "enable":    0,
                                   "outdoor_cct_min":    5000
                               },
                               "wbGainClip":    {
                                   "enable":    0,
                                   "cct":    [1000, 2856, 4100, 6500, 7500, 10000],
                                   "cct_len":    6,
                                   "cri_bound_up":    [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
                                   "cri_bound_up_len":    6,
                                   "cri_bound_low":    [0.3, 0.3, 0.3, 0.3, 0.3, 0.3],
                                   "cri_bound_low_len":    6
                               },
                               "division":    {
                                   "lumaValThLow":    110,
                                   "lumaValThLow2":    200,
                                   "lumaValThHigh":    65536,
                                   "lumaValThHigh2":    65600,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "low":    [150],
                                       "low_len":    1,
                                       "high":    [216],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [1.71074, 1, 1, 1.46089],
                               "lumaValueMatrix":    [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4224, 4224, 16384, 32768, 65536, 131072, 262144],
                               "defaultNightGainWeight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "probCalcDis":    {
                                   "proDis_THH":    6.6124,
                                   "proDis_THL":    0.0269
                               },
                               "probCalcLv":    {
                                   "outdoorLumaValThLow":    30000,
                                   "outdoorLumaValThHigh":    45745
                               },
                               "probCalcWp":    {
                                   "wpNumPercTh":    0.0031,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [216],
                                       "forBigType_len":    1,
                                       "forExtraType":    [216],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    30.6854,
                                           "meanH":    21.9705
                                       }, {
                                           "index":    13,
                                           "meanC":    19.2956,
                                           "meanH":    -83.278
                                       }, {
                                           "index":    5,
                                           "meanC":    10.3345,
                                           "meanH":    -71.2267
                                       }, {
                                           "index":    10,
                                           "meanC":    12.3545,
                                           "meanH":    -38.5194
                                       }, {
                                           "index":    14,
                                           "meanC":    20.1399,
                                           "meanH":    148.281
                                       }, {
                                           "index":    16,
                                           "meanC":    27.8409,
                                           "meanH":    82.7638
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.1068,
                                           "BGain":    2.18225
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.57393,
                                           "BGain":    1.92879
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.71074,
                                           "BGain":    1.46089
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.64009, -0.7683, -2.38508],
                               "lineRgProjCCT":    [1, -0.000285282, 0.292034],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.14637, 1, 1, 1.31616],
                                   "laCalcFactor":    40
                               },
                               "remosaicCfg":    {
                                   "enable":    0,
                                   "applyInvWbGainEnable":    1,
                                   "sensorWbGain":    [1, 1, 1, 1]
                               },
                               "wbGainOffset":    {
                                   "enable":    0,
                                   "offset":    [0, 0, 0, 0]
                               }
                           }
                       },
                       "agamma_calib_V30":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1323, 1461, 1587, 1810, 2003, 2173, 2325, 2589, 2812, 3010, 3191, 3355, 3499, 3624, 3736, 3836, 3927, 4012, 4095]
                           }
                       },
                       "ablc_calib":    {
                           "BlcTuningPara":    {
                               "enable":    1,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [257, 256.938, 257.625, 256.313, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [257, 257.125, 257.375, 257.063, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [257, 257.125, 257.063, 257.188, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813, 256.813],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [257, 256.813, 257.5, 256.625, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875, 255.875],
                                   "B_Channel_len":    13
                               }
                           },
                           "Blc1TuningPara":    {
                               "enable":    0,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_R":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_G":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_B":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                           }
                       },
                       "agic_calib_v21":    {
                           "GicTuningPara":    {
                               "enable":    0,
                               "gr_ration":    0,
                               "GicData":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    13,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    13,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    13,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    13,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    13,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    13,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    13,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    13,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    13,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    13,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    13,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    13,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    13,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    13,
                                   "noiseCurve_0":    [0.753974, 1.06807, 1.26043, 1.44633, 1.9121, 1.9121, 1.9121, 1.9121, 1.9121, 1.9121, 1.9121, 1.9121, 1.9121],
                                   "noiseCurve_0_len":    13,
                                   "noiseCurve_1":    [1.26711, 1.49621, 6.52659, 10.2078, 14.4515, 14.4515, 14.4515, 14.4515, 14.4515, 14.4515, 14.4515, 14.4515, 14.4515],
                                   "noiseCurve_1_len":    13,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    13,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    13,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    13,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    13
                               }
                           }
                       },
                       "adpcc_calib":    {
                           "DpccTuningPara":    {
                               "Enable":    1,
                               "Fast_Mode":    {
                                   "Fast_mode_en":    0,
                                   "Single_enable":    0,
                                   "Double_enable":    0,
                                   "Triple_enable":    0,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Triple_level_len":    13
                                   }
                               },
                               "Expert_Mode":    {
                                   "stage1_Enable":    1,
                                   "grayscale_mode":    0,
                                   "dpcc_out_sel":    1,
                                   "stage1_g_3x3":    0,
                                   "stage1_rb_3x3":    0,
                                   "stage1_inc_rb_center":    1,
                                   "stage1_inc_g_center":    1,
                                   "rk_out_sel":    1,
                                   "SetEnable":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "fix_set":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set2":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set3":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "g_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_thr":    [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
                                           "rb_line_mad_fac":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_mad_fac":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    1,
                                   "point_en":    [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    7,
                                   "wrapy":    7,
                                   "wrapx_num":    480,
                                   "wrapy_num":    270,
                                   "point_x":    [6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    1,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    0,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "4224x3136",
                                       "lsc_sect_size_x":    [264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264],
                                       "lsc_sect_size_y":    [196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [1.04914, 2.22648],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.58718, 1.98853],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.58941, 1.5099],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [2.01947, 1.38036],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [2.04149, 1.2174],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.823382, 2.50759],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.49984, 2.00256],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 8, 16],
                                       "gains_len":    4,
                                       "vig":    [100, 90, 85, 70],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    7
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "4224x3136_A_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4646, 3688, 3218, 2958, 2727, 2592, 2351, 2257, 2229, 2229, 2336, 2462, 2620, 2877, 3276, 3863, 4994, 3925, 3397, 3019, 2758, 2512, 2299, 2108, 2004, 1951, 2004, 2078, 2216, 2405, 2629, 2935, 3494, 4292, 3615, 3176, 2855, 2601, 2321, 2043, 1866, 1754, 1713, 1750, 1838, 2009, 2209, 2429, 2737, 3176, 3904, 3445, 3019, 2717, 2389, 2096, 1843, 1652, 1544, 1506, 1534, 1637, 1793, 2021, 2243, 2547, 2923, 3615, 3276, 2900, 2583, 2229, 1920, 1655, 1484, 1376, 1343, 1368, 1464, 1626, 1843, 2102, 2405, 2779, 3351, 3163, 2811, 2453, 2090, 1784, 1521, 1343, 1239, 1204, 1236, 1328, 1490, 1713, 1988, 2285, 2658, 3149, 3057, 2717, 2374, 1998, 1667, 1421, 1245, 1139, 1103, 1133, 1226, 1391, 1608, 1885, 2196, 2565, 3083, 3007, 2687, 2336, 1930, 1608, 1365, 1185, 1078, 1037, 1067, 1166, 1341, 1557, 1829, 2114, 2521, 3032, 2995, 2629, 2285, 1910, 1574, 1336, 1160, 1056, 1024, 1046, 1144, 1312, 1528, 1802, 2102, 2478, 3032, 2970, 2658, 2299, 1925, 1591, 1338, 1166, 1070, 1033, 1066, 1151, 1319, 1528, 1815, 2102, 2495, 3007, 3057, 2677, 2344, 1945, 1637, 1391, 1210, 1109, 1078, 1106, 1202, 1368, 1570, 1847, 2145, 2538, 3057, 3070, 2717, 2389, 2032, 1709, 1461, 1282, 1181, 1164, 1181, 1289, 1435, 1659, 1910, 2229, 2639, 3149, 3163, 2779, 2487, 2145, 1843, 1580, 1410, 1314, 1286, 1302, 1402, 1564, 1780, 2049, 2366, 2748, 3366, 3320, 2888, 2601, 2292, 1988, 1750, 1560, 1461, 1427, 1461, 1560, 1713, 1930, 2196, 2504, 2923, 3669, 3562, 2995, 2707, 2429, 2183, 1935, 1771, 1667, 1619, 1659, 1738, 1900, 2120, 2382, 2687, 3149, 3989, 3783, 3232, 2833, 2620, 2351, 2164, 1982, 1876, 1829, 1876, 1945, 2084, 2307, 2565, 2958, 3511, 4422, 4422, 3562, 3083, 2748, 2565, 2382, 2250, 2096, 2114, 2120, 2190, 2314, 2504, 2822, 3305, 3967, 5207]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3948, 3261, 2808, 2591, 2442, 2297, 2173, 2090, 2068, 2068, 2108, 2167, 2297, 2498, 2829, 3361, 4301, 3405, 2937, 2635, 2427, 2263, 2085, 1943, 1840, 1819, 1832, 1890, 2003, 2102, 2317, 2539, 3030, 3792, 3154, 2738, 2490, 2269, 2085, 1885, 1748, 1658, 1630, 1644, 1694, 1836, 1972, 2119, 2375, 2768, 3451, 2960, 2573, 2353, 2131, 1918, 1706, 1576, 1494, 1459, 1471, 1548, 1647, 1810, 1993, 2224, 2539, 3167, 2850, 2490, 2256, 2003, 1760, 1567, 1430, 1338, 1306, 1317, 1404, 1535, 1676, 1872, 2108, 2412, 2915, 2719, 2427, 2155, 1885, 1654, 1454, 1317, 1219, 1189, 1213, 1295, 1414, 1576, 1781, 2014, 2303, 2778, 2653, 2353, 2085, 1789, 1557, 1359, 1229, 1134, 1107, 1119, 1205, 1326, 1496, 1706, 1938, 2224, 2662, 2608, 2310, 2024, 1736, 1488, 1304, 1167, 1076, 1048, 1068, 1141, 1278, 1440, 1654, 1876, 2186, 2626, 2565, 2276, 2019, 1717, 1473, 1280, 1141, 1052, 1024, 1041, 1123, 1255, 1422, 1633, 1854, 2173, 2582, 2573, 2297, 2009, 1732, 1473, 1288, 1155, 1067, 1034, 1058, 1134, 1259, 1435, 1637, 1867, 2149, 2608, 2591, 2324, 2041, 1764, 1514, 1333, 1187, 1110, 1082, 1100, 1169, 1304, 1468, 1658, 1885, 2217, 2644, 2662, 2360, 2102, 1819, 1583, 1391, 1259, 1171, 1146, 1169, 1242, 1371, 1520, 1717, 1962, 2269, 2758, 2738, 2397, 2186, 1923, 1679, 1485, 1361, 1271, 1240, 1265, 1331, 1465, 1609, 1801, 2035, 2375, 2926, 2871, 2490, 2263, 2035, 1806, 1623, 1479, 1396, 1369, 1388, 1454, 1570, 1725, 1918, 2179, 2548, 3141, 3042, 2582, 2346, 2137, 1952, 1768, 1633, 1551, 1517, 1538, 1599, 1709, 1840, 2062, 2331, 2768, 3421, 3275, 2748, 2450, 2276, 2096, 1933, 1810, 1736, 1687, 1691, 1768, 1858, 2009, 2224, 2523, 3054, 3849, 3888, 3054, 2662, 2367, 2283, 2090, 2014, 1938, 1904, 1890, 1972, 2046, 2230, 2435, 2904, 3390, 4476]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3968, 3193, 2819, 2573, 2382, 2250, 2102, 2046, 1998, 1993, 2046, 2155, 2297, 2514, 2829, 3390, 4325, 3405, 2926, 2608, 2435, 2217, 2024, 1885, 1814, 1760, 1793, 1863, 1948, 2096, 2283, 2539, 3018, 3830, 3154, 2788, 2474, 2263, 2051, 1849, 1706, 1623, 1583, 1599, 1672, 1772, 1943, 2119, 2367, 2768, 3451, 3030, 2653, 2397, 2155, 1904, 1683, 1544, 1448, 1416, 1443, 1517, 1644, 1801, 1978, 2243, 2573, 3180, 2915, 2548, 2276, 1993, 1764, 1557, 1401, 1317, 1290, 1310, 1393, 1514, 1683, 1867, 2119, 2458, 2926, 2748, 2490, 2204, 1895, 1651, 1446, 1301, 1202, 1174, 1209, 1288, 1411, 1576, 1789, 2019, 2338, 2808, 2738, 2404, 2137, 1823, 1567, 1354, 1217, 1126, 1088, 1121, 1207, 1338, 1514, 1732, 1962, 2263, 2758, 2672, 2382, 2085, 1776, 1520, 1301, 1162, 1077, 1046, 1064, 1148, 1275, 1459, 1683, 1895, 2224, 2672, 2690, 2375, 2068, 1756, 1499, 1290, 1143, 1058, 1024, 1053, 1131, 1269, 1443, 1658, 1890, 2217, 2662, 2672, 2375, 2062, 1768, 1511, 1301, 1153, 1067, 1035, 1064, 1146, 1278, 1457, 1669, 1918, 2217, 2700, 2681, 2382, 2108, 1814, 1551, 1342, 1189, 1105, 1077, 1110, 1181, 1315, 1499, 1694, 1938, 2243, 2738, 2738, 2435, 2167, 1863, 1616, 1404, 1263, 1169, 1134, 1172, 1251, 1388, 1548, 1768, 1998, 2346, 2850, 2819, 2490, 2243, 1967, 1698, 1496, 1364, 1269, 1238, 1265, 1352, 1471, 1647, 1840, 2096, 2458, 3042, 2915, 2591, 2303, 2085, 1827, 1630, 1482, 1383, 1359, 1381, 1454, 1586, 1748, 1952, 2224, 2599, 3247, 3141, 2681, 2404, 2204, 1952, 1768, 1616, 1535, 1508, 1529, 1602, 1717, 1858, 2102, 2367, 2819, 3483, 3361, 2829, 2498, 2269, 2108, 1938, 1801, 1698, 1669, 1694, 1760, 1854, 2024, 2250, 2591, 3128, 3968, 3907, 3078, 2662, 2382, 2236, 2096, 1978, 1899, 1881, 1890, 1957, 2046, 2236, 2466, 2926, 3467, 4476]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3878, 3058, 2666, 2450, 2313, 2206, 2082, 1971, 1982, 1982, 2043, 2056, 2177, 2379, 2731, 3268, 4277, 3334, 2777, 2486, 2266, 2095, 1959, 1860, 1781, 1762, 1781, 1800, 1903, 2006, 2177, 2414, 2848, 3586, 3002, 2583, 2313, 2163, 1959, 1800, 1682, 1601, 1556, 1563, 1624, 1708, 1860, 2031, 2236, 2644, 3268, 2898, 2486, 2236, 2018, 1810, 1648, 1513, 1429, 1411, 1405, 1466, 1593, 1725, 1881, 2121, 2450, 3002, 2754, 2379, 2163, 1903, 1690, 1513, 1381, 1300, 1266, 1285, 1348, 1454, 1601, 1790, 2043, 2297, 2800, 2644, 2363, 2082, 1810, 1578, 1399, 1270, 1184, 1160, 1176, 1242, 1370, 1513, 1725, 1936, 2251, 2666, 2603, 2313, 2018, 1753, 1527, 1326, 1197, 1113, 1088, 1102, 1164, 1300, 1480, 1632, 1881, 2163, 2543, 2563, 2251, 1994, 1708, 1480, 1270, 1148, 1063, 1034, 1047, 1121, 1256, 1405, 1601, 1840, 2121, 2505, 2563, 2266, 1971, 1682, 1447, 1266, 1132, 1050, 1024, 1040, 1117, 1237, 1399, 1585, 1810, 2121, 2543, 2543, 2251, 1959, 1699, 1454, 1280, 1132, 1060, 1047, 1067, 1128, 1237, 1399, 1601, 1810, 2121, 2524, 2583, 2282, 1994, 1753, 1486, 1316, 1180, 1106, 1084, 1091, 1156, 1285, 1435, 1656, 1860, 2149, 2563, 2563, 2282, 2069, 1781, 1556, 1364, 1233, 1168, 1140, 1160, 1228, 1331, 1493, 1690, 1914, 2221, 2709, 2687, 2346, 2095, 1881, 1632, 1454, 1342, 1256, 1215, 1247, 1321, 1423, 1585, 1762, 1994, 2329, 2898, 2824, 2397, 2163, 1971, 1753, 1578, 1454, 1376, 1342, 1348, 1423, 1520, 1673, 1850, 2108, 2468, 3030, 3030, 2486, 2282, 2069, 1892, 1716, 1593, 1527, 1480, 1500, 1548, 1656, 1790, 1994, 2266, 2687, 3368, 3268, 2709, 2363, 2191, 2018, 1903, 1762, 1673, 1632, 1648, 1708, 1800, 1936, 2135, 2414, 2924, 3664, 3833, 2949, 2563, 2329, 2297, 2108, 1982, 1892, 1840, 1850, 1947, 1982, 2149, 2379, 2777, 3402, 4571]
                                       }
                                   }, {
                                       "name":    "4224x3136_A_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3559, 3014, 2744, 2601, 2457, 2376, 2188, 2116, 2095, 2091, 2174, 2264, 2367, 2535, 2790, 3145, 3803, 3134, 2853, 2635, 2479, 2312, 2154, 2002, 1917, 1871, 1917, 1974, 2081, 2220, 2371, 2567, 2927, 3401, 2963, 2726, 2540, 2381, 2175, 1950, 1802, 1705, 1669, 1701, 1776, 1919, 2075, 2233, 2443, 2726, 3179, 2878, 2637, 2456, 2223, 1995, 1783, 1616, 1519, 1484, 1510, 1602, 1737, 1927, 2095, 2312, 2559, 3008, 2780, 2567, 2365, 2100, 1849, 1619, 1465, 1365, 1334, 1357, 1446, 1591, 1778, 1987, 2212, 2468, 2838, 2715, 2514, 2270, 1989, 1733, 1499, 1334, 1235, 1201, 1232, 1319, 1469, 1667, 1896, 2123, 2386, 2704, 2647, 2449, 2212, 1914, 1629, 1407, 1241, 1138, 1102, 1132, 1222, 1378, 1574, 1810, 2055, 2321, 2668, 2617, 2432, 2185, 1856, 1577, 1354, 1183, 1078, 1037, 1067, 1164, 1331, 1529, 1763, 1989, 2291, 2637, 2610, 2385, 2142, 1839, 1546, 1327, 1158, 1056, 1024, 1046, 1142, 1304, 1502, 1740, 1980, 2257, 2640, 2587, 2407, 2152, 1852, 1561, 1328, 1164, 1070, 1033, 1066, 1149, 1310, 1501, 1751, 1978, 2269, 2617, 2647, 2415, 2186, 1865, 1601, 1378, 1206, 1108, 1078, 1105, 1198, 1355, 1538, 1776, 2011, 2298, 2647, 2642, 2435, 2214, 1936, 1663, 1441, 1274, 1178, 1162, 1178, 1281, 1416, 1616, 1826, 2075, 2370, 2704, 2692, 2468, 2283, 2025, 1778, 1548, 1394, 1305, 1278, 1293, 1386, 1533, 1720, 1940, 2179, 2442, 2850, 2782, 2531, 2358, 2138, 1897, 1697, 1529, 1440, 1409, 1440, 1529, 1663, 1844, 2053, 2276, 2559, 3049, 2923, 2583, 2418, 2233, 2052, 1852, 1714, 1624, 1581, 1617, 1684, 1820, 1996, 2192, 2401, 2705, 3243, 3031, 2726, 2485, 2364, 2173, 2035, 1888, 1800, 1760, 1800, 1855, 1964, 2135, 2317, 2586, 2941, 3496, 3403, 2920, 2638, 2430, 2321, 2195, 2099, 1974, 1993, 1995, 2046, 2136, 2269, 2490, 2812, 3223, 3952]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3071, 2695, 2423, 2302, 2217, 2121, 2031, 1968, 1952, 1949, 1974, 2009, 2095, 2226, 2439, 2770, 3318, 2756, 2498, 2325, 2202, 2097, 1965, 1853, 1767, 1751, 1760, 1805, 1892, 1957, 2109, 2248, 2570, 3037, 2618, 2380, 2238, 2095, 1965, 1806, 1693, 1616, 1591, 1603, 1643, 1762, 1865, 1966, 2143, 2403, 2840, 2506, 2276, 2148, 1996, 1834, 1656, 1544, 1472, 1440, 1450, 1518, 1602, 1736, 1875, 2039, 2249, 2665, 2448, 2230, 2084, 1898, 1702, 1536, 1413, 1328, 1298, 1308, 1388, 1506, 1624, 1781, 1957, 2166, 2498, 2364, 2194, 2010, 1803, 1612, 1435, 1308, 1215, 1186, 1209, 1287, 1396, 1539, 1709, 1887, 2090, 2411, 2325, 2143, 1958, 1723, 1526, 1347, 1225, 1133, 1106, 1118, 1201, 1315, 1468, 1647, 1828, 2034, 2332, 2296, 2113, 1909, 1678, 1463, 1295, 1165, 1076, 1048, 1068, 1139, 1270, 1418, 1603, 1778, 2008, 2311, 2264, 2086, 1906, 1662, 1450, 1272, 1139, 1052, 1024, 1041, 1122, 1248, 1401, 1584, 1760, 1998, 2278, 2268, 2102, 1896, 1674, 1449, 1280, 1153, 1067, 1034, 1058, 1132, 1252, 1413, 1587, 1770, 1976, 2296, 2275, 2118, 1919, 1700, 1485, 1322, 1184, 1109, 1082, 1099, 1166, 1294, 1442, 1603, 1782, 2028, 2318, 2319, 2138, 1964, 1743, 1545, 1374, 1252, 1168, 1144, 1166, 1236, 1355, 1487, 1651, 1842, 2062, 2395, 2360, 2153, 2024, 1827, 1627, 1459, 1347, 1263, 1234, 1257, 1318, 1440, 1563, 1718, 1894, 2135, 2507, 2438, 2209, 2072, 1912, 1732, 1579, 1453, 1378, 1354, 1371, 1429, 1530, 1659, 1809, 2001, 2256, 2645, 2534, 2256, 2119, 1982, 1847, 1700, 1587, 1516, 1486, 1504, 1555, 1646, 1748, 1917, 2106, 2403, 2818, 2661, 2353, 2176, 2075, 1952, 1830, 1733, 1673, 1630, 1632, 1695, 1763, 1877, 2031, 2235, 2588, 3079, 3029, 2540, 2308, 2119, 2083, 1943, 1892, 1834, 1806, 1791, 1855, 1905, 2039, 2175, 2498, 2791, 3440]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3085, 2644, 2431, 2287, 2167, 2081, 1969, 1929, 1890, 1882, 1920, 1999, 2095, 2239, 2439, 2791, 3335, 2756, 2490, 2303, 2208, 2057, 1911, 1800, 1744, 1697, 1725, 1781, 1843, 1952, 2081, 2248, 2561, 3065, 2618, 2419, 2225, 2090, 1935, 1773, 1654, 1583, 1547, 1561, 1623, 1703, 1839, 1966, 2136, 2403, 2840, 2560, 2341, 2185, 2017, 1821, 1635, 1514, 1428, 1399, 1423, 1489, 1599, 1728, 1862, 2055, 2276, 2675, 2498, 2278, 2101, 1890, 1705, 1526, 1385, 1308, 1282, 1301, 1378, 1486, 1631, 1777, 1966, 2203, 2507, 2387, 2246, 2053, 1812, 1609, 1427, 1293, 1199, 1172, 1205, 1280, 1394, 1539, 1716, 1891, 2119, 2435, 2393, 2186, 2003, 1754, 1535, 1342, 1213, 1125, 1088, 1120, 1203, 1327, 1485, 1671, 1849, 2067, 2409, 2348, 2174, 1963, 1715, 1494, 1292, 1160, 1077, 1046, 1064, 1146, 1267, 1436, 1629, 1795, 2040, 2348, 2365, 2170, 1950, 1698, 1474, 1282, 1141, 1058, 1024, 1053, 1130, 1262, 1421, 1607, 1792, 2036, 2342, 2348, 2168, 1943, 1707, 1485, 1292, 1151, 1067, 1035, 1064, 1144, 1270, 1434, 1616, 1815, 2034, 2370, 2347, 2167, 1978, 1746, 1520, 1330, 1186, 1104, 1077, 1109, 1178, 1304, 1471, 1636, 1828, 2050, 2393, 2379, 2200, 2020, 1783, 1576, 1387, 1256, 1166, 1132, 1169, 1244, 1372, 1513, 1697, 1873, 2126, 2468, 2424, 2230, 2073, 1866, 1645, 1469, 1350, 1261, 1232, 1257, 1338, 1445, 1598, 1753, 1946, 2203, 2597, 2472, 2291, 2106, 1956, 1751, 1586, 1456, 1366, 1344, 1364, 1429, 1545, 1680, 1839, 2039, 2297, 2726, 2608, 2335, 2167, 2039, 1847, 1700, 1571, 1501, 1477, 1495, 1558, 1654, 1764, 1951, 2136, 2444, 2864, 2724, 2415, 2214, 2069, 1962, 1834, 1725, 1638, 1614, 1634, 1688, 1760, 1890, 2053, 2290, 2645, 3165, 3042, 2558, 2308, 2131, 2044, 1948, 1861, 1799, 1786, 1791, 1842, 1905, 2044, 2200, 2515, 2849, 3440]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3022, 2543, 2311, 2187, 2109, 2043, 1952, 1863, 1876, 1873, 1918, 1914, 1994, 2129, 2362, 2700, 3301, 2704, 2375, 2205, 2066, 1951, 1853, 1778, 1714, 1699, 1714, 1724, 1803, 1874, 1992, 2147, 2430, 2887, 2504, 2257, 2092, 2004, 1853, 1729, 1632, 1562, 1522, 1527, 1578, 1645, 1766, 1890, 2028, 2305, 2703, 2459, 2206, 2049, 1897, 1736, 1602, 1485, 1410, 1394, 1387, 1441, 1552, 1659, 1777, 1952, 2177, 2538, 2373, 2139, 2004, 1809, 1637, 1485, 1366, 1291, 1259, 1277, 1335, 1429, 1555, 1708, 1901, 2071, 2409, 2305, 2140, 1946, 1735, 1541, 1382, 1263, 1181, 1158, 1173, 1236, 1354, 1480, 1658, 1819, 2047, 2322, 2285, 2109, 1899, 1690, 1498, 1315, 1193, 1112, 1088, 1101, 1161, 1290, 1453, 1579, 1778, 1983, 2237, 2260, 2063, 1882, 1652, 1456, 1262, 1146, 1063, 1034, 1047, 1120, 1249, 1385, 1554, 1746, 1953, 2214, 2263, 2077, 1864, 1629, 1425, 1259, 1131, 1050, 1024, 1040, 1116, 1231, 1380, 1540, 1721, 1954, 2246, 2244, 2063, 1851, 1644, 1431, 1272, 1130, 1060, 1047, 1067, 1126, 1230, 1379, 1554, 1720, 1953, 2229, 2269, 2083, 1878, 1690, 1459, 1305, 1177, 1105, 1084, 1090, 1153, 1275, 1411, 1601, 1760, 1971, 2253, 2241, 2073, 1935, 1709, 1520, 1349, 1227, 1165, 1138, 1157, 1222, 1317, 1461, 1627, 1800, 2022, 2356, 2321, 2111, 1945, 1790, 1584, 1429, 1329, 1249, 1210, 1240, 1309, 1400, 1541, 1683, 1859, 2097, 2485, 2402, 2134, 1987, 1856, 1684, 1538, 1429, 1359, 1328, 1333, 1400, 1484, 1612, 1749, 1941, 2191, 2560, 2525, 2180, 2066, 1923, 1794, 1653, 1550, 1493, 1451, 1468, 1508, 1598, 1704, 1859, 2053, 2339, 2778, 2656, 2323, 2105, 2003, 1885, 1803, 1690, 1615, 1580, 1592, 1641, 1712, 1814, 1956, 2147, 2488, 2944, 2990, 2462, 2231, 2088, 2095, 1958, 1864, 1793, 1749, 1756, 1833, 1850, 1971, 2129, 2398, 2800, 3507]
                                       }
                                   }, {
                                       "name":    "4224x3136_CWF_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3767, 3045, 2672, 2450, 2313, 2145, 1990, 1925, 1881, 1907, 1962, 2039, 2167, 2407, 2707, 3288, 4063, 3288, 2817, 2509, 2313, 2112, 1962, 1815, 1724, 1696, 1724, 1776, 1899, 2000, 2202, 2421, 2917, 3667, 3001, 2672, 2380, 2156, 1962, 1800, 1642, 1568, 1533, 1556, 1598, 1717, 1864, 2029, 2275, 2655, 3288, 2856, 2525, 2275, 2039, 1831, 1623, 1510, 1412, 1389, 1403, 1462, 1580, 1724, 1890, 2156, 2450, 3045, 2761, 2436, 2156, 1907, 1689, 1510, 1375, 1293, 1265, 1285, 1348, 1467, 1604, 1807, 2000, 2326, 2798, 2604, 2326, 2070, 1807, 1580, 1407, 1269, 1192, 1165, 1189, 1258, 1366, 1505, 1710, 1899, 2214, 2621, 2525, 2287, 2009, 1746, 1505, 1330, 1199, 1112, 1086, 1103, 1179, 1297, 1442, 1623, 1840, 2134, 2556, 2494, 2226, 1990, 1689, 1467, 1289, 1156, 1072, 1039, 1058, 1140, 1258, 1403, 1573, 1784, 2070, 2465, 2494, 2214, 1953, 1669, 1422, 1254, 1130, 1047, 1024, 1042, 1115, 1242, 1375, 1568, 1776, 2080, 2465, 2540, 2226, 1953, 1676, 1442, 1265, 1137, 1058, 1037, 1053, 1124, 1242, 1389, 1568, 1792, 2091, 2509, 2509, 2214, 1981, 1696, 1473, 1285, 1159, 1092, 1066, 1086, 1149, 1273, 1427, 1598, 1792, 2112, 2572, 2525, 2275, 2039, 1761, 1538, 1352, 1221, 1149, 1130, 1140, 1221, 1335, 1478, 1662, 1873, 2179, 2672, 2588, 2339, 2112, 1831, 1604, 1442, 1314, 1239, 1221, 1224, 1305, 1412, 1573, 1732, 1981, 2313, 2780, 2761, 2407, 2179, 1953, 1717, 1538, 1412, 1352, 1314, 1343, 1403, 1516, 1669, 1848, 2080, 2436, 3001, 3001, 2509, 2275, 2060, 1864, 1689, 1562, 1483, 1467, 1473, 1538, 1636, 1776, 1981, 2262, 2655, 3314, 3186, 2672, 2380, 2167, 1981, 1840, 1710, 1636, 1598, 1623, 1696, 1761, 1916, 2134, 2436, 2937, 3767, 3733, 2980, 2556, 2287, 2123, 1990, 1848, 1815, 1769, 1792, 1831, 1953, 2060, 2366, 2743, 3368, 4556]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3802, 3055, 2794, 2476, 2360, 2179, 2075, 2017, 1980, 1957, 2023, 2095, 2216, 2403, 2735, 3302, 4220, 3269, 2830, 2544, 2343, 2157, 1986, 1878, 1786, 1757, 1771, 1820, 1905, 2036, 2216, 2467, 2906, 3653, 3084, 2647, 2412, 2193, 2023, 1836, 1697, 1602, 1567, 1594, 1642, 1761, 1889, 2055, 2293, 2679, 3336, 2830, 2514, 2269, 2055, 1851, 1671, 1537, 1449, 1414, 1417, 1502, 1621, 1761, 1928, 2179, 2467, 3055, 2758, 2412, 2186, 1939, 1715, 1541, 1396, 1317, 1279, 1299, 1370, 1485, 1613, 1815, 2023, 2310, 2855, 2668, 2343, 2081, 1825, 1613, 1427, 1291, 1212, 1169, 1190, 1274, 1376, 1534, 1720, 1934, 2223, 2690, 2574, 2285, 2023, 1757, 1534, 1353, 1205, 1126, 1093, 1111, 1179, 1304, 1472, 1654, 1873, 2157, 2604, 2534, 2254, 1974, 1715, 1468, 1289, 1160, 1069, 1039, 1059, 1138, 1261, 1417, 1613, 1825, 2095, 2564, 2524, 2223, 1963, 1671, 1442, 1271, 1130, 1044, 1027, 1037, 1113, 1235, 1399, 1602, 1800, 2102, 2553, 2514, 2269, 1957, 1702, 1455, 1276, 1148, 1066, 1024, 1044, 1123, 1247, 1396, 1590, 1810, 2108, 2544, 2524, 2262, 1974, 1733, 1492, 1304, 1175, 1094, 1062, 1089, 1156, 1284, 1433, 1613, 1836, 2143, 2564, 2584, 2293, 2049, 1766, 1556, 1367, 1242, 1154, 1132, 1146, 1219, 1344, 1488, 1689, 1900, 2193, 2679, 2647, 2360, 2115, 1867, 1638, 1455, 1328, 1247, 1212, 1247, 1309, 1420, 1575, 1747, 1993, 2326, 2830, 2758, 2421, 2179, 1969, 1757, 1571, 1452, 1367, 1342, 1342, 1417, 1520, 1680, 1851, 2095, 2448, 3084, 2932, 2524, 2285, 2102, 1878, 1720, 1594, 1509, 1475, 1488, 1548, 1654, 1786, 1999, 2246, 2679, 3319, 3174, 2690, 2377, 2186, 2011, 1867, 1733, 1671, 1617, 1638, 1706, 1795, 1934, 2157, 2430, 2972, 3695, 3737, 2958, 2574, 2318, 2179, 2017, 1934, 1878, 1815, 1851, 1857, 1969, 2122, 2394, 2806, 3371, 4304]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3760, 3074, 2741, 2473, 2358, 2171, 2062, 1969, 1951, 1975, 2011, 2088, 2200, 2409, 2741, 3357, 4274, 3257, 2860, 2530, 2332, 2135, 1975, 1852, 1782, 1744, 1740, 1822, 1901, 2017, 2200, 2464, 2924, 3656, 3089, 2685, 2418, 2200, 2005, 1827, 1682, 1588, 1554, 1569, 1640, 1754, 1906, 2049, 2292, 2707, 3357, 2924, 2550, 2308, 2068, 1868, 1656, 1533, 1423, 1408, 1432, 1505, 1612, 1749, 1923, 2171, 2511, 3118, 2799, 2445, 2222, 1963, 1717, 1526, 1384, 1310, 1282, 1297, 1376, 1488, 1640, 1832, 2049, 2358, 2898, 2642, 2383, 2135, 1852, 1608, 1432, 1284, 1204, 1176, 1191, 1272, 1387, 1547, 1740, 1957, 2252, 2730, 2621, 2324, 2075, 1777, 1536, 1342, 1209, 1124, 1092, 1112, 1193, 1318, 1478, 1665, 1895, 2178, 2631, 2560, 2292, 2017, 1735, 1498, 1287, 1160, 1074, 1045, 1066, 1141, 1267, 1432, 1640, 1858, 2149, 2590, 2550, 2268, 1999, 1712, 1464, 1277, 1135, 1054, 1024, 1050, 1124, 1255, 1414, 1612, 1842, 2142, 2530, 2580, 2284, 2017, 1717, 1494, 1284, 1153, 1062, 1034, 1064, 1141, 1267, 1417, 1624, 1837, 2142, 2580, 2621, 2308, 2030, 1763, 1529, 1328, 1185, 1099, 1071, 1101, 1176, 1307, 1464, 1640, 1879, 2185, 2653, 2642, 2349, 2075, 1822, 1592, 1393, 1260, 1168, 1143, 1166, 1240, 1361, 1526, 1721, 1934, 2252, 2752, 2663, 2392, 2178, 1901, 1690, 1484, 1358, 1262, 1234, 1264, 1339, 1448, 1612, 1777, 2036, 2349, 2924, 2823, 2492, 2245, 2011, 1787, 1600, 1471, 1390, 1358, 1373, 1445, 1554, 1712, 1912, 2135, 2501, 3133, 3018, 2600, 2332, 2142, 1912, 1740, 1604, 1515, 1491, 1515, 1592, 1673, 1827, 2042, 2308, 2741, 3427, 3225, 2776, 2418, 2237, 2062, 1895, 1768, 1690, 1648, 1678, 1726, 1827, 1993, 2185, 2540, 3032, 3849, 3760, 3060, 2569, 2349, 2200, 2049, 1940, 1884, 1847, 1817, 1884, 1969, 2178, 2375, 2823, 3392, 4448]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3563, 2770, 2511, 2314, 2117, 2063, 1905, 1872, 1872, 1861, 1894, 1939, 2037, 2234, 2511, 3029, 3955, 3001, 2592, 2281, 2159, 1987, 1861, 1750, 1695, 1652, 1669, 1686, 1769, 1872, 2037, 2234, 2678, 3342, 2843, 2436, 2188, 2011, 1861, 1713, 1595, 1527, 1485, 1471, 1541, 1619, 1760, 1894, 2103, 2436, 3029, 2656, 2330, 2103, 1894, 1731, 1564, 1445, 1377, 1343, 1360, 1407, 1506, 1611, 1760, 2024, 2281, 2793, 2592, 2218, 1999, 1789, 1595, 1426, 1332, 1250, 1231, 1245, 1295, 1395, 1520, 1704, 1894, 2159, 2656, 2492, 2174, 1951, 1686, 1492, 1349, 1226, 1177, 1135, 1156, 1208, 1305, 1452, 1619, 1809, 2063, 2511, 2382, 2145, 1894, 1643, 1432, 1269, 1173, 1097, 1072, 1086, 1152, 1254, 1383, 1571, 1760, 2024, 2382, 2382, 2131, 1861, 1595, 1413, 1235, 1128, 1068, 1047, 1044, 1104, 1217, 1343, 1527, 1704, 1963, 2382, 2314, 2089, 1840, 1611, 1377, 1221, 1108, 1034, 1024, 1027, 1104, 1208, 1343, 1513, 1713, 1974, 2364, 2364, 2103, 1850, 1611, 1383, 1217, 1120, 1051, 1031, 1044, 1104, 1203, 1349, 1513, 1686, 1999, 2382, 2382, 2103, 1894, 1652, 1420, 1259, 1144, 1082, 1068, 1072, 1132, 1245, 1366, 1541, 1741, 2024, 2400, 2436, 2131, 1927, 1686, 1471, 1316, 1199, 1139, 1120, 1120, 1185, 1279, 1420, 1603, 1779, 2089, 2492, 2492, 2203, 2011, 1760, 1556, 1389, 1289, 1217, 1190, 1203, 1250, 1354, 1485, 1652, 1883, 2159, 2656, 2634, 2249, 2076, 1861, 1652, 1499, 1372, 1310, 1274, 1305, 1354, 1445, 1579, 1750, 1999, 2297, 2843, 2793, 2330, 2131, 1927, 1760, 1611, 1506, 1426, 1395, 1420, 1485, 1556, 1669, 1850, 2117, 2492, 3147, 3029, 2492, 2218, 2050, 1872, 1760, 1643, 1579, 1549, 1556, 1587, 1677, 1829, 2011, 2314, 2746, 3524, 3486, 2793, 2400, 2203, 2076, 1927, 1850, 1779, 1741, 1731, 1789, 1872, 2050, 2249, 2678, 3209, 4106]
                                       }
                                   }, {
                                       "name":    "4224x3136_CWF_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2944, 2534, 2316, 2187, 2109, 1990, 1871, 1822, 1786, 1806, 1846, 1899, 1986, 2152, 2344, 2715, 3151, 2671, 2406, 2223, 2106, 1966, 1856, 1737, 1662, 1638, 1662, 1702, 1800, 1869, 2013, 2152, 2483, 2946, 2503, 2328, 2147, 1998, 1856, 1729, 1595, 1532, 1501, 1520, 1554, 1654, 1769, 1889, 2060, 2314, 2718, 2427, 2237, 2082, 1916, 1755, 1579, 1482, 1393, 1373, 1385, 1437, 1539, 1658, 1785, 1981, 2177, 2571, 2378, 2185, 1998, 1813, 1636, 1482, 1360, 1284, 1258, 1277, 1335, 1442, 1558, 1723, 1864, 2095, 2407, 2273, 2109, 1936, 1733, 1543, 1390, 1262, 1189, 1163, 1186, 1251, 1351, 1473, 1645, 1787, 2016, 2287, 2223, 2087, 1891, 1683, 1477, 1319, 1195, 1111, 1086, 1102, 1176, 1287, 1417, 1571, 1742, 1958, 2247, 2205, 2041, 1879, 1635, 1443, 1281, 1154, 1072, 1039, 1058, 1138, 1251, 1383, 1528, 1697, 1909, 2181, 2207, 2033, 1848, 1618, 1401, 1247, 1129, 1047, 1024, 1042, 1114, 1236, 1357, 1525, 1691, 1920, 2184, 2242, 2041, 1846, 1623, 1420, 1258, 1135, 1058, 1037, 1053, 1123, 1235, 1370, 1524, 1704, 1927, 2217, 2210, 2026, 1866, 1638, 1447, 1275, 1156, 1091, 1066, 1085, 1146, 1264, 1403, 1548, 1700, 1940, 2260, 2211, 2067, 1909, 1691, 1503, 1337, 1215, 1147, 1128, 1138, 1215, 1321, 1447, 1601, 1764, 1987, 2327, 2243, 2106, 1960, 1745, 1558, 1418, 1302, 1232, 1215, 1218, 1293, 1390, 1529, 1656, 1847, 2084, 2393, 2354, 2142, 2001, 1840, 1652, 1501, 1390, 1336, 1301, 1328, 1381, 1480, 1608, 1748, 1917, 2165, 2538, 2503, 2199, 2060, 1915, 1769, 1628, 1521, 1452, 1439, 1443, 1499, 1580, 1691, 1847, 2049, 2314, 2738, 2597, 2294, 2119, 1983, 1853, 1747, 1643, 1581, 1549, 1570, 1630, 1677, 1796, 1956, 2164, 2498, 3019, 2920, 2485, 2225, 2054, 1949, 1857, 1747, 1725, 1686, 1704, 1732, 1825, 1896, 2118, 2372, 2775, 3496]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2969, 2541, 2412, 2208, 2148, 2020, 1946, 1904, 1874, 1850, 1900, 1947, 2027, 2149, 2366, 2726, 3261, 2657, 2416, 2252, 2131, 2005, 1877, 1794, 1718, 1694, 1704, 1742, 1805, 1900, 2024, 2189, 2474, 2936, 2565, 2308, 2174, 2030, 1910, 1762, 1646, 1563, 1532, 1556, 1595, 1693, 1791, 1911, 2075, 2333, 2754, 2407, 2228, 2077, 1930, 1773, 1624, 1508, 1429, 1397, 1398, 1475, 1577, 1691, 1818, 2001, 2190, 2579, 2376, 2166, 2024, 1841, 1660, 1511, 1381, 1308, 1272, 1290, 1356, 1459, 1566, 1731, 1884, 2082, 2452, 2324, 2124, 1946, 1749, 1573, 1409, 1283, 1208, 1167, 1187, 1267, 1360, 1500, 1654, 1817, 2024, 2341, 2262, 2085, 1903, 1694, 1504, 1341, 1201, 1125, 1092, 1110, 1176, 1294, 1446, 1599, 1771, 1978, 2286, 2237, 2065, 1865, 1659, 1444, 1281, 1158, 1069, 1039, 1059, 1136, 1254, 1396, 1565, 1733, 1931, 2261, 2231, 2041, 1857, 1619, 1420, 1264, 1129, 1044, 1027, 1037, 1112, 1229, 1380, 1556, 1712, 1938, 2255, 2221, 2078, 1850, 1647, 1432, 1268, 1146, 1066, 1024, 1044, 1122, 1240, 1376, 1544, 1720, 1942, 2245, 2222, 2066, 1860, 1672, 1465, 1294, 1172, 1093, 1062, 1088, 1153, 1275, 1409, 1562, 1739, 1966, 2254, 2257, 2082, 1918, 1695, 1520, 1351, 1236, 1151, 1130, 1144, 1213, 1330, 1457, 1626, 1788, 1999, 2333, 2289, 2123, 1963, 1777, 1589, 1430, 1315, 1240, 1207, 1240, 1297, 1397, 1531, 1670, 1858, 2095, 2432, 2352, 2153, 2001, 1854, 1688, 1531, 1427, 1351, 1328, 1327, 1394, 1484, 1618, 1750, 1930, 2175, 2601, 2452, 2210, 2068, 1951, 1782, 1656, 1551, 1477, 1446, 1457, 1508, 1596, 1700, 1863, 2036, 2333, 2741, 2588, 2308, 2117, 1999, 1878, 1771, 1663, 1613, 1566, 1583, 1639, 1708, 1812, 1975, 2160, 2525, 2967, 2923, 2469, 2239, 2079, 1996, 1880, 1822, 1781, 1727, 1757, 1754, 1839, 1948, 2141, 2421, 2777, 3320]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2939, 2555, 2370, 2206, 2147, 2013, 1934, 1861, 1848, 1866, 1889, 1941, 2014, 2153, 2370, 2767, 3299, 2648, 2439, 2240, 2122, 1986, 1867, 1771, 1714, 1682, 1676, 1744, 1802, 1884, 2011, 2187, 2488, 2938, 2569, 2338, 2179, 2036, 1894, 1753, 1632, 1550, 1520, 1533, 1593, 1687, 1806, 1906, 2074, 2355, 2770, 2479, 2257, 2110, 1941, 1788, 1610, 1504, 1404, 1391, 1412, 1477, 1569, 1680, 1814, 1994, 2226, 2627, 2408, 2193, 2055, 1863, 1662, 1497, 1369, 1301, 1275, 1288, 1361, 1461, 1591, 1746, 1906, 2121, 2485, 2303, 2157, 1993, 1773, 1569, 1414, 1276, 1200, 1174, 1188, 1265, 1371, 1512, 1672, 1837, 2048, 2373, 2299, 2118, 1949, 1712, 1506, 1330, 1205, 1123, 1092, 1111, 1190, 1307, 1451, 1609, 1791, 1995, 2307, 2258, 2097, 1903, 1677, 1473, 1279, 1158, 1074, 1045, 1066, 1139, 1259, 1410, 1590, 1762, 1976, 2282, 2252, 2079, 1888, 1657, 1441, 1270, 1134, 1054, 1024, 1050, 1123, 1248, 1394, 1565, 1749, 1972, 2236, 2274, 2091, 1903, 1661, 1469, 1276, 1151, 1062, 1034, 1064, 1139, 1259, 1396, 1575, 1744, 1970, 2274, 2299, 2105, 1909, 1699, 1499, 1317, 1182, 1098, 1071, 1100, 1173, 1297, 1438, 1587, 1776, 2001, 2325, 2303, 2129, 1940, 1746, 1554, 1376, 1253, 1165, 1141, 1163, 1234, 1346, 1492, 1655, 1817, 2048, 2390, 2302, 2149, 2017, 1807, 1637, 1458, 1344, 1254, 1228, 1256, 1326, 1424, 1565, 1697, 1895, 2114, 2505, 2401, 2211, 2057, 1891, 1715, 1558, 1445, 1373, 1343, 1356, 1421, 1515, 1647, 1804, 1964, 2218, 2639, 2516, 2271, 2107, 1986, 1812, 1674, 1560, 1482, 1461, 1482, 1549, 1614, 1736, 1900, 2087, 2382, 2822, 2625, 2374, 2150, 2042, 1923, 1796, 1695, 1631, 1594, 1620, 1657, 1736, 1863, 1998, 2248, 2571, 3079, 2939, 2545, 2235, 2104, 2014, 1908, 1827, 1786, 1756, 1726, 1778, 1839, 1995, 2126, 2435, 2793, 3421]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2801, 2328, 2190, 2076, 1944, 1920, 1796, 1775, 1778, 1765, 1787, 1813, 1876, 2011, 2190, 2522, 3076, 2462, 2232, 2039, 1977, 1858, 1766, 1679, 1635, 1598, 1612, 1621, 1685, 1758, 1874, 2001, 2299, 2710, 2385, 2141, 1988, 1873, 1767, 1650, 1551, 1493, 1456, 1441, 1502, 1564, 1677, 1772, 1918, 2141, 2524, 2273, 2080, 1937, 1788, 1664, 1525, 1421, 1360, 1329, 1344, 1385, 1471, 1556, 1670, 1870, 2040, 2378, 2247, 2006, 1863, 1707, 1550, 1403, 1319, 1243, 1225, 1238, 1284, 1374, 1481, 1631, 1773, 1958, 2296, 2185, 1983, 1832, 1623, 1461, 1334, 1220, 1174, 1133, 1153, 1203, 1292, 1423, 1562, 1708, 1890, 2200, 2108, 1968, 1790, 1589, 1408, 1260, 1170, 1096, 1072, 1085, 1149, 1246, 1362, 1524, 1672, 1866, 2108, 2115, 1961, 1765, 1548, 1392, 1228, 1126, 1068, 1047, 1044, 1103, 1211, 1326, 1486, 1626, 1819, 2115, 2062, 1927, 1748, 1564, 1359, 1215, 1107, 1034, 1024, 1027, 1103, 1203, 1327, 1474, 1635, 1830, 2102, 2100, 1937, 1755, 1563, 1364, 1211, 1119, 1051, 1031, 1044, 1103, 1197, 1332, 1473, 1610, 1849, 2115, 2108, 1932, 1790, 1598, 1397, 1250, 1142, 1081, 1068, 1071, 1130, 1237, 1346, 1496, 1655, 1866, 2123, 2140, 1947, 1811, 1623, 1441, 1303, 1194, 1137, 1118, 1118, 1180, 1267, 1393, 1548, 1682, 1912, 2185, 2169, 1994, 1873, 1681, 1514, 1368, 1278, 1211, 1185, 1197, 1241, 1335, 1448, 1585, 1763, 1958, 2296, 2257, 2014, 1914, 1759, 1593, 1464, 1352, 1296, 1263, 1292, 1335, 1414, 1527, 1662, 1849, 2053, 2417, 2348, 2057, 1941, 1801, 1677, 1557, 1469, 1399, 1371, 1394, 1450, 1507, 1596, 1735, 1929, 2185, 2613, 2482, 2155, 1988, 1885, 1758, 1677, 1582, 1530, 1504, 1509, 1532, 1603, 1721, 1852, 2066, 2351, 2842, 2747, 2345, 2103, 1985, 1909, 1802, 1748, 1693, 1661, 1650, 1695, 1755, 1887, 2023, 2321, 2656, 3181]
                                       }
                                   }, {
                                       "name":    "4224x3136_D50_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4336, 3561, 3082, 2817, 2639, 2442, 2330, 2218, 2135, 2176, 2239, 2366, 2579, 2717, 3168, 3766, 4789, 3797, 3212, 2888, 2639, 2416, 2228, 2058, 1953, 1889, 1937, 2031, 2135, 2319, 2551, 2870, 3353, 4103, 3480, 3002, 2766, 2495, 2261, 2013, 1836, 1732, 1719, 1706, 1793, 1928, 2125, 2342, 2654, 3082, 3735, 3305, 2906, 2609, 2319, 2058, 1793, 1633, 1530, 1500, 1514, 1599, 1765, 1953, 2165, 2482, 2817, 3428, 3189, 2766, 2455, 2155, 1873, 1639, 1466, 1374, 1330, 1357, 1443, 1599, 1800, 2031, 2330, 2685, 3235, 3062, 2685, 2366, 2040, 1732, 1504, 1349, 1240, 1195, 1227, 1311, 1471, 1675, 1937, 2207, 2565, 3041, 2944, 2609, 2295, 1953, 1657, 1403, 1247, 1136, 1100, 1127, 1223, 1378, 1593, 1843, 2115, 2495, 2944, 2870, 2551, 2239, 1889, 1582, 1357, 1182, 1079, 1045, 1072, 1176, 1326, 1530, 1786, 2049, 2442, 2888, 2835, 2523, 2228, 1858, 1540, 1330, 1161, 1059, 1024, 1047, 1156, 1292, 1509, 1765, 2040, 2404, 2870, 2852, 2537, 2218, 1843, 1572, 1330, 1164, 1072, 1038, 1059, 1150, 1311, 1514, 1752, 2058, 2404, 2925, 2852, 2565, 2250, 1897, 1605, 1378, 1204, 1119, 1087, 1116, 1198, 1357, 1550, 1807, 2077, 2442, 2982, 2944, 2624, 2319, 1978, 1687, 1452, 1285, 1189, 1159, 1189, 1289, 1425, 1622, 1866, 2135, 2523, 3062, 3021, 2685, 2379, 2068, 1786, 1566, 1395, 1307, 1267, 1296, 1390, 1540, 1745, 1970, 2273, 2654, 3212, 3168, 2766, 2482, 2218, 1937, 1700, 1556, 1438, 1416, 1457, 1545, 1669, 1851, 2115, 2404, 2835, 3534, 3403, 2888, 2624, 2342, 2106, 1897, 1738, 1627, 1582, 1639, 1706, 1836, 2013, 2295, 2609, 3062, 3894, 3705, 3124, 2701, 2509, 2295, 2077, 1937, 1829, 1793, 1836, 1912, 2013, 2218, 2495, 2800, 3377, 4216, 4295, 3281, 2870, 2609, 2455, 2273, 2145, 2040, 2022, 2049, 2106, 2228, 2429, 2717, 3168, 3894, 5166]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3860, 3100, 2779, 2527, 2386, 2260, 2102, 2043, 1998, 1976, 2049, 2121, 2245, 2476, 2779, 3375, 4195, 3359, 2890, 2572, 2370, 2185, 2026, 1903, 1808, 1782, 1795, 1859, 1939, 2066, 2260, 2510, 2973, 3684, 3100, 2707, 2434, 2232, 2031, 1855, 1714, 1629, 1590, 1601, 1667, 1773, 1924, 2084, 2347, 2727, 3359, 2925, 2545, 2340, 2114, 1879, 1686, 1546, 1450, 1427, 1430, 1504, 1633, 1786, 1955, 2204, 2510, 3048, 2769, 2476, 2211, 1981, 1731, 1543, 1405, 1323, 1299, 1316, 1373, 1495, 1652, 1859, 2084, 2394, 2890, 2697, 2402, 2114, 1869, 1626, 1442, 1299, 1210, 1175, 1198, 1270, 1402, 1556, 1752, 1981, 2295, 2737, 2638, 2325, 2060, 1786, 1546, 1350, 1214, 1128, 1089, 1117, 1187, 1314, 1477, 1686, 1903, 2198, 2647, 2519, 2295, 2003, 1735, 1486, 1290, 1166, 1072, 1036, 1057, 1142, 1268, 1425, 1637, 1859, 2165, 2619, 2554, 2274, 1998, 1718, 1453, 1265, 1131, 1051, 1024, 1043, 1117, 1246, 1416, 1615, 1850, 2139, 2572, 2563, 2260, 1998, 1714, 1468, 1281, 1144, 1063, 1028, 1054, 1117, 1252, 1422, 1622, 1864, 2152, 2572, 2554, 2295, 2031, 1752, 1501, 1311, 1192, 1104, 1074, 1090, 1162, 1297, 1453, 1656, 1879, 2211, 2609, 2619, 2340, 2084, 1808, 1587, 1381, 1248, 1156, 1138, 1158, 1233, 1363, 1507, 1706, 1939, 2267, 2737, 2697, 2386, 2152, 1908, 1671, 1480, 1338, 1259, 1227, 1248, 1321, 1447, 1590, 1795, 2026, 2370, 2890, 2823, 2467, 2218, 2003, 1777, 1587, 1471, 1384, 1348, 1376, 1433, 1540, 1710, 1884, 2139, 2510, 3155, 2998, 2536, 2325, 2108, 1908, 1752, 1611, 1533, 1489, 1507, 1563, 1686, 1813, 2031, 2317, 2707, 3423, 3239, 2758, 2426, 2211, 2055, 1908, 1777, 1694, 1652, 1671, 1735, 1818, 1976, 2204, 2519, 2998, 3881, 3760, 2986, 2628, 2370, 2204, 2060, 1955, 1889, 1845, 1841, 1884, 2003, 2191, 2451, 2834, 3423, 4426]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4027, 3118, 2796, 2526, 2402, 2213, 2105, 2012, 1996, 1985, 2052, 2142, 2261, 2466, 2807, 3361, 4363, 3392, 2896, 2589, 2394, 2200, 2023, 1897, 1813, 1778, 1786, 1854, 1943, 2069, 2275, 2535, 3015, 3778, 3158, 2734, 2434, 2240, 2034, 1849, 1711, 1624, 1588, 1613, 1672, 1778, 1917, 2099, 2363, 2744, 3473, 2942, 2616, 2363, 2117, 1883, 1676, 1538, 1453, 1416, 1450, 1529, 1638, 1782, 1958, 2200, 2552, 3214, 2829, 2526, 2261, 1985, 1744, 1551, 1403, 1322, 1296, 1315, 1387, 1507, 1668, 1864, 2105, 2410, 2931, 2734, 2425, 2167, 1888, 1627, 1441, 1298, 1208, 1181, 1210, 1285, 1397, 1588, 1782, 2012, 2325, 2796, 2616, 2402, 2093, 1813, 1565, 1351, 1220, 1133, 1099, 1128, 1202, 1334, 1488, 1695, 1938, 2247, 2683, 2589, 2333, 2052, 1765, 1504, 1303, 1162, 1077, 1041, 1074, 1153, 1285, 1447, 1672, 1888, 2206, 2626, 2598, 2318, 2034, 1739, 1467, 1289, 1148, 1061, 1024, 1052, 1130, 1265, 1427, 1646, 1868, 2193, 2616, 2635, 2348, 2046, 1748, 1494, 1305, 1164, 1072, 1041, 1067, 1142, 1280, 1447, 1649, 1892, 2186, 2607, 2626, 2355, 2081, 1791, 1529, 1336, 1196, 1118, 1080, 1108, 1189, 1315, 1482, 1668, 1917, 2226, 2723, 2693, 2394, 2142, 1831, 1609, 1403, 1260, 1171, 1149, 1173, 1252, 1384, 1535, 1744, 1953, 2296, 2807, 2765, 2450, 2193, 1938, 1695, 1501, 1366, 1276, 1245, 1269, 1351, 1465, 1635, 1817, 2075, 2410, 2954, 2907, 2526, 2296, 2057, 1817, 1617, 1488, 1392, 1369, 1384, 1465, 1585, 1739, 1927, 2193, 2579, 3214, 3105, 2626, 2371, 2167, 1953, 1769, 1635, 1551, 1519, 1542, 1602, 1715, 1849, 2093, 2371, 2807, 3506, 3315, 2796, 2458, 2275, 2099, 1927, 1813, 1719, 1691, 1687, 1773, 1873, 2023, 2240, 2570, 3118, 3898, 3878, 3105, 2645, 2425, 2254, 2117, 2018, 1922, 1883, 1883, 1938, 2046, 2220, 2492, 2851, 3506, 4610]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3679, 2834, 2562, 2327, 2179, 2112, 1957, 1903, 1874, 1881, 1949, 1998, 2067, 2261, 2590, 3089, 3984, 3069, 2647, 2372, 2189, 2049, 1911, 1790, 1701, 1672, 1695, 1738, 1810, 1911, 2103, 2327, 2737, 3492, 2937, 2483, 2250, 2085, 1911, 1719, 1610, 1538, 1509, 1519, 1553, 1654, 1803, 1942, 2150, 2562, 3129, 2737, 2384, 2179, 1965, 1751, 1584, 1481, 1391, 1352, 1375, 1424, 1523, 1660, 1810, 2040, 2338, 2956, 2576, 2272, 2085, 1845, 1632, 1459, 1341, 1267, 1244, 1244, 1315, 1416, 1548, 1744, 1934, 2240, 2722, 2509, 2240, 1998, 1738, 1528, 1364, 1254, 1177, 1149, 1163, 1228, 1333, 1477, 1654, 1866, 2160, 2590, 2457, 2189, 1965, 1677, 1477, 1290, 1180, 1099, 1072, 1089, 1151, 1267, 1403, 1594, 1790, 2076, 2509, 2420, 2150, 1911, 1643, 1424, 1250, 1132, 1055, 1026, 1039, 1117, 1219, 1364, 1543, 1770, 2032, 2457, 2408, 2150, 1888, 1626, 1403, 1237, 1112, 1044, 1026, 1031, 1101, 1200, 1360, 1538, 1738, 2040, 2445, 2420, 2140, 1881, 1632, 1403, 1237, 1114, 1055, 1024, 1046, 1109, 1215, 1352, 1543, 1751, 2049, 2445, 2384, 2140, 1926, 1677, 1437, 1280, 1149, 1082, 1065, 1072, 1141, 1257, 1383, 1563, 1764, 2076, 2470, 2496, 2199, 1973, 1713, 1490, 1319, 1212, 1151, 1109, 1138, 1206, 1301, 1441, 1621, 1838, 2131, 2562, 2562, 2219, 2032, 1790, 1573, 1399, 1294, 1228, 1206, 1209, 1273, 1375, 1519, 1677, 1942, 2219, 2737, 2661, 2304, 2103, 1896, 1701, 1514, 1403, 1319, 1304, 1312, 1368, 1468, 1626, 1777, 2032, 2338, 2992, 2851, 2372, 2179, 1990, 1797, 1654, 1538, 1459, 1433, 1441, 1495, 1589, 1707, 1911, 2189, 2604, 3256, 3011, 2509, 2261, 2094, 1934, 1803, 1689, 1605, 1578, 1594, 1638, 1726, 1859, 2040, 2349, 2902, 3651, 3623, 2885, 2470, 2240, 2103, 1965, 1881, 1810, 1751, 1770, 1831, 1926, 2058, 2293, 2676, 3191, 4304]
                                       }
                                   }, {
                                       "name":    "4224x3136_D50_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3342, 2919, 2638, 2486, 2383, 2246, 2169, 2082, 2012, 2044, 2089, 2181, 2332, 2405, 2705, 3072, 3660, 3041, 2710, 2529, 2380, 2229, 2092, 1956, 1870, 1815, 1856, 1932, 2009, 2145, 2306, 2515, 2819, 3264, 2862, 2589, 2467, 2290, 2121, 1922, 1774, 1685, 1675, 1660, 1734, 1845, 2001, 2158, 2374, 2652, 3053, 2770, 2545, 2365, 2161, 1960, 1737, 1598, 1506, 1479, 1491, 1566, 1711, 1865, 2026, 2257, 2473, 2864, 2712, 2457, 2255, 2034, 1806, 1604, 1448, 1363, 1321, 1346, 1426, 1566, 1739, 1923, 2148, 2390, 2748, 2635, 2409, 2194, 1943, 1684, 1482, 1340, 1236, 1192, 1223, 1303, 1451, 1631, 1850, 2055, 2309, 2619, 2557, 2358, 2143, 1873, 1620, 1389, 1242, 1135, 1099, 1126, 1219, 1365, 1560, 1772, 1984, 2262, 2557, 2507, 2317, 2099, 1818, 1552, 1347, 1180, 1079, 1045, 1072, 1174, 1317, 1503, 1724, 1931, 2224, 2521, 2481, 2295, 2092, 1791, 1513, 1321, 1159, 1059, 1024, 1047, 1154, 1284, 1484, 1706, 1925, 2194, 2510, 2492, 2305, 2081, 1776, 1543, 1320, 1162, 1072, 1038, 1059, 1148, 1302, 1488, 1693, 1939, 2192, 2551, 2484, 2321, 2103, 1821, 1571, 1365, 1200, 1118, 1087, 1115, 1194, 1345, 1519, 1739, 1951, 2217, 2587, 2542, 2358, 2153, 1887, 1642, 1433, 1277, 1186, 1157, 1186, 1281, 1407, 1582, 1786, 1993, 2274, 2635, 2581, 2390, 2190, 1957, 1726, 1535, 1380, 1298, 1260, 1287, 1375, 1510, 1688, 1869, 2099, 2365, 2730, 2665, 2432, 2257, 2073, 1851, 1651, 1526, 1418, 1399, 1436, 1515, 1622, 1773, 1982, 2191, 2488, 2946, 2804, 2498, 2349, 2158, 1984, 1817, 1684, 1587, 1546, 1598, 1654, 1762, 1901, 2117, 2337, 2636, 3172, 2974, 2642, 2378, 2270, 2124, 1958, 1847, 1757, 1727, 1764, 1825, 1901, 2058, 2259, 2458, 2837, 3346, 3314, 2710, 2471, 2316, 2228, 2101, 2007, 1924, 1911, 1932, 1973, 2062, 2206, 2405, 2705, 3168, 3923]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3009, 2575, 2400, 2250, 2170, 2089, 1969, 1927, 1890, 1867, 1923, 1970, 2051, 2208, 2400, 2780, 3244, 2722, 2462, 2274, 2154, 2029, 1912, 1817, 1738, 1717, 1726, 1777, 1835, 1926, 2061, 2224, 2526, 2959, 2577, 2355, 2192, 2063, 1917, 1779, 1661, 1589, 1554, 1562, 1618, 1704, 1822, 1936, 2120, 2371, 2771, 2479, 2253, 2137, 1981, 1798, 1638, 1516, 1430, 1409, 1411, 1477, 1589, 1714, 1842, 2022, 2225, 2574, 2385, 2218, 2045, 1879, 1675, 1513, 1389, 1313, 1291, 1307, 1358, 1468, 1602, 1770, 1936, 2151, 2479, 2347, 2173, 1974, 1789, 1586, 1423, 1291, 1206, 1173, 1195, 1263, 1385, 1520, 1683, 1858, 2084, 2378, 2313, 2119, 1936, 1720, 1515, 1338, 1210, 1127, 1089, 1116, 1184, 1303, 1450, 1629, 1798, 2012, 2320, 2225, 2100, 1890, 1677, 1461, 1282, 1164, 1072, 1036, 1057, 1140, 1260, 1404, 1587, 1763, 1990, 2305, 2255, 2084, 1888, 1663, 1431, 1258, 1130, 1051, 1024, 1043, 1116, 1239, 1396, 1568, 1756, 1970, 2270, 2260, 2070, 1886, 1658, 1444, 1273, 1142, 1063, 1028, 1054, 1116, 1245, 1401, 1573, 1767, 1979, 2267, 2246, 2094, 1910, 1689, 1473, 1301, 1189, 1103, 1074, 1089, 1159, 1287, 1428, 1601, 1776, 2023, 2290, 2285, 2121, 1948, 1733, 1549, 1365, 1241, 1153, 1136, 1155, 1227, 1348, 1475, 1641, 1822, 2060, 2378, 2328, 2144, 1995, 1814, 1620, 1454, 1325, 1251, 1221, 1241, 1309, 1423, 1545, 1713, 1886, 2131, 2479, 2401, 2190, 2034, 1884, 1706, 1546, 1445, 1367, 1334, 1359, 1410, 1502, 1645, 1779, 1967, 2225, 2655, 2501, 2220, 2102, 1957, 1808, 1685, 1566, 1499, 1459, 1475, 1522, 1625, 1724, 1890, 2095, 2355, 2819, 2635, 2360, 2156, 2020, 1917, 1808, 1703, 1634, 1598, 1613, 1665, 1728, 1848, 2014, 2231, 2545, 3102, 2939, 2490, 2282, 2122, 2017, 1917, 1840, 1790, 1754, 1748, 1778, 1868, 2006, 2188, 2443, 2816, 3405]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3126, 2588, 2413, 2249, 2184, 2049, 1972, 1899, 1888, 1875, 1925, 1988, 2065, 2200, 2422, 2770, 3361, 2746, 2467, 2288, 2174, 2042, 1910, 1811, 1743, 1713, 1718, 1772, 1839, 1929, 2074, 2244, 2558, 3027, 2621, 2377, 2192, 2070, 1920, 1773, 1659, 1584, 1552, 1574, 1623, 1709, 1816, 1949, 2133, 2384, 2857, 2492, 2311, 2157, 1984, 1802, 1628, 1509, 1432, 1399, 1430, 1500, 1593, 1710, 1844, 2019, 2259, 2701, 2431, 2259, 2088, 1882, 1687, 1521, 1387, 1312, 1288, 1306, 1372, 1479, 1617, 1774, 1954, 2164, 2511, 2376, 2192, 2020, 1806, 1586, 1422, 1290, 1204, 1178, 1206, 1277, 1380, 1550, 1710, 1885, 2109, 2425, 2295, 2184, 1965, 1745, 1533, 1339, 1216, 1132, 1098, 1127, 1198, 1323, 1461, 1637, 1828, 2053, 2349, 2281, 2132, 1934, 1705, 1478, 1294, 1160, 1077, 1041, 1074, 1151, 1277, 1424, 1619, 1789, 2025, 2311, 2291, 2121, 1920, 1682, 1444, 1281, 1146, 1061, 1024, 1052, 1129, 1258, 1406, 1596, 1772, 2015, 2305, 2318, 2145, 1928, 1689, 1469, 1296, 1162, 1072, 1041, 1067, 1140, 1272, 1424, 1598, 1792, 2008, 2295, 2303, 2144, 1954, 1725, 1499, 1325, 1193, 1117, 1080, 1107, 1186, 1304, 1455, 1612, 1810, 2036, 2381, 2344, 2166, 1999, 1754, 1570, 1386, 1253, 1168, 1147, 1170, 1245, 1368, 1501, 1676, 1834, 2084, 2434, 2381, 2197, 2030, 1840, 1642, 1474, 1352, 1268, 1239, 1261, 1337, 1440, 1587, 1732, 1928, 2164, 2529, 2466, 2238, 2100, 1931, 1742, 1574, 1461, 1374, 1354, 1367, 1440, 1544, 1671, 1817, 2013, 2281, 2701, 2581, 2291, 2140, 2007, 1848, 1701, 1588, 1516, 1487, 1507, 1558, 1652, 1756, 1944, 2140, 2434, 2881, 2690, 2390, 2182, 2074, 1955, 1825, 1735, 1657, 1634, 1628, 1699, 1777, 1889, 2045, 2273, 2638, 3114, 3022, 2579, 2295, 2166, 2059, 1966, 1896, 1819, 1788, 1785, 1825, 1905, 2030, 2221, 2456, 2878, 3534]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2883, 2376, 2230, 2087, 1996, 1962, 1842, 1803, 1780, 1783, 1835, 1864, 1902, 2033, 2252, 2567, 3096, 2511, 2275, 2113, 2002, 1911, 1810, 1715, 1641, 1616, 1635, 1668, 1721, 1792, 1930, 2076, 2344, 2819, 2455, 2178, 2039, 1937, 1811, 1655, 1565, 1504, 1478, 1486, 1513, 1596, 1715, 1814, 1957, 2241, 2599, 2335, 2123, 2001, 1851, 1682, 1543, 1455, 1373, 1337, 1358, 1401, 1487, 1600, 1714, 1883, 2086, 2503, 2234, 2050, 1937, 1757, 1584, 1434, 1328, 1259, 1238, 1237, 1303, 1393, 1506, 1667, 1807, 2024, 2348, 2198, 2038, 1873, 1670, 1494, 1349, 1247, 1174, 1147, 1160, 1222, 1319, 1447, 1594, 1758, 1971, 2262, 2168, 2005, 1852, 1620, 1450, 1280, 1177, 1098, 1072, 1088, 1148, 1258, 1381, 1545, 1698, 1909, 2210, 2145, 1977, 1809, 1593, 1403, 1243, 1130, 1055, 1026, 1039, 1116, 1213, 1346, 1501, 1684, 1877, 2175, 2138, 1979, 1790, 1578, 1383, 1231, 1111, 1044, 1026, 1031, 1100, 1195, 1343, 1497, 1657, 1886, 2168, 2145, 1969, 1782, 1582, 1383, 1230, 1113, 1055, 1024, 1046, 1108, 1209, 1334, 1501, 1667, 1892, 2165, 2110, 1963, 1818, 1620, 1413, 1271, 1146, 1081, 1065, 1071, 1139, 1249, 1362, 1516, 1675, 1909, 2179, 2188, 2004, 1851, 1648, 1459, 1306, 1207, 1149, 1108, 1136, 1201, 1288, 1413, 1564, 1734, 1947, 2240, 2223, 2007, 1891, 1708, 1529, 1377, 1283, 1221, 1201, 1203, 1263, 1355, 1480, 1607, 1814, 2007, 2360, 2277, 2059, 1937, 1790, 1637, 1478, 1381, 1305, 1292, 1298, 1348, 1436, 1569, 1685, 1877, 2086, 2531, 2391, 2090, 1981, 1855, 1710, 1596, 1499, 1430, 1407, 1413, 1459, 1537, 1630, 1787, 1989, 2274, 2694, 2469, 2168, 2023, 1922, 1812, 1715, 1624, 1553, 1530, 1543, 1578, 1646, 1747, 1877, 2094, 2471, 2935, 2843, 2414, 2158, 2016, 1932, 1835, 1775, 1720, 1670, 1685, 1732, 1802, 1894, 2059, 2319, 2643, 3320]
                                       }
                                   }, {
                                       "name":    "4224x3136_D65_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4275, 3375, 2908, 2677, 2517, 2342, 2175, 2134, 2094, 2107, 2134, 2218, 2375, 2615, 2934, 3591, 4565, 3553, 3067, 2788, 2517, 2294, 2148, 1972, 1883, 1822, 1863, 1938, 2043, 2204, 2409, 2699, 3214, 3880, 3309, 2884, 2595, 2358, 2121, 1938, 1747, 1669, 1628, 1652, 1747, 1842, 2019, 2218, 2517, 2934, 3591, 3154, 2743, 2480, 2204, 1938, 1738, 1590, 1498, 1465, 1472, 1560, 1694, 1863, 2081, 2342, 2699, 3309, 2934, 2635, 2392, 2069, 1822, 1597, 1440, 1353, 1316, 1332, 1428, 1539, 1738, 1960, 2204, 2575, 3067, 2811, 2575, 2278, 1972, 1694, 1478, 1332, 1234, 1203, 1221, 1306, 1446, 1628, 1863, 2081, 2444, 2986, 2743, 2498, 2204, 1873, 1605, 1387, 1239, 1138, 1101, 1134, 1221, 1353, 1532, 1747, 2043, 2375, 2835, 2720, 2444, 2162, 1793, 1525, 1316, 1178, 1073, 1050, 1073, 1162, 1306, 1491, 1711, 1960, 2278, 2720, 2677, 2426, 2134, 1784, 1525, 1316, 1154, 1063, 1024, 1053, 1131, 1276, 1472, 1685, 1949, 2294, 2743, 2743, 2409, 2134, 1793, 1525, 1306, 1158, 1073, 1046, 1066, 1138, 1291, 1478, 1685, 1949, 2263, 2743, 2743, 2462, 2148, 1832, 1560, 1353, 1195, 1108, 1097, 1105, 1182, 1327, 1511, 1738, 1995, 2342, 2835, 2765, 2462, 2218, 1894, 1636, 1410, 1272, 1178, 1154, 1174, 1262, 1404, 1582, 1793, 2056, 2392, 2859, 2884, 2555, 2248, 2007, 1729, 1518, 1370, 1276, 1248, 1281, 1370, 1498, 1669, 1894, 2190, 2536, 3124, 3012, 2656, 2392, 2121, 1883, 1660, 1498, 1416, 1393, 1422, 1498, 1628, 1803, 2007, 2326, 2635, 3341, 3214, 2743, 2462, 2248, 1995, 1812, 1677, 1590, 1546, 1568, 1636, 1774, 1949, 2190, 2462, 2934, 3630, 3444, 2934, 2555, 2409, 2175, 1995, 1863, 1774, 1738, 1774, 1812, 1949, 2148, 2326, 2677, 3276, 4118, 4118, 3154, 2835, 2498, 2294, 2134, 1983, 1983, 1915, 1949, 2007, 2134, 2326, 2595, 3040, 3630, 5043]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3957, 3121, 2788, 2567, 2412, 2252, 2126, 2036, 2006, 2001, 2049, 2139, 2260, 2483, 2823, 3352, 4255, 3352, 2883, 2567, 2404, 2209, 2036, 1900, 1833, 1795, 1799, 1858, 1955, 2086, 2283, 2548, 2997, 3781, 3079, 2721, 2438, 2238, 2043, 1863, 1709, 1639, 1596, 1608, 1679, 1790, 1943, 2106, 2354, 2743, 3420, 2895, 2558, 2354, 2132, 1889, 1688, 1560, 1462, 1432, 1444, 1525, 1627, 1790, 1966, 2216, 2548, 3121, 2800, 2501, 2238, 1983, 1744, 1553, 1414, 1333, 1303, 1318, 1382, 1511, 1671, 1858, 2106, 2387, 2895, 2689, 2421, 2173, 1895, 1659, 1450, 1315, 1212, 1193, 1212, 1288, 1402, 1582, 1753, 1995, 2306, 2777, 2647, 2354, 2080, 1795, 1556, 1360, 1225, 1135, 1106, 1124, 1210, 1336, 1495, 1700, 1938, 2238, 2668, 2558, 2314, 2043, 1762, 1488, 1310, 1172, 1081, 1046, 1064, 1145, 1278, 1435, 1647, 1879, 2180, 2627, 2577, 2290, 2012, 1717, 1466, 1290, 1149, 1062, 1024, 1049, 1131, 1255, 1429, 1647, 1879, 2159, 2627, 2597, 2322, 2012, 1726, 1482, 1293, 1160, 1072, 1041, 1067, 1141, 1257, 1432, 1635, 1848, 2166, 2637, 2607, 2306, 2061, 1780, 1528, 1331, 1206, 1118, 1083, 1100, 1185, 1305, 1472, 1663, 1889, 2216, 2647, 2658, 2354, 2106, 1833, 1589, 1399, 1264, 1178, 1143, 1168, 1241, 1371, 1528, 1726, 1949, 2275, 2743, 2721, 2395, 2166, 1895, 1679, 1478, 1352, 1266, 1248, 1264, 1326, 1453, 1612, 1795, 2055, 2387, 2933, 2823, 2492, 2268, 2018, 1795, 1604, 1472, 1388, 1357, 1371, 1438, 1556, 1722, 1900, 2166, 2520, 3150, 3038, 2597, 2338, 2146, 1943, 1744, 1612, 1542, 1498, 1521, 1578, 1688, 1838, 2049, 2306, 2755, 3472, 3240, 2755, 2438, 2252, 2074, 1927, 1776, 1705, 1659, 1671, 1739, 1858, 2006, 2216, 2529, 3065, 3867, 3740, 2984, 2627, 2346, 2252, 2067, 1983, 1916, 1853, 1874, 1911, 2018, 2153, 2447, 2823, 3403, 4421]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3884, 3131, 2739, 2516, 2367, 2227, 2077, 2015, 2003, 2027, 2040, 2116, 2220, 2461, 2807, 3415, 4248, 3331, 2854, 2583, 2358, 2205, 2021, 1892, 1792, 1778, 1797, 1856, 1952, 2058, 2257, 2507, 3006, 3776, 3088, 2696, 2392, 2212, 2040, 1826, 1715, 1617, 1587, 1598, 1668, 1787, 1908, 2096, 2326, 2717, 3381, 2903, 2573, 2326, 2116, 1856, 1664, 1547, 1460, 1421, 1427, 1512, 1648, 1778, 1940, 2205, 2507, 3117, 2796, 2488, 2257, 1974, 1741, 1550, 1406, 1321, 1286, 1308, 1386, 1506, 1664, 1851, 2096, 2409, 2879, 2685, 2417, 2156, 1861, 1628, 1436, 1301, 1206, 1187, 1204, 1288, 1403, 1561, 1769, 1998, 2279, 2773, 2623, 2342, 2096, 1787, 1550, 1342, 1217, 1133, 1097, 1128, 1202, 1324, 1496, 1702, 1913, 2220, 2664, 2603, 2310, 2040, 1741, 1486, 1291, 1163, 1073, 1041, 1067, 1145, 1269, 1445, 1640, 1881, 2170, 2643, 2583, 2310, 2009, 1706, 1460, 1286, 1143, 1059, 1024, 1051, 1124, 1264, 1418, 1640, 1856, 2170, 2573, 2613, 2279, 2033, 1741, 1483, 1288, 1161, 1069, 1040, 1071, 1147, 1264, 1439, 1636, 1861, 2191, 2593, 2613, 2318, 2071, 1764, 1526, 1331, 1197, 1117, 1088, 1104, 1179, 1311, 1479, 1673, 1902, 2212, 2654, 2675, 2350, 2109, 1826, 1602, 1403, 1260, 1175, 1145, 1173, 1262, 1375, 1533, 1732, 1957, 2302, 2784, 2717, 2435, 2191, 1918, 1685, 1492, 1363, 1276, 1239, 1260, 1342, 1463, 1636, 1816, 2058, 2400, 2928, 2831, 2507, 2287, 2040, 1811, 1609, 1476, 1394, 1358, 1391, 1473, 1583, 1732, 1918, 2177, 2535, 3190, 3033, 2613, 2358, 2177, 1946, 1778, 1632, 1550, 1516, 1543, 1605, 1724, 1840, 2077, 2334, 2750, 3449, 3282, 2784, 2461, 2287, 2083, 1929, 1797, 1719, 1681, 1702, 1759, 1861, 2015, 2242, 2563, 3074, 3840, 3755, 3033, 2654, 2392, 2212, 2096, 1986, 1892, 1897, 1861, 1957, 2046, 2264, 2497, 2903, 3449, 4502]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3600, 2866, 2554, 2303, 2162, 2062, 1963, 1940, 1852, 1874, 1940, 1979, 2088, 2251, 2567, 3044, 3915, 3044, 2594, 2336, 2190, 2028, 1903, 1772, 1711, 1682, 1687, 1735, 1818, 1895, 2071, 2303, 2739, 3498, 2866, 2452, 2230, 2053, 1888, 1717, 1615, 1530, 1511, 1511, 1559, 1665, 1792, 1933, 2152, 2490, 3101, 2679, 2347, 2162, 1940, 1747, 1569, 1475, 1392, 1353, 1357, 1436, 1530, 1642, 1792, 2045, 2336, 2900, 2594, 2271, 2062, 1818, 1631, 1466, 1342, 1273, 1250, 1257, 1317, 1412, 1540, 1717, 1933, 2220, 2679, 2440, 2210, 1987, 1741, 1549, 1372, 1257, 1181, 1148, 1162, 1222, 1331, 1466, 1653, 1852, 2133, 2567, 2452, 2152, 1940, 1693, 1458, 1290, 1187, 1107, 1090, 1095, 1159, 1270, 1424, 1569, 1772, 2071, 2490, 2381, 2133, 1881, 1626, 1416, 1260, 1132, 1059, 1037, 1041, 1112, 1216, 1365, 1549, 1729, 2036, 2440, 2370, 2115, 1852, 1615, 1400, 1235, 1109, 1044, 1024, 1039, 1104, 1219, 1346, 1530, 1723, 2011, 2465, 2370, 2124, 1881, 1631, 1404, 1244, 1125, 1050, 1035, 1048, 1109, 1219, 1346, 1535, 1735, 2011, 2440, 2381, 2143, 1910, 1670, 1432, 1276, 1151, 1090, 1066, 1085, 1156, 1247, 1392, 1549, 1753, 2053, 2490, 2452, 2162, 1940, 1693, 1493, 1324, 1207, 1148, 1122, 1148, 1201, 1296, 1445, 1600, 1832, 2115, 2554, 2528, 2210, 2011, 1779, 1569, 1404, 1286, 1228, 1204, 1228, 1276, 1380, 1497, 1682, 1903, 2200, 2724, 2650, 2271, 2071, 1852, 1676, 1511, 1416, 1324, 1310, 1307, 1376, 1466, 1594, 1766, 2011, 2314, 2952, 2769, 2381, 2162, 1971, 1785, 1653, 1535, 1462, 1412, 1445, 1497, 1600, 1705, 1903, 2152, 2581, 3244, 3044, 2541, 2240, 2079, 1925, 1798, 1676, 1600, 1559, 1589, 1642, 1717, 1832, 2036, 2347, 2817, 3681, 3498, 2801, 2440, 2190, 2062, 1971, 1852, 1792, 1760, 1772, 1839, 1917, 2036, 2240, 2650, 3244, 4290]
                                       }
                                   }, {
                                       "name":    "4224x3136_D65_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3300, 2780, 2501, 2372, 2280, 2160, 2033, 2007, 1975, 1983, 1997, 2053, 2161, 2321, 2522, 2942, 3503, 2863, 2598, 2449, 2277, 2123, 2021, 1879, 1806, 1753, 1788, 1848, 1927, 2046, 2186, 2377, 2712, 3101, 2734, 2495, 2325, 2172, 1997, 1854, 1692, 1626, 1589, 1610, 1692, 1767, 1907, 2051, 2261, 2535, 2945, 2655, 2413, 2256, 2060, 1852, 1686, 1558, 1475, 1445, 1451, 1529, 1645, 1784, 1952, 2139, 2378, 2773, 2513, 2349, 2201, 1957, 1759, 1564, 1423, 1342, 1308, 1322, 1411, 1509, 1681, 1860, 2039, 2300, 2617, 2437, 2317, 2117, 1882, 1649, 1457, 1323, 1230, 1200, 1217, 1298, 1427, 1587, 1783, 1946, 2208, 2575, 2397, 2265, 2062, 1799, 1571, 1374, 1235, 1137, 1100, 1133, 1217, 1341, 1502, 1684, 1921, 2161, 2470, 2386, 2226, 2031, 1730, 1498, 1307, 1176, 1073, 1050, 1073, 1160, 1297, 1466, 1655, 1852, 2086, 2386, 2354, 2213, 2008, 1723, 1499, 1307, 1152, 1063, 1024, 1053, 1130, 1269, 1449, 1632, 1844, 2101, 2407, 2405, 2196, 2006, 1730, 1498, 1297, 1156, 1073, 1046, 1066, 1136, 1283, 1454, 1631, 1843, 2073, 2405, 2397, 2234, 2013, 1762, 1529, 1341, 1192, 1107, 1096, 1104, 1179, 1316, 1482, 1676, 1879, 2133, 2470, 2401, 2223, 2065, 1811, 1595, 1393, 1265, 1175, 1152, 1171, 1255, 1387, 1544, 1720, 1924, 2164, 2475, 2474, 2283, 2077, 1902, 1673, 1490, 1356, 1268, 1242, 1273, 1356, 1471, 1618, 1801, 2027, 2268, 2661, 2546, 2343, 2181, 1988, 1802, 1614, 1471, 1397, 1377, 1403, 1471, 1584, 1729, 1887, 2125, 2326, 2798, 2663, 2384, 2215, 2077, 1885, 1740, 1627, 1552, 1513, 1532, 1589, 1705, 1845, 2027, 2215, 2535, 2974, 2784, 2496, 2260, 2186, 2020, 1885, 1781, 1707, 1677, 1707, 1735, 1844, 1997, 2117, 2359, 2759, 3274, 3190, 2615, 2444, 2226, 2093, 1981, 1865, 1874, 1816, 1843, 1886, 1981, 2120, 2305, 2605, 2971, 3837]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3077, 2591, 2407, 2282, 2192, 2083, 1990, 1920, 1897, 1889, 1923, 1985, 2064, 2214, 2435, 2763, 3286, 2717, 2457, 2270, 2182, 2050, 1921, 1814, 1761, 1729, 1730, 1776, 1849, 1943, 2081, 2255, 2544, 3029, 2562, 2366, 2195, 2068, 1928, 1786, 1657, 1598, 1560, 1569, 1629, 1720, 1839, 1955, 2126, 2384, 2817, 2456, 2264, 2149, 1997, 1807, 1640, 1529, 1441, 1414, 1424, 1496, 1583, 1718, 1851, 2032, 2256, 2629, 2409, 2239, 2069, 1881, 1687, 1523, 1398, 1323, 1295, 1309, 1367, 1483, 1620, 1769, 1955, 2145, 2483, 2340, 2189, 2026, 1812, 1616, 1431, 1306, 1208, 1190, 1208, 1280, 1385, 1544, 1684, 1871, 2093, 2410, 2320, 2143, 1953, 1728, 1525, 1348, 1221, 1134, 1105, 1123, 1206, 1325, 1467, 1641, 1828, 2046, 2337, 2256, 2116, 1926, 1702, 1463, 1301, 1170, 1081, 1046, 1064, 1143, 1270, 1413, 1596, 1781, 2003, 2312, 2274, 2098, 1900, 1662, 1443, 1282, 1147, 1062, 1024, 1049, 1130, 1248, 1408, 1597, 1782, 1987, 2314, 2287, 2123, 1898, 1669, 1458, 1285, 1158, 1072, 1041, 1067, 1139, 1250, 1410, 1585, 1753, 1991, 2320, 2288, 2103, 1937, 1715, 1498, 1320, 1202, 1117, 1083, 1099, 1182, 1295, 1446, 1608, 1785, 2027, 2320, 2316, 2133, 1967, 1756, 1551, 1382, 1257, 1175, 1141, 1165, 1235, 1355, 1494, 1659, 1830, 2067, 2383, 2347, 2152, 2007, 1802, 1627, 1452, 1338, 1258, 1242, 1256, 1313, 1428, 1565, 1713, 1911, 2145, 2512, 2401, 2211, 2076, 1897, 1722, 1562, 1446, 1371, 1342, 1354, 1414, 1517, 1656, 1793, 1990, 2233, 2652, 2531, 2268, 2112, 1989, 1839, 1678, 1567, 1507, 1468, 1488, 1536, 1627, 1746, 1906, 2086, 2393, 2856, 2636, 2358, 2166, 2055, 1933, 1825, 1702, 1644, 1604, 1613, 1669, 1763, 1874, 2024, 2239, 2597, 3092, 2925, 2488, 2281, 2102, 2057, 1923, 1865, 1814, 1761, 1777, 1802, 1881, 1974, 2184, 2435, 2801, 3402]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3026, 2598, 2369, 2241, 2154, 2061, 1947, 1902, 1894, 1912, 1915, 1965, 2030, 2196, 2422, 2810, 3281, 2702, 2434, 2283, 2144, 2046, 1908, 1807, 1724, 1713, 1728, 1774, 1847, 1919, 2059, 2222, 2551, 3026, 2568, 2347, 2157, 2046, 1925, 1753, 1662, 1577, 1551, 1560, 1619, 1717, 1808, 1946, 2102, 2363, 2788, 2463, 2276, 2125, 1983, 1777, 1617, 1517, 1439, 1403, 1408, 1484, 1602, 1707, 1829, 2023, 2223, 2626, 2406, 2228, 2085, 1873, 1684, 1520, 1390, 1312, 1278, 1299, 1371, 1478, 1613, 1763, 1946, 2163, 2470, 2337, 2185, 2011, 1781, 1587, 1417, 1293, 1202, 1184, 1200, 1280, 1386, 1525, 1698, 1873, 2070, 2407, 2301, 2133, 1967, 1721, 1519, 1330, 1213, 1132, 1096, 1127, 1198, 1313, 1468, 1643, 1806, 2031, 2334, 2292, 2113, 1923, 1683, 1461, 1283, 1161, 1073, 1041, 1067, 1143, 1261, 1423, 1590, 1782, 1994, 2324, 2279, 2115, 1897, 1652, 1437, 1278, 1141, 1059, 1024, 1051, 1123, 1257, 1398, 1591, 1762, 1996, 2271, 2300, 2086, 1917, 1683, 1458, 1280, 1159, 1069, 1040, 1071, 1145, 1257, 1417, 1586, 1765, 2012, 2284, 2293, 2113, 1945, 1700, 1497, 1320, 1193, 1116, 1088, 1103, 1176, 1301, 1452, 1617, 1797, 2024, 2326, 2329, 2129, 1970, 1750, 1563, 1386, 1253, 1172, 1143, 1170, 1255, 1359, 1499, 1665, 1837, 2089, 2416, 2344, 2185, 2028, 1823, 1633, 1465, 1349, 1268, 1233, 1252, 1329, 1438, 1588, 1731, 1914, 2156, 2509, 2407, 2223, 2092, 1916, 1737, 1566, 1450, 1376, 1343, 1373, 1447, 1542, 1665, 1809, 1999, 2245, 2682, 2527, 2281, 2129, 2016, 1842, 1709, 1586, 1515, 1485, 1508, 1561, 1660, 1748, 1930, 2109, 2389, 2839, 2666, 2380, 2185, 2084, 1941, 1826, 1721, 1657, 1625, 1642, 1687, 1766, 1882, 2046, 2267, 2604, 3072, 2936, 2525, 2302, 2140, 2024, 1948, 1868, 1793, 1800, 1765, 1842, 1905, 2067, 2225, 2497, 2836, 3459]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2827, 2400, 2224, 2067, 1982, 1919, 1847, 1835, 1760, 1777, 1827, 1847, 1919, 2025, 2234, 2533, 3048, 2493, 2234, 2084, 2003, 1893, 1803, 1699, 1650, 1625, 1628, 1665, 1728, 1778, 1903, 2057, 2346, 2823, 2402, 2154, 2023, 1909, 1790, 1654, 1570, 1496, 1480, 1478, 1518, 1606, 1705, 1806, 1958, 2184, 2578, 2291, 2093, 1987, 1829, 1679, 1529, 1449, 1374, 1338, 1341, 1412, 1493, 1584, 1699, 1888, 2084, 2460, 2248, 2050, 1917, 1733, 1583, 1441, 1329, 1265, 1244, 1250, 1305, 1390, 1499, 1643, 1806, 2008, 2314, 2144, 2013, 1864, 1673, 1514, 1356, 1250, 1178, 1146, 1159, 1216, 1317, 1436, 1593, 1746, 1949, 2244, 2164, 1973, 1830, 1635, 1433, 1280, 1184, 1106, 1090, 1094, 1156, 1261, 1401, 1522, 1682, 1905, 2195, 2114, 1963, 1782, 1577, 1395, 1253, 1130, 1059, 1037, 1041, 1111, 1210, 1347, 1506, 1648, 1881, 2161, 2107, 1949, 1758, 1568, 1381, 1229, 1108, 1044, 1024, 1039, 1103, 1213, 1329, 1490, 1644, 1861, 2184, 2105, 1955, 1782, 1582, 1384, 1237, 1123, 1050, 1035, 1048, 1108, 1213, 1329, 1493, 1653, 1859, 2161, 2108, 1966, 1804, 1614, 1408, 1267, 1148, 1089, 1066, 1084, 1153, 1239, 1370, 1504, 1666, 1890, 2195, 2153, 1973, 1823, 1629, 1461, 1310, 1202, 1146, 1120, 1146, 1196, 1284, 1417, 1545, 1728, 1934, 2234, 2197, 2000, 1873, 1698, 1526, 1382, 1275, 1221, 1199, 1221, 1266, 1360, 1460, 1612, 1780, 1991, 2349, 2269, 2032, 1910, 1751, 1614, 1475, 1394, 1310, 1297, 1293, 1356, 1434, 1540, 1676, 1859, 2067, 2500, 2330, 2097, 1967, 1839, 1699, 1595, 1496, 1433, 1387, 1417, 1461, 1547, 1628, 1780, 1958, 2256, 2685, 2493, 2193, 2006, 1909, 1804, 1710, 1612, 1549, 1513, 1539, 1581, 1638, 1724, 1873, 2092, 2406, 2957, 2756, 2351, 2134, 1975, 1897, 1840, 1750, 1704, 1678, 1687, 1739, 1794, 1876, 2016, 2299, 2682, 3310]
                                       }
                                   }, {
                                       "name":    "4224x3136_D75_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4245, 3339, 2933, 2728, 2530, 2341, 2240, 2091, 2077, 2077, 2163, 2257, 2413, 2593, 2989, 3651, 4622, 3609, 3077, 2728, 2530, 2324, 2105, 1985, 1889, 1834, 1878, 1936, 2050, 2193, 2432, 2659, 3203, 4079, 3304, 2879, 2593, 2358, 2148, 1924, 1752, 1650, 1650, 1650, 1723, 1866, 2050, 2240, 2490, 2906, 3609, 3107, 2728, 2490, 2240, 1972, 1732, 1591, 1493, 1458, 1486, 1560, 1704, 1889, 2063, 2341, 2659, 3339, 2933, 2615, 2377, 2063, 1802, 1591, 1444, 1345, 1311, 1328, 1418, 1552, 1713, 1948, 2257, 2530, 3047, 2853, 2551, 2289, 1960, 1704, 1465, 1311, 1219, 1192, 1215, 1306, 1438, 1624, 1855, 2091, 2490, 2933, 2827, 2470, 2209, 1878, 1583, 1387, 1229, 1119, 1084, 1111, 1205, 1339, 1560, 1771, 2050, 2358, 2879, 2705, 2451, 2148, 1802, 1537, 1334, 1161, 1062, 1034, 1055, 1148, 1311, 1486, 1713, 1948, 2306, 2753, 2682, 2432, 2119, 1792, 1514, 1322, 1144, 1041, 1024, 1041, 1127, 1269, 1465, 1704, 1948, 2306, 2753, 2777, 2413, 2119, 1792, 1522, 1306, 1148, 1062, 1027, 1059, 1144, 1295, 1472, 1704, 1948, 2324, 2802, 2777, 2451, 2148, 1844, 1567, 1339, 1187, 1115, 1077, 1100, 1178, 1339, 1507, 1742, 2010, 2358, 2853, 2827, 2490, 2224, 1878, 1624, 1412, 1264, 1169, 1148, 1174, 1249, 1393, 1591, 1802, 2077, 2395, 2906, 2933, 2571, 2306, 2010, 1713, 1500, 1363, 1279, 1259, 1269, 1357, 1493, 1677, 1900, 2178, 2510, 3077, 3018, 2615, 2377, 2119, 1878, 1633, 1514, 1412, 1387, 1418, 1500, 1633, 1802, 1997, 2324, 2682, 3304, 3171, 2753, 2470, 2240, 2023, 1823, 1668, 1591, 1560, 1583, 1659, 1792, 1960, 2193, 2510, 2906, 3568, 3609, 2961, 2571, 2395, 2178, 1972, 1855, 1761, 1723, 1752, 1802, 1924, 2133, 2324, 2705, 3236, 4027, 4079, 3139, 2802, 2470, 2324, 2133, 2077, 1972, 1924, 1948, 2023, 2133, 2358, 2593, 3018, 3651, 4761]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3888, 3140, 2795, 2509, 2369, 2213, 2096, 1997, 1985, 1985, 2042, 2117, 2236, 2470, 2724, 3338, 4196, 3338, 2833, 2549, 2369, 2197, 2016, 1880, 1805, 1745, 1785, 1836, 1925, 2055, 2260, 2499, 2951, 3686, 3094, 2678, 2432, 2220, 2036, 1858, 1690, 1613, 1593, 1589, 1659, 1760, 1925, 2076, 2326, 2724, 3355, 2937, 2529, 2326, 2089, 1863, 1659, 1543, 1448, 1412, 1432, 1499, 1625, 1775, 1961, 2197, 2480, 3079, 2783, 2480, 2236, 1973, 1745, 1546, 1400, 1327, 1279, 1295, 1379, 1495, 1650, 1852, 2082, 2387, 2911, 2701, 2414, 2146, 1863, 1621, 1438, 1303, 1209, 1177, 1200, 1274, 1394, 1558, 1745, 1997, 2284, 2759, 2612, 2334, 2069, 1790, 1543, 1347, 1213, 1127, 1091, 1112, 1195, 1319, 1485, 1681, 1919, 2213, 2623, 2559, 2301, 2036, 1731, 1478, 1284, 1156, 1074, 1031, 1060, 1141, 1266, 1416, 1634, 1863, 2167, 2612, 2509, 2268, 1991, 1713, 1458, 1274, 1137, 1046, 1024, 1041, 1116, 1239, 1412, 1625, 1841, 2146, 2570, 2529, 2260, 1997, 1722, 1471, 1284, 1146, 1062, 1034, 1051, 1129, 1254, 1425, 1621, 1847, 2160, 2580, 2549, 2301, 2049, 1750, 1510, 1322, 1180, 1102, 1070, 1091, 1167, 1289, 1458, 1650, 1880, 2182, 2656, 2634, 2343, 2096, 1815, 1573, 1385, 1247, 1156, 1131, 1154, 1223, 1361, 1502, 1694, 1949, 2268, 2771, 2667, 2360, 2146, 1885, 1650, 1464, 1330, 1242, 1225, 1237, 1319, 1425, 1589, 1795, 2016, 2360, 2911, 2833, 2461, 2213, 2004, 1770, 1589, 1461, 1373, 1347, 1364, 1425, 1543, 1699, 1885, 2175, 2489, 3125, 3007, 2559, 2326, 2131, 1908, 1736, 1609, 1524, 1488, 1510, 1569, 1672, 1820, 2042, 2292, 2724, 3428, 3252, 2735, 2432, 2220, 2069, 1885, 1760, 1694, 1655, 1672, 1717, 1826, 1961, 2197, 2509, 3050, 3841, 3888, 2979, 2612, 2334, 2182, 2069, 1937, 1891, 1826, 1836, 1902, 2016, 2167, 2461, 2833, 3373, 4492]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3944, 3119, 2757, 2529, 2353, 2215, 2113, 2013, 2001, 2013, 2072, 2141, 2262, 2433, 2818, 3382, 4373, 3312, 2894, 2560, 2370, 2185, 2020, 1878, 1794, 1774, 1789, 1846, 1935, 2059, 2270, 2519, 3002, 3759, 3104, 2699, 2443, 2230, 2033, 1846, 1703, 1601, 1586, 1601, 1659, 1784, 1900, 2085, 2336, 2746, 3437, 2920, 2591, 2336, 2085, 1872, 1668, 1547, 1459, 1433, 1437, 1515, 1626, 1779, 1952, 2192, 2529, 3104, 2818, 2490, 2238, 1964, 1726, 1540, 1408, 1324, 1289, 1316, 1393, 1507, 1659, 1846, 2099, 2397, 2975, 2722, 2424, 2141, 1862, 1634, 1437, 1310, 1207, 1185, 1211, 1279, 1408, 1566, 1755, 1988, 2302, 2793, 2644, 2362, 2085, 1774, 1544, 1355, 1216, 1130, 1098, 1121, 1205, 1329, 1486, 1686, 1935, 2230, 2655, 2570, 2278, 2013, 1740, 1493, 1295, 1161, 1077, 1047, 1067, 1149, 1279, 1427, 1655, 1862, 2177, 2612, 2612, 2286, 2013, 1726, 1456, 1287, 1142, 1054, 1024, 1051, 1130, 1254, 1424, 1626, 1872, 2170, 2622, 2560, 2302, 2039, 1726, 1480, 1282, 1159, 1067, 1036, 1063, 1138, 1271, 1437, 1642, 1878, 2185, 2644, 2591, 2336, 2059, 1779, 1518, 1335, 1196, 1113, 1081, 1109, 1182, 1308, 1459, 1668, 1906, 2215, 2699, 2644, 2379, 2106, 1846, 1593, 1396, 1264, 1167, 1142, 1172, 1252, 1372, 1529, 1722, 1958, 2294, 2781, 2711, 2433, 2192, 1929, 1681, 1483, 1366, 1266, 1235, 1266, 1343, 1469, 1614, 1804, 2059, 2397, 2975, 2830, 2500, 2262, 2026, 1809, 1614, 1480, 1402, 1363, 1384, 1459, 1566, 1726, 1923, 2177, 2549, 3181, 3017, 2601, 2362, 2155, 1940, 1779, 1642, 1547, 1522, 1536, 1614, 1708, 1846, 2052, 2362, 2769, 3437, 3330, 2781, 2452, 2262, 2113, 1923, 1799, 1722, 1681, 1713, 1760, 1872, 2013, 2238, 2560, 3075, 3849, 3759, 3031, 2644, 2415, 2270, 2092, 2013, 1911, 1889, 1889, 1929, 2026, 2215, 2471, 2830, 3400, 4496]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3641, 2838, 2537, 2284, 2217, 2037, 1976, 1891, 1858, 1858, 1898, 1954, 2053, 2274, 2574, 3124, 3912, 3051, 2600, 2356, 2180, 2021, 1891, 1770, 1707, 1680, 1691, 1741, 1801, 1912, 2069, 2325, 2721, 3451, 2808, 2477, 2226, 2045, 1884, 1718, 1618, 1529, 1499, 1511, 1570, 1648, 1764, 1940, 2136, 2501, 3180, 2693, 2345, 2145, 1932, 1747, 1579, 1473, 1388, 1359, 1370, 1429, 1538, 1659, 1801, 2029, 2294, 2853, 2537, 2284, 2053, 1838, 1628, 1465, 1346, 1271, 1253, 1265, 1322, 1433, 1547, 1730, 1932, 2208, 2693, 2489, 2226, 1991, 1747, 1542, 1384, 1262, 1182, 1169, 1177, 1227, 1339, 1477, 1648, 1845, 2119, 2549, 2443, 2154, 1918, 1685, 1465, 1309, 1185, 1115, 1090, 1099, 1154, 1265, 1418, 1589, 1788, 2061, 2477, 2345, 2119, 1891, 1633, 1414, 1250, 1137, 1063, 1038, 1061, 1115, 1229, 1363, 1525, 1735, 2014, 2388, 2399, 2128, 1864, 1618, 1395, 1235, 1115, 1040, 1024, 1046, 1106, 1218, 1342, 1533, 1741, 2014, 2432, 2388, 2119, 1891, 1618, 1414, 1250, 1137, 1065, 1042, 1053, 1115, 1221, 1356, 1538, 1730, 2029, 2432, 2410, 2154, 1912, 1664, 1445, 1274, 1159, 1096, 1076, 1083, 1154, 1253, 1388, 1565, 1758, 2053, 2466, 2432, 2154, 1961, 1702, 1494, 1325, 1218, 1144, 1124, 1137, 1204, 1299, 1429, 1603, 1825, 2128, 2587, 2549, 2208, 1991, 1782, 1570, 1410, 1296, 1232, 1196, 1218, 1277, 1377, 1511, 1680, 1905, 2208, 2721, 2639, 2255, 2069, 1877, 1675, 1516, 1410, 1332, 1309, 1319, 1381, 1469, 1603, 1764, 2021, 2335, 3034, 2793, 2356, 2189, 1969, 1807, 1643, 1538, 1453, 1426, 1433, 1494, 1598, 1696, 1905, 2180, 2562, 3199, 3016, 2537, 2245, 2077, 1932, 1788, 1680, 1613, 1570, 1594, 1638, 1713, 1851, 2045, 2335, 2808, 3592, 3496, 2793, 2466, 2236, 2102, 1969, 1851, 1801, 1753, 1770, 1845, 1884, 2045, 2304, 2666, 3279, 4225]
                                       }
                                   }, {
                                       "name":    "4224x3136_D75_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3279, 2753, 2521, 2414, 2291, 2159, 2090, 1969, 1960, 1957, 2023, 2087, 2193, 2303, 2565, 2986, 3543, 2904, 2606, 2400, 2288, 2149, 1982, 1891, 1812, 1764, 1802, 1846, 1934, 2036, 2206, 2344, 2703, 3246, 2730, 2491, 2323, 2172, 2021, 1842, 1697, 1608, 1610, 1608, 1670, 1789, 1934, 2070, 2238, 2513, 2958, 2619, 2401, 2264, 2092, 1882, 1680, 1559, 1471, 1439, 1464, 1529, 1654, 1807, 1937, 2138, 2346, 2796, 2512, 2333, 2188, 1952, 1740, 1558, 1427, 1335, 1303, 1318, 1402, 1522, 1658, 1849, 2085, 2263, 2601, 2470, 2297, 2127, 1871, 1658, 1445, 1303, 1215, 1189, 1211, 1298, 1419, 1584, 1776, 1954, 2246, 2533, 2464, 2241, 2067, 1804, 1550, 1374, 1225, 1118, 1084, 1110, 1201, 1328, 1529, 1706, 1927, 2147, 2505, 2374, 2232, 2019, 1739, 1510, 1324, 1159, 1062, 1034, 1055, 1146, 1302, 1461, 1657, 1842, 2109, 2413, 2358, 2218, 1995, 1731, 1489, 1313, 1142, 1041, 1024, 1041, 1126, 1262, 1442, 1650, 1843, 2111, 2415, 2432, 2200, 1993, 1729, 1495, 1297, 1146, 1062, 1027, 1059, 1142, 1287, 1448, 1649, 1842, 2124, 2452, 2424, 2225, 2013, 1773, 1535, 1328, 1184, 1114, 1077, 1099, 1175, 1328, 1479, 1680, 1892, 2147, 2484, 2450, 2246, 2070, 1797, 1584, 1394, 1257, 1166, 1146, 1171, 1242, 1376, 1553, 1728, 1942, 2167, 2512, 2512, 2296, 2127, 1905, 1658, 1473, 1349, 1271, 1252, 1261, 1343, 1466, 1625, 1806, 2017, 2246, 2625, 2551, 2310, 2168, 1986, 1797, 1589, 1486, 1393, 1371, 1399, 1473, 1589, 1728, 1879, 2124, 2364, 2770, 2631, 2392, 2222, 2070, 1910, 1750, 1619, 1553, 1526, 1546, 1611, 1722, 1854, 2030, 2255, 2513, 2928, 2904, 2517, 2273, 2175, 2023, 1865, 1773, 1695, 1663, 1687, 1726, 1822, 1984, 2115, 2382, 2729, 3208, 3163, 2604, 2418, 2203, 2118, 1980, 1947, 1864, 1824, 1843, 1900, 1980, 2147, 2303, 2587, 2986, 3640]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3029, 2605, 2413, 2235, 2156, 2049, 1964, 1886, 1878, 1875, 1917, 1966, 2044, 2203, 2357, 2753, 3244, 2707, 2418, 2256, 2153, 2040, 1904, 1796, 1735, 1683, 1717, 1756, 1823, 1917, 2061, 2215, 2509, 2960, 2573, 2332, 2190, 2053, 1922, 1782, 1639, 1574, 1557, 1551, 1611, 1693, 1823, 1929, 2102, 2369, 2768, 2489, 2240, 2125, 1959, 1784, 1613, 1513, 1428, 1395, 1412, 1472, 1581, 1704, 1847, 2016, 2201, 2597, 2395, 2222, 2067, 1872, 1688, 1516, 1384, 1317, 1272, 1286, 1364, 1468, 1600, 1764, 1934, 2145, 2495, 2350, 2183, 2002, 1783, 1581, 1419, 1295, 1205, 1175, 1197, 1267, 1377, 1522, 1676, 1872, 2074, 2396, 2292, 2127, 1944, 1724, 1513, 1335, 1209, 1126, 1091, 1111, 1192, 1308, 1458, 1624, 1812, 2025, 2301, 2257, 2105, 1920, 1673, 1454, 1276, 1154, 1074, 1031, 1060, 1139, 1258, 1395, 1584, 1767, 1992, 2300, 2219, 2079, 1881, 1658, 1436, 1267, 1136, 1046, 1024, 1041, 1115, 1233, 1392, 1577, 1748, 1976, 2268, 2233, 2070, 1885, 1665, 1447, 1276, 1144, 1062, 1034, 1051, 1127, 1247, 1404, 1572, 1752, 1986, 2274, 2242, 2099, 1926, 1687, 1482, 1311, 1177, 1101, 1070, 1090, 1164, 1279, 1433, 1596, 1777, 1999, 2327, 2297, 2124, 1959, 1740, 1536, 1369, 1240, 1153, 1129, 1151, 1217, 1346, 1470, 1630, 1830, 2061, 2405, 2305, 2123, 1989, 1793, 1600, 1439, 1317, 1235, 1219, 1230, 1307, 1402, 1544, 1713, 1878, 2123, 2495, 2409, 2185, 2030, 1885, 1700, 1548, 1436, 1356, 1333, 1348, 1402, 1505, 1635, 1780, 1998, 2208, 2633, 2508, 2238, 2102, 1976, 1808, 1671, 1564, 1491, 1458, 1477, 1527, 1613, 1730, 1900, 2074, 2369, 2823, 2645, 2343, 2161, 2028, 1929, 1787, 1688, 1634, 1601, 1614, 1649, 1735, 1835, 2009, 2223, 2585, 3073, 3029, 2484, 2269, 2092, 1998, 1925, 1825, 1792, 1737, 1743, 1794, 1879, 1986, 2196, 2442, 2779, 3452]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3068, 2589, 2383, 2251, 2142, 2051, 1979, 1900, 1892, 1900, 1943, 1987, 2066, 2173, 2431, 2785, 3368, 2688, 2465, 2265, 2154, 2029, 1907, 1794, 1725, 1710, 1721, 1765, 1832, 1920, 2070, 2231, 2548, 3013, 2580, 2349, 2199, 2062, 1919, 1771, 1651, 1562, 1550, 1562, 1611, 1714, 1801, 1937, 2111, 2386, 2830, 2476, 2291, 2134, 1956, 1792, 1621, 1517, 1438, 1415, 1417, 1487, 1582, 1708, 1839, 2012, 2240, 2616, 2423, 2230, 2069, 1864, 1670, 1510, 1392, 1314, 1281, 1307, 1378, 1479, 1609, 1758, 1949, 2153, 2545, 2367, 2191, 1998, 1782, 1593, 1418, 1302, 1203, 1182, 1207, 1272, 1391, 1530, 1686, 1864, 2089, 2423, 2318, 2150, 1958, 1709, 1514, 1343, 1212, 1129, 1097, 1120, 1201, 1318, 1459, 1629, 1826, 2039, 2326, 2266, 2086, 1899, 1682, 1468, 1287, 1159, 1077, 1047, 1067, 1147, 1271, 1405, 1604, 1766, 2000, 2300, 2302, 2094, 1901, 1670, 1434, 1279, 1140, 1054, 1024, 1051, 1129, 1247, 1403, 1578, 1776, 1996, 2310, 2258, 2106, 1922, 1669, 1456, 1274, 1157, 1067, 1036, 1063, 1136, 1263, 1415, 1592, 1780, 2007, 2325, 2275, 2128, 1935, 1714, 1489, 1324, 1193, 1112, 1081, 1108, 1179, 1298, 1433, 1612, 1800, 2026, 2361, 2305, 2154, 1967, 1768, 1555, 1379, 1257, 1164, 1140, 1169, 1245, 1356, 1495, 1656, 1838, 2083, 2413, 2339, 2183, 2029, 1832, 1629, 1457, 1352, 1258, 1229, 1258, 1330, 1443, 1567, 1721, 1915, 2153, 2545, 2407, 2217, 2071, 1904, 1735, 1571, 1454, 1384, 1348, 1367, 1434, 1526, 1660, 1814, 1999, 2257, 2675, 2515, 2271, 2132, 1997, 1837, 1710, 1595, 1512, 1490, 1502, 1569, 1645, 1753, 1908, 2132, 2404, 2830, 2701, 2378, 2177, 2063, 1967, 1821, 1723, 1660, 1625, 1652, 1688, 1776, 1880, 2043, 2265, 2605, 3079, 2939, 2523, 2294, 2158, 2072, 1945, 1891, 1810, 1793, 1790, 1818, 1888, 2026, 2204, 2440, 2799, 3454]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2856, 2379, 2210, 2051, 2028, 1897, 1859, 1792, 1765, 1763, 1790, 1826, 1890, 2043, 2239, 2593, 3046, 2498, 2239, 2100, 1994, 1887, 1793, 1697, 1646, 1624, 1632, 1671, 1713, 1793, 1901, 2075, 2332, 2789, 2359, 2173, 2020, 1902, 1787, 1654, 1573, 1495, 1469, 1478, 1528, 1591, 1680, 1812, 1945, 2192, 2637, 2302, 2092, 1972, 1822, 1679, 1539, 1447, 1371, 1344, 1353, 1406, 1501, 1599, 1706, 1874, 2051, 2424, 2204, 2060, 1909, 1751, 1580, 1440, 1333, 1263, 1246, 1257, 1310, 1410, 1506, 1655, 1805, 1998, 2325, 2182, 2026, 1867, 1678, 1507, 1368, 1255, 1179, 1167, 1174, 1221, 1325, 1447, 1589, 1740, 1937, 2230, 2157, 1975, 1811, 1628, 1439, 1299, 1182, 1114, 1090, 1098, 1151, 1256, 1395, 1540, 1696, 1897, 2184, 2085, 1951, 1791, 1583, 1393, 1243, 1135, 1063, 1038, 1061, 1114, 1223, 1345, 1484, 1653, 1862, 2120, 2131, 1960, 1769, 1571, 1376, 1229, 1114, 1040, 1024, 1046, 1105, 1212, 1326, 1492, 1660, 1864, 2157, 2120, 1951, 1791, 1570, 1393, 1243, 1135, 1065, 1042, 1053, 1114, 1215, 1338, 1496, 1649, 1875, 2155, 2131, 1975, 1805, 1609, 1420, 1265, 1156, 1095, 1076, 1082, 1151, 1245, 1367, 1518, 1670, 1890, 2175, 2137, 1966, 1841, 1638, 1462, 1311, 1212, 1142, 1122, 1135, 1199, 1287, 1402, 1548, 1722, 1944, 2260, 2213, 1998, 1856, 1701, 1527, 1388, 1285, 1225, 1191, 1212, 1266, 1357, 1472, 1610, 1782, 1998, 2347, 2260, 2019, 1908, 1773, 1613, 1480, 1388, 1317, 1296, 1305, 1361, 1437, 1548, 1674, 1867, 2084, 2563, 2348, 2078, 1989, 1837, 1719, 1586, 1499, 1424, 1400, 1406, 1458, 1545, 1620, 1782, 1981, 2241, 2651, 2473, 2190, 2010, 1908, 1810, 1701, 1616, 1561, 1523, 1543, 1578, 1635, 1740, 1881, 2083, 2399, 2892, 2754, 2345, 2155, 2012, 1931, 1839, 1749, 1712, 1672, 1685, 1744, 1765, 1883, 2068, 2311, 2709, 3265]
                                       }
                                   }, {
                                       "name":    "4224x3136_HZ_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4811, 3831, 3402, 3074, 2817, 2620, 2459, 2394, 2333, 2386, 2459, 2578, 2732, 2988, 3384, 4127, 5203, 4075, 3534, 3135, 2893, 2631, 2386, 2220, 2069, 2049, 2062, 2152, 2316, 2507, 2756, 3089, 3634, 4443, 3831, 3280, 3002, 2698, 2394, 2131, 1943, 1821, 1785, 1795, 1908, 2069, 2267, 2537, 2867, 3314, 4154, 3593, 3120, 2817, 2478, 2189, 1886, 1709, 1586, 1533, 1570, 1669, 1858, 2089, 2342, 2664, 3060, 3785, 3420, 3031, 2686, 2325, 1991, 1718, 1504, 1411, 1354, 1374, 1486, 1673, 1897, 2220, 2507, 2880, 3495, 3263, 2933, 2568, 2182, 1831, 1555, 1368, 1248, 1210, 1258, 1351, 1529, 1761, 2055, 2386, 2817, 3314, 3198, 2842, 2478, 2062, 1714, 1449, 1253, 1151, 1104, 1135, 1246, 1417, 1651, 1973, 2283, 2675, 3166, 3166, 2804, 2413, 2010, 1656, 1383, 1190, 1085, 1042, 1070, 1170, 1345, 1586, 1886, 2204, 2631, 3120, 3104, 2768, 2377, 1979, 1618, 1354, 1160, 1054, 1024, 1046, 1143, 1320, 1563, 1858, 2204, 2610, 3104, 3104, 2780, 2386, 1985, 1626, 1360, 1170, 1069, 1031, 1063, 1162, 1340, 1574, 1863, 2204, 2620, 3104, 3120, 2768, 2440, 2029, 1669, 1408, 1224, 1115, 1083, 1115, 1210, 1389, 1602, 1914, 2259, 2642, 3214, 3198, 2842, 2507, 2117, 1761, 1504, 1301, 1208, 1172, 1199, 1304, 1479, 1704, 2016, 2333, 2721, 3348, 3331, 2920, 2578, 2235, 1902, 1614, 1430, 1334, 1301, 1331, 1423, 1618, 1842, 2124, 2468, 2855, 3476, 3439, 2988, 2709, 2394, 2082, 1800, 1606, 1490, 1456, 1493, 1610, 1761, 1985, 2251, 2599, 3045, 3740, 3655, 3182, 2855, 2568, 2267, 2010, 1811, 1718, 1673, 1727, 1795, 1949, 2167, 2450, 2817, 3314, 4209, 3949, 3366, 2961, 2721, 2450, 2212, 2055, 1943, 1902, 1925, 2036, 2189, 2422, 2709, 3045, 3655, 4604, 4604, 3697, 3166, 2855, 2686, 2478, 2300, 2212, 2182, 2197, 2275, 2386, 2642, 2933, 3402, 4101, 5378]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3970, 3300, 2932, 2666, 2501, 2377, 2199, 2154, 2094, 2128, 2145, 2217, 2399, 2574, 2932, 3474, 4365, 3451, 2982, 2679, 2501, 2284, 2128, 1991, 1912, 1884, 1891, 1947, 2037, 2171, 2366, 2600, 3087, 3854, 3199, 2808, 2513, 2325, 2119, 1940, 1770, 1702, 1659, 1680, 1747, 1845, 1998, 2154, 2432, 2838, 3474, 3016, 2600, 2388, 2180, 1940, 1747, 1623, 1511, 1473, 1490, 1575, 1691, 1845, 2029, 2284, 2613, 3239, 2900, 2549, 2294, 2037, 1782, 1608, 1465, 1370, 1332, 1346, 1426, 1561, 1735, 1918, 2145, 2432, 2949, 2778, 2454, 2199, 1898, 1654, 1486, 1332, 1238, 1199, 1224, 1305, 1437, 1613, 1819, 2045, 2335, 2808, 2707, 2388, 2102, 1832, 1579, 1377, 1235, 1146, 1108, 1139, 1215, 1352, 1525, 1724, 1954, 2294, 2721, 2613, 2345, 2085, 1776, 1503, 1319, 1185, 1081, 1051, 1065, 1159, 1293, 1445, 1675, 1905, 2208, 2626, 2626, 2345, 2029, 1735, 1469, 1293, 1154, 1059, 1024, 1053, 1122, 1253, 1426, 1643, 1891, 2189, 2613, 2652, 2335, 2061, 1747, 1503, 1296, 1162, 1074, 1036, 1061, 1137, 1265, 1437, 1654, 1912, 2208, 2613, 2652, 2366, 2102, 1794, 1529, 1346, 1199, 1117, 1092, 1103, 1180, 1325, 1482, 1685, 1918, 2245, 2666, 2679, 2410, 2154, 1838, 1613, 1418, 1286, 1188, 1157, 1182, 1253, 1384, 1542, 1753, 2006, 2325, 2808, 2793, 2432, 2226, 1969, 1691, 1503, 1384, 1293, 1262, 1286, 1359, 1477, 1643, 1838, 2061, 2421, 3016, 2916, 2525, 2284, 2069, 1845, 1648, 1520, 1414, 1399, 1418, 1477, 1598, 1764, 1940, 2208, 2600, 3219, 3124, 2639, 2399, 2226, 1983, 1807, 1691, 1589, 1556, 1565, 1654, 1747, 1891, 2111, 2388, 2778, 3474, 3406, 2838, 2489, 2325, 2145, 1998, 1884, 1764, 1747, 1741, 1807, 1905, 2053, 2294, 2600, 3087, 3970, 3883, 3124, 2793, 2432, 2314, 2128, 2077, 1983, 1932, 1940, 2045, 2119, 2274, 2537, 2916, 3568, 4515]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4055, 3314, 2911, 2608, 2450, 2280, 2149, 2057, 2002, 2033, 2098, 2213, 2320, 2508, 2911, 3467, 4430, 3513, 3010, 2687, 2450, 2251, 2081, 1922, 1835, 1803, 1816, 1874, 1980, 2123, 2351, 2621, 3099, 3875, 3314, 2787, 2520, 2341, 2115, 1894, 1709, 1635, 1615, 1595, 1709, 1835, 1980, 2176, 2427, 2817, 3467, 3081, 2715, 2438, 2194, 1936, 1715, 1553, 1462, 1427, 1458, 1548, 1682, 1854, 2041, 2300, 2608, 3174, 2894, 2634, 2341, 2033, 1797, 1600, 1419, 1319, 1306, 1316, 1393, 1530, 1726, 1915, 2167, 2520, 3010, 2847, 2557, 2251, 1943, 1709, 1471, 1316, 1207, 1188, 1216, 1313, 1427, 1615, 1841, 2073, 2416, 2863, 2802, 2473, 2213, 1861, 1620, 1378, 1221, 1130, 1101, 1127, 1210, 1353, 1535, 1767, 2025, 2330, 2817, 2715, 2450, 2132, 1828, 1544, 1329, 1170, 1072, 1044, 1068, 1154, 1306, 1483, 1721, 1965, 2290, 2758, 2715, 2427, 2141, 1797, 1508, 1300, 1157, 1055, 1024, 1046, 1137, 1278, 1471, 1687, 1922, 2290, 2715, 2743, 2416, 2115, 1803, 1535, 1326, 1167, 1072, 1038, 1072, 1149, 1300, 1479, 1698, 1965, 2270, 2729, 2729, 2450, 2194, 1880, 1591, 1371, 1207, 1120, 1085, 1110, 1188, 1343, 1513, 1738, 1987, 2310, 2787, 2802, 2508, 2241, 1908, 1630, 1419, 1265, 1186, 1147, 1167, 1259, 1415, 1576, 1809, 2049, 2383, 2927, 2879, 2557, 2290, 2010, 1755, 1526, 1378, 1271, 1247, 1271, 1364, 1500, 1666, 1874, 2141, 2508, 3063, 2960, 2634, 2383, 2132, 1894, 1650, 1491, 1411, 1357, 1393, 1466, 1610, 1785, 2010, 2280, 2647, 3335, 3233, 2743, 2473, 2260, 1995, 1809, 1645, 1548, 1508, 1535, 1615, 1743, 1887, 2123, 2394, 2911, 3585, 3467, 2911, 2557, 2351, 2132, 1980, 1828, 1743, 1682, 1715, 1791, 1901, 2057, 2300, 2621, 3193, 4055, 4024, 3193, 2729, 2496, 2300, 2132, 2018, 1922, 1880, 1908, 1958, 2065, 2251, 2520, 2976, 3490, 4625]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3968, 3049, 2713, 2475, 2302, 2249, 2061, 2019, 2061, 2019, 2061, 2105, 2199, 2444, 2751, 3303, 3968, 3196, 2790, 2507, 2329, 2128, 2019, 1884, 1815, 1782, 1766, 1849, 1902, 2019, 2224, 2507, 2914, 3605, 3196, 2641, 2385, 2175, 1999, 1866, 1705, 1608, 1582, 1570, 1635, 1735, 1884, 2083, 2302, 2676, 3303, 2914, 2507, 2302, 2019, 1832, 1676, 1533, 1454, 1402, 1392, 1498, 1608, 1735, 1921, 2199, 2475, 3145, 2790, 2415, 2199, 1959, 1691, 1510, 1383, 1301, 1275, 1275, 1354, 1476, 1635, 1832, 2040, 2357, 2871, 2676, 2385, 2105, 1849, 1608, 1423, 1267, 1198, 1163, 1177, 1228, 1364, 1533, 1751, 1959, 2329, 2713, 2751, 2329, 2083, 1782, 1533, 1327, 1205, 1104, 1080, 1104, 1177, 1284, 1487, 1676, 1902, 2249, 2605, 2641, 2302, 2040, 1735, 1498, 1284, 1156, 1063, 1024, 1040, 1129, 1259, 1402, 1608, 1866, 2175, 2641, 2676, 2329, 2019, 1705, 1465, 1275, 1136, 1057, 1024, 1040, 1123, 1228, 1402, 1621, 1849, 2175, 2507, 2676, 2275, 2040, 1735, 1476, 1301, 1136, 1068, 1046, 1057, 1129, 1251, 1433, 1635, 1884, 2175, 2539, 2676, 2302, 2061, 1798, 1510, 1318, 1191, 1104, 1080, 1098, 1163, 1292, 1443, 1648, 1884, 2199, 2641, 2641, 2329, 2083, 1832, 1582, 1402, 1236, 1177, 1143, 1170, 1251, 1364, 1498, 1720, 1979, 2249, 2830, 2830, 2385, 2151, 1921, 1662, 1465, 1345, 1259, 1243, 1251, 1336, 1433, 1608, 1798, 2040, 2385, 2871, 2871, 2475, 2249, 1999, 1815, 1595, 1454, 1383, 1383, 1373, 1443, 1533, 1676, 1921, 2199, 2539, 3096, 3096, 2572, 2357, 2128, 1940, 1751, 1621, 1545, 1487, 1521, 1582, 1691, 1815, 1999, 2302, 2751, 3418, 3303, 2751, 2385, 2275, 2061, 1940, 1798, 1691, 1662, 1705, 1735, 1832, 1979, 2151, 2475, 3049, 3814, 4049, 3049, 2605, 2385, 2275, 2175, 1999, 1921, 1884, 1832, 1959, 2040, 2224, 2444, 2871, 3418, 4727]
                                       }
                                   }, {
                                       "name":    "4224x3136_HZ_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3675, 3121, 2889, 2696, 2533, 2400, 2282, 2238, 2187, 2231, 2282, 2364, 2461, 2626, 2874, 3342, 3949, 3243, 2958, 2729, 2593, 2415, 2232, 2103, 1976, 1961, 1970, 2041, 2170, 2308, 2478, 2692, 3035, 3511, 3124, 2808, 2662, 2464, 2239, 2030, 1873, 1768, 1736, 1743, 1841, 1973, 2127, 2326, 2550, 2835, 3366, 2991, 2718, 2541, 2301, 2079, 1823, 1670, 1559, 1510, 1544, 1632, 1797, 1988, 2182, 2411, 2670, 3138, 2892, 2675, 2454, 2186, 1914, 1678, 1484, 1399, 1345, 1363, 1467, 1636, 1828, 2092, 2300, 2551, 2951, 2794, 2615, 2370, 2072, 1777, 1531, 1358, 1244, 1207, 1253, 1341, 1506, 1711, 1957, 2211, 2519, 2835, 2760, 2554, 2304, 1972, 1674, 1434, 1248, 1150, 1103, 1134, 1241, 1403, 1614, 1891, 2132, 2414, 2734, 2744, 2531, 2253, 1930, 1622, 1372, 1188, 1085, 1042, 1070, 1168, 1335, 1556, 1816, 2068, 2384, 2708, 2698, 2503, 2224, 1903, 1587, 1344, 1158, 1054, 1024, 1046, 1141, 1311, 1535, 1791, 2070, 2369, 2698, 2695, 2510, 2229, 1907, 1594, 1350, 1168, 1069, 1031, 1063, 1160, 1330, 1545, 1795, 2068, 2375, 2695, 2698, 2492, 2270, 1942, 1631, 1394, 1220, 1114, 1083, 1114, 1206, 1376, 1568, 1837, 2111, 2386, 2773, 2743, 2540, 2317, 2013, 1711, 1482, 1293, 1204, 1170, 1196, 1296, 1458, 1658, 1922, 2165, 2439, 2861, 2823, 2583, 2361, 2106, 1832, 1580, 1413, 1324, 1293, 1321, 1406, 1584, 1777, 2007, 2266, 2530, 2936, 2873, 2611, 2449, 2227, 1982, 1743, 1573, 1468, 1437, 1471, 1576, 1707, 1894, 2102, 2356, 2658, 3103, 2993, 2731, 2540, 2352, 2127, 1920, 1751, 1672, 1632, 1680, 1736, 1864, 2038, 2251, 2509, 2835, 3407, 3151, 2829, 2588, 2448, 2259, 2077, 1954, 1861, 1826, 1845, 1937, 2057, 2234, 2438, 2656, 3052, 3628, 3530, 3021, 2703, 2517, 2423, 2277, 2143, 2076, 2053, 2063, 2121, 2198, 2385, 2581, 2889, 3323, 4072]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3086, 2724, 2520, 2363, 2267, 2190, 2054, 2025, 1975, 2002, 2007, 2052, 2181, 2288, 2520, 2854, 3363, 2789, 2533, 2361, 2264, 2115, 2003, 1896, 1833, 1810, 1814, 1856, 1922, 2017, 2150, 2297, 2614, 3082, 2651, 2435, 2257, 2143, 1995, 1856, 1713, 1657, 1619, 1636, 1692, 1770, 1888, 1996, 2190, 2459, 2857, 2549, 2298, 2178, 2039, 1853, 1694, 1589, 1488, 1453, 1468, 1543, 1642, 1767, 1907, 2090, 2308, 2720, 2487, 2278, 2117, 1929, 1722, 1574, 1447, 1359, 1323, 1336, 1409, 1530, 1679, 1823, 1988, 2182, 2525, 2411, 2216, 2048, 1815, 1612, 1465, 1323, 1234, 1196, 1220, 1297, 1418, 1573, 1743, 1914, 2117, 2435, 2368, 2172, 1973, 1762, 1546, 1364, 1231, 1145, 1107, 1138, 1211, 1340, 1496, 1663, 1842, 2093, 2379, 2300, 2142, 1963, 1715, 1477, 1310, 1183, 1081, 1051, 1065, 1157, 1285, 1423, 1622, 1804, 2026, 2311, 2313, 2144, 1915, 1678, 1446, 1285, 1152, 1059, 1024, 1053, 1121, 1246, 1405, 1594, 1793, 2012, 2303, 2332, 2134, 1942, 1688, 1477, 1288, 1160, 1074, 1036, 1061, 1135, 1258, 1415, 1603, 1810, 2026, 2300, 2324, 2154, 1973, 1727, 1499, 1334, 1195, 1116, 1092, 1102, 1177, 1314, 1455, 1628, 1811, 2052, 2335, 2333, 2179, 2009, 1761, 1573, 1400, 1278, 1185, 1155, 1179, 1246, 1368, 1507, 1684, 1880, 2109, 2435, 2403, 2182, 2058, 1868, 1638, 1476, 1369, 1284, 1255, 1278, 1345, 1451, 1594, 1751, 1916, 2173, 2577, 2473, 2237, 2090, 1942, 1767, 1602, 1492, 1395, 1382, 1399, 1451, 1556, 1694, 1829, 2025, 2298, 2704, 2595, 2301, 2163, 2058, 1875, 1735, 1640, 1551, 1522, 1529, 1606, 1681, 1793, 1959, 2154, 2411, 2857, 2757, 2422, 2207, 2116, 1994, 1888, 1800, 1698, 1685, 1677, 1730, 1805, 1915, 2090, 2297, 2614, 3167, 3025, 2593, 2411, 2172, 2109, 1976, 1947, 1874, 1831, 1835, 1919, 1968, 2076, 2258, 2507, 2924, 3468]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3146, 2735, 2504, 2316, 2224, 2107, 2010, 1939, 1893, 1918, 1966, 2049, 2115, 2234, 2504, 2849, 3408, 2834, 2554, 2367, 2221, 2086, 1961, 1834, 1763, 1736, 1745, 1791, 1872, 1975, 2138, 2314, 2623, 3098, 2738, 2419, 2263, 2157, 1992, 1814, 1657, 1594, 1577, 1557, 1657, 1761, 1872, 2015, 2186, 2442, 2852, 2599, 2391, 2220, 2052, 1850, 1665, 1523, 1441, 1409, 1437, 1518, 1634, 1776, 1917, 2103, 2304, 2670, 2482, 2348, 2157, 1925, 1736, 1567, 1403, 1310, 1298, 1307, 1378, 1501, 1670, 1820, 2007, 2254, 2572, 2465, 2302, 2094, 1856, 1663, 1451, 1307, 1203, 1185, 1212, 1305, 1409, 1575, 1763, 1939, 2184, 2478, 2444, 2244, 2070, 1789, 1585, 1365, 1217, 1129, 1100, 1126, 1206, 1341, 1505, 1703, 1905, 2123, 2456, 2382, 2231, 2005, 1762, 1516, 1320, 1168, 1072, 1044, 1068, 1152, 1297, 1458, 1664, 1857, 2096, 2417, 2385, 2214, 2014, 1735, 1483, 1292, 1155, 1055, 1024, 1046, 1136, 1271, 1448, 1634, 1820, 2098, 2385, 2405, 2202, 1990, 1740, 1508, 1317, 1165, 1072, 1038, 1072, 1147, 1291, 1455, 1643, 1857, 2079, 2393, 2385, 2224, 2054, 1806, 1558, 1358, 1203, 1119, 1085, 1109, 1185, 1331, 1484, 1676, 1871, 2106, 2432, 2430, 2261, 2085, 1824, 1589, 1401, 1258, 1183, 1145, 1164, 1252, 1397, 1539, 1734, 1918, 2157, 2529, 2470, 2285, 2113, 1905, 1697, 1497, 1363, 1263, 1241, 1263, 1350, 1473, 1615, 1783, 1985, 2245, 2614, 2506, 2325, 2173, 1997, 1812, 1604, 1464, 1392, 1342, 1375, 1441, 1567, 1713, 1890, 2086, 2336, 2793, 2677, 2384, 2224, 2087, 1885, 1737, 1598, 1513, 1477, 1501, 1570, 1677, 1790, 1969, 2159, 2517, 2940, 2801, 2478, 2262, 2138, 1983, 1872, 1749, 1679, 1625, 1653, 1716, 1802, 1918, 2095, 2314, 2695, 3229, 3124, 2644, 2361, 2224, 2098, 1979, 1896, 1819, 1785, 1807, 1843, 1921, 2056, 2244, 2555, 2866, 3545]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3085, 2537, 2348, 2207, 2099, 2080, 1933, 1905, 1946, 1905, 1933, 1956, 2013, 2182, 2378, 2726, 3085, 2604, 2385, 2222, 2119, 1980, 1906, 1800, 1745, 1717, 1700, 1768, 1802, 1885, 2031, 2222, 2480, 2901, 2649, 2303, 2151, 2014, 1889, 1789, 1653, 1569, 1546, 1533, 1588, 1670, 1787, 1935, 2082, 2331, 2729, 2471, 2223, 2105, 1898, 1756, 1628, 1504, 1433, 1385, 1374, 1471, 1565, 1668, 1812, 2018, 2197, 2648, 2401, 2168, 2035, 1859, 1638, 1482, 1368, 1292, 1268, 1267, 1340, 1450, 1587, 1746, 1898, 2120, 2464, 2330, 2159, 1966, 1771, 1569, 1405, 1260, 1195, 1161, 1174, 1222, 1349, 1499, 1682, 1839, 2112, 2359, 2403, 2122, 1956, 1716, 1503, 1316, 1201, 1103, 1080, 1103, 1174, 1275, 1460, 1620, 1797, 2055, 2286, 2323, 2106, 1923, 1677, 1473, 1276, 1154, 1063, 1024, 1040, 1127, 1252, 1382, 1560, 1769, 1998, 2323, 2354, 2131, 1906, 1651, 1442, 1268, 1135, 1057, 1024, 1040, 1122, 1222, 1382, 1573, 1755, 2000, 2217, 2351, 2083, 1923, 1677, 1452, 1292, 1134, 1068, 1046, 1057, 1127, 1244, 1411, 1585, 1785, 1998, 2241, 2343, 2100, 1937, 1731, 1482, 1307, 1188, 1103, 1080, 1097, 1160, 1282, 1418, 1594, 1781, 2013, 2315, 2302, 2112, 1947, 1755, 1544, 1385, 1230, 1174, 1141, 1167, 1244, 1349, 1466, 1654, 1857, 2045, 2452, 2432, 2143, 1994, 1825, 1611, 1440, 1332, 1251, 1237, 1244, 1323, 1410, 1562, 1715, 1898, 2143, 2464, 2438, 2197, 2060, 1880, 1740, 1553, 1429, 1366, 1367, 1356, 1419, 1496, 1614, 1812, 2018, 2249, 2610, 2574, 2248, 2128, 1974, 1837, 1684, 1575, 1510, 1457, 1488, 1539, 1630, 1726, 1863, 2082, 2390, 2815, 2682, 2355, 2123, 2074, 1922, 1836, 1722, 1632, 1607, 1644, 1665, 1740, 1851, 1970, 2196, 2585, 3053, 3142, 2537, 2264, 2134, 2077, 2016, 1879, 1819, 1788, 1740, 1844, 1900, 2034, 2182, 2472, 2812, 3616]
                                       }
                                   }, {
                                       "name":    "4224x3136_TL84_100",
                                       "resolution":    "4224x3136",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3741, 3041, 2652, 2439, 2291, 2131, 1991, 1924, 1892, 1876, 1948, 2026, 2161, 2351, 2683, 3190, 4112, 3330, 2781, 2506, 2303, 2101, 1924, 1802, 1733, 1688, 1701, 1767, 1861, 2000, 2182, 2426, 2905, 3622, 3001, 2621, 2375, 2151, 1957, 1767, 1628, 1556, 1530, 1545, 1594, 1720, 1861, 2017, 2257, 2621, 3259, 2816, 2452, 2235, 2035, 1795, 1622, 1494, 1402, 1369, 1394, 1452, 1556, 1707, 1884, 2111, 2426, 3021, 2748, 2388, 2141, 1900, 1676, 1494, 1369, 1284, 1256, 1273, 1340, 1442, 1594, 1788, 2017, 2303, 2781, 2621, 2303, 2054, 1795, 1588, 1407, 1259, 1196, 1148, 1187, 1238, 1356, 1504, 1688, 1892, 2203, 2621, 2577, 2257, 2008, 1733, 1494, 1321, 1190, 1117, 1090, 1103, 1178, 1269, 1424, 1622, 1838, 2121, 2562, 2506, 2203, 1957, 1676, 1456, 1277, 1145, 1070, 1050, 1060, 1125, 1245, 1381, 1577, 1774, 2092, 2465, 2439, 2224, 1932, 1670, 1424, 1259, 1120, 1057, 1024, 1043, 1114, 1222, 1365, 1561, 1774, 2072, 2465, 2465, 2192, 1948, 1646, 1429, 1252, 1128, 1057, 1033, 1052, 1109, 1232, 1381, 1550, 1781, 2063, 2452, 2465, 2224, 1957, 1688, 1475, 1284, 1160, 1080, 1060, 1080, 1145, 1266, 1402, 1588, 1802, 2101, 2562, 2534, 2246, 2026, 1740, 1519, 1337, 1206, 1139, 1131, 1142, 1212, 1317, 1438, 1652, 1846, 2192, 2636, 2652, 2303, 2072, 1831, 1605, 1424, 1306, 1225, 1209, 1228, 1295, 1385, 1556, 1720, 1948, 2280, 2798, 2781, 2375, 2151, 1908, 1720, 1535, 1415, 1344, 1313, 1325, 1394, 1509, 1628, 1824, 2072, 2426, 3082, 2924, 2479, 2235, 2026, 1824, 1670, 1535, 1461, 1438, 1461, 1519, 1628, 1774, 1948, 2224, 2636, 3306, 3168, 2652, 2339, 2161, 1965, 1816, 1682, 1634, 1588, 1616, 1670, 1753, 1908, 2131, 2426, 2943, 3680, 3710, 2924, 2548, 2235, 2111, 1974, 1868, 1795, 1760, 1781, 1838, 1916, 2082, 2375, 2715, 3330, 4267]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3889, 3011, 2711, 2474, 2338, 2223, 2074, 1989, 1960, 1955, 1983, 2074, 2216, 2430, 2711, 3272, 4076, 3256, 2800, 2501, 2322, 2132, 1989, 1863, 1785, 1739, 1762, 1795, 1900, 2006, 2209, 2447, 2920, 3620, 3011, 2627, 2387, 2187, 1989, 1804, 1671, 1600, 1567, 1574, 1631, 1757, 1874, 2036, 2260, 2647, 3303, 2835, 2520, 2275, 2049, 1833, 1655, 1528, 1438, 1411, 1420, 1485, 1596, 1739, 1905, 2132, 2447, 2997, 2711, 2395, 2159, 1911, 1705, 1521, 1388, 1303, 1283, 1295, 1363, 1478, 1627, 1804, 2030, 2314, 2811, 2597, 2338, 2086, 1814, 1604, 1414, 1285, 1204, 1174, 1191, 1266, 1382, 1515, 1709, 1932, 2223, 2647, 2539, 2260, 1989, 1744, 1511, 1339, 1208, 1126, 1091, 1113, 1181, 1300, 1453, 1647, 1863, 2153, 2529, 2474, 2223, 1977, 1705, 1459, 1278, 1151, 1067, 1040, 1054, 1130, 1250, 1399, 1589, 1823, 2112, 2510, 2492, 2194, 1943, 1671, 1426, 1259, 1137, 1046, 1024, 1040, 1109, 1232, 1391, 1578, 1804, 2074, 2492, 2465, 2209, 1938, 1671, 1438, 1259, 1147, 1056, 1030, 1043, 1113, 1236, 1382, 1578, 1785, 2080, 2510, 2501, 2238, 1960, 1709, 1478, 1308, 1178, 1100, 1071, 1088, 1160, 1273, 1417, 1593, 1833, 2119, 2558, 2520, 2268, 2024, 1767, 1549, 1360, 1245, 1156, 1128, 1147, 1216, 1344, 1469, 1667, 1879, 2194, 2637, 2627, 2306, 2093, 1848, 1631, 1444, 1326, 1252, 1212, 1230, 1308, 1420, 1553, 1739, 1949, 2283, 2871, 2743, 2387, 2159, 1949, 1748, 1563, 1435, 1365, 1331, 1344, 1414, 1518, 1663, 1819, 2086, 2421, 2997, 2920, 2474, 2260, 2067, 1874, 1709, 1574, 1505, 1459, 1478, 1542, 1639, 1762, 1977, 2216, 2658, 3272, 3150, 2647, 2362, 2166, 2012, 1858, 1717, 1659, 1619, 1643, 1696, 1780, 1900, 2146, 2430, 2908, 3719, 3679, 2908, 2529, 2283, 2159, 2036, 1921, 1838, 1804, 1814, 1869, 1938, 2126, 2354, 2732, 3320, 4151]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3847, 3070, 2727, 2427, 2296, 2145, 2019, 1966, 1933, 1938, 2025, 2055, 2179, 2376, 2716, 3276, 4101, 3244, 2817, 2498, 2320, 2132, 1966, 1839, 1763, 1728, 1741, 1796, 1895, 2013, 2193, 2436, 2913, 3623, 3056, 2674, 2393, 2200, 2007, 1815, 1665, 1573, 1544, 1569, 1617, 1741, 1870, 2049, 2274, 2674, 3323, 2864, 2535, 2296, 2061, 1834, 1629, 1510, 1425, 1402, 1408, 1494, 1591, 1745, 1906, 2152, 2489, 3029, 2738, 2427, 2186, 1917, 1715, 1520, 1390, 1301, 1267, 1286, 1360, 1474, 1621, 1805, 2055, 2352, 2852, 2653, 2360, 2125, 1839, 1602, 1416, 1283, 1192, 1173, 1198, 1272, 1377, 1541, 1737, 1949, 2259, 2738, 2602, 2304, 2043, 1777, 1531, 1339, 1209, 1121, 1088, 1123, 1192, 1311, 1465, 1661, 1875, 2186, 2583, 2525, 2281, 1995, 1723, 1478, 1291, 1157, 1072, 1043, 1064, 1140, 1260, 1425, 1621, 1849, 2145, 2554, 2544, 2274, 2001, 1694, 1446, 1272, 1140, 1054, 1024, 1043, 1118, 1239, 1411, 1610, 1820, 2125, 2573, 2525, 2266, 1989, 1706, 1468, 1281, 1140, 1069, 1032, 1061, 1131, 1255, 1419, 1602, 1849, 2112, 2554, 2554, 2281, 2025, 1759, 1507, 1323, 1179, 1103, 1076, 1102, 1169, 1291, 1443, 1641, 1849, 2166, 2632, 2593, 2336, 2074, 1801, 1569, 1382, 1253, 1163, 1134, 1167, 1228, 1352, 1500, 1715, 1927, 2236, 2738, 2663, 2393, 2138, 1906, 1657, 1471, 1339, 1260, 1230, 1251, 1331, 1437, 1595, 1782, 2013, 2344, 2852, 2782, 2462, 2244, 2001, 1773, 1584, 1456, 1368, 1344, 1360, 1437, 1537, 1706, 1880, 2138, 2489, 3112, 3015, 2554, 2304, 2119, 1885, 1715, 1587, 1514, 1465, 1484, 1569, 1657, 1801, 2007, 2266, 2705, 3372, 3276, 2727, 2418, 2200, 2030, 1875, 1750, 1657, 1633, 1657, 1715, 1796, 1944, 2179, 2489, 3015, 3783, 3721, 2963, 2622, 2328, 2208, 2030, 1938, 1864, 1810, 1815, 1849, 1995, 2159, 2376, 2805, 3406, 4419]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3569, 2794, 2465, 2296, 2121, 2019, 1926, 1851, 1841, 1841, 1882, 1948, 2043, 2249, 2502, 3049, 3770, 2994, 2559, 2296, 2148, 1995, 1841, 1736, 1675, 1634, 1642, 1692, 1773, 1872, 2056, 2249, 2682, 3354, 2866, 2412, 2162, 1995, 1861, 1692, 1565, 1509, 1476, 1489, 1530, 1595, 1736, 1893, 2081, 2465, 2994, 2640, 2280, 2108, 1882, 1718, 1537, 1444, 1356, 1319, 1340, 1390, 1489, 1611, 1754, 1995, 2265, 2818, 2520, 2219, 2007, 1782, 1595, 1425, 1308, 1259, 1222, 1218, 1283, 1378, 1537, 1683, 1872, 2176, 2661, 2447, 2162, 1948, 1701, 1495, 1351, 1218, 1163, 1128, 1143, 1196, 1293, 1419, 1611, 1811, 2095, 2483, 2394, 2134, 1882, 1634, 1425, 1259, 1171, 1087, 1066, 1070, 1135, 1250, 1378, 1530, 1754, 2031, 2412, 2377, 2108, 1861, 1588, 1390, 1222, 1120, 1037, 1024, 1030, 1102, 1200, 1324, 1516, 1718, 1959, 2377, 2328, 2081, 1841, 1588, 1367, 1209, 1105, 1024, 1024, 1024, 1091, 1179, 1334, 1495, 1701, 1983, 2312, 2377, 2108, 1851, 1588, 1378, 1227, 1116, 1037, 1024, 1037, 1094, 1196, 1324, 1502, 1701, 1959, 2361, 2377, 2095, 1872, 1626, 1396, 1250, 1143, 1066, 1063, 1066, 1116, 1231, 1351, 1523, 1736, 2007, 2394, 2429, 2148, 1937, 1675, 1463, 1293, 1196, 1124, 1109, 1109, 1188, 1273, 1413, 1565, 1792, 2069, 2520, 2502, 2191, 1948, 1754, 1551, 1384, 1269, 1209, 1183, 1192, 1240, 1351, 1489, 1642, 1861, 2162, 2640, 2661, 2219, 2043, 1821, 1675, 1495, 1390, 1288, 1278, 1293, 1351, 1450, 1565, 1736, 1959, 2296, 2841, 2771, 2312, 2121, 1937, 1763, 1634, 1495, 1419, 1396, 1413, 1450, 1551, 1675, 1872, 2121, 2483, 3077, 3021, 2465, 2205, 2031, 1893, 1763, 1650, 1551, 1530, 1551, 1603, 1667, 1821, 1995, 2280, 2748, 3354, 3531, 2748, 2447, 2219, 2043, 1915, 1841, 1763, 1718, 1736, 1801, 1841, 2031, 2249, 2599, 3164, 3995]
                                       }
                                   }, {
                                       "name":    "4224x3136_TL84_70",
                                       "resolution":    "4224x3136",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2926, 2531, 2300, 2178, 2090, 1978, 1872, 1821, 1796, 1779, 1834, 1888, 1981, 2106, 2325, 2642, 3186, 2701, 2378, 2221, 2098, 1956, 1822, 1726, 1670, 1631, 1641, 1694, 1766, 1869, 1996, 2156, 2474, 2914, 2503, 2287, 2143, 1994, 1852, 1699, 1582, 1520, 1498, 1510, 1551, 1656, 1767, 1878, 2045, 2287, 2696, 2396, 2178, 2048, 1912, 1722, 1578, 1467, 1384, 1354, 1376, 1427, 1517, 1642, 1779, 1943, 2157, 2553, 2368, 2146, 1985, 1806, 1624, 1467, 1355, 1276, 1249, 1265, 1327, 1418, 1549, 1706, 1878, 2076, 2394, 2287, 2090, 1922, 1722, 1550, 1390, 1252, 1193, 1146, 1184, 1232, 1341, 1472, 1625, 1781, 2007, 2287, 2264, 2062, 1890, 1672, 1466, 1310, 1187, 1116, 1090, 1102, 1175, 1260, 1401, 1570, 1740, 1947, 2252, 2214, 2022, 1850, 1623, 1433, 1269, 1143, 1070, 1050, 1060, 1123, 1238, 1362, 1532, 1688, 1928, 2181, 2163, 2042, 1829, 1618, 1403, 1252, 1119, 1057, 1024, 1043, 1113, 1216, 1347, 1518, 1689, 1913, 2184, 2181, 2013, 1842, 1595, 1407, 1245, 1126, 1057, 1033, 1052, 1108, 1226, 1362, 1507, 1694, 1904, 2171, 2175, 2034, 1845, 1631, 1449, 1275, 1157, 1079, 1060, 1079, 1143, 1257, 1380, 1539, 1709, 1930, 2252, 2218, 2043, 1898, 1672, 1486, 1323, 1201, 1137, 1129, 1140, 1207, 1304, 1410, 1592, 1741, 1998, 2299, 2293, 2076, 1926, 1745, 1559, 1401, 1294, 1219, 1204, 1221, 1284, 1364, 1514, 1646, 1819, 2057, 2407, 2369, 2116, 1977, 1800, 1654, 1498, 1393, 1329, 1300, 1311, 1373, 1474, 1571, 1727, 1910, 2157, 2600, 2446, 2175, 2027, 1886, 1734, 1611, 1496, 1432, 1412, 1432, 1481, 1573, 1689, 1819, 2018, 2299, 2732, 2583, 2279, 2086, 1978, 1839, 1726, 1617, 1580, 1540, 1563, 1607, 1670, 1789, 1953, 2156, 2503, 2956, 2904, 2443, 2219, 2012, 1939, 1843, 1764, 1707, 1678, 1695, 1738, 1793, 1914, 2126, 2350, 2747, 3294]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3030, 2508, 2347, 2206, 2130, 2058, 1945, 1879, 1856, 1849, 1865, 1929, 2027, 2171, 2347, 2703, 3160, 2647, 2393, 2217, 2113, 1983, 1880, 1781, 1717, 1678, 1696, 1719, 1801, 1874, 2019, 2173, 2485, 2912, 2511, 2292, 2153, 2025, 1880, 1733, 1622, 1561, 1532, 1537, 1585, 1690, 1778, 1895, 2048, 2308, 2729, 2410, 2233, 2082, 1924, 1757, 1609, 1499, 1418, 1394, 1401, 1459, 1554, 1671, 1798, 1961, 2174, 2535, 2339, 2152, 2001, 1816, 1651, 1492, 1373, 1294, 1276, 1286, 1349, 1452, 1579, 1721, 1890, 2085, 2417, 2268, 2119, 1950, 1739, 1565, 1396, 1277, 1200, 1172, 1188, 1259, 1366, 1482, 1644, 1816, 2024, 2307, 2234, 2064, 1873, 1682, 1482, 1328, 1204, 1125, 1091, 1112, 1178, 1290, 1428, 1593, 1762, 1974, 2226, 2189, 2039, 1867, 1649, 1436, 1270, 1149, 1067, 1040, 1054, 1128, 1243, 1379, 1543, 1731, 1945, 2218, 2205, 2016, 1839, 1619, 1405, 1252, 1136, 1046, 1024, 1040, 1108, 1226, 1372, 1534, 1716, 1915, 2205, 2181, 2027, 1833, 1618, 1416, 1252, 1145, 1056, 1030, 1043, 1112, 1229, 1363, 1533, 1697, 1918, 2218, 2203, 2046, 1848, 1650, 1451, 1298, 1175, 1099, 1071, 1087, 1157, 1264, 1394, 1544, 1736, 1946, 2249, 2207, 2061, 1896, 1696, 1514, 1345, 1239, 1153, 1126, 1145, 1210, 1330, 1439, 1606, 1769, 1999, 2299, 2274, 2078, 1944, 1760, 1583, 1420, 1313, 1245, 1207, 1223, 1296, 1397, 1511, 1663, 1820, 2060, 2464, 2340, 2126, 1984, 1836, 1680, 1524, 1411, 1349, 1317, 1329, 1392, 1482, 1603, 1722, 1922, 2153, 2535, 2443, 2171, 2048, 1921, 1778, 1646, 1532, 1473, 1431, 1448, 1503, 1583, 1679, 1844, 2011, 2316, 2706, 2570, 2275, 2105, 1983, 1879, 1763, 1649, 1602, 1568, 1588, 1630, 1694, 1782, 1966, 2160, 2476, 2984, 2883, 2431, 2204, 2051, 1979, 1896, 1811, 1745, 1717, 1724, 1765, 1812, 1951, 2109, 2363, 2739, 3213]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3000, 2552, 2359, 2168, 2094, 1990, 1896, 1858, 1832, 1834, 1902, 1913, 1996, 2126, 2351, 2706, 3178, 2639, 2406, 2214, 2112, 1983, 1859, 1759, 1697, 1667, 1677, 1720, 1796, 1880, 2005, 2164, 2480, 2914, 2544, 2329, 2158, 2036, 1896, 1743, 1616, 1536, 1511, 1533, 1572, 1675, 1775, 1906, 2059, 2329, 2744, 2433, 2245, 2100, 1935, 1757, 1585, 1482, 1406, 1385, 1390, 1467, 1550, 1677, 1799, 1978, 2208, 2559, 2360, 2178, 2024, 1822, 1660, 1492, 1375, 1292, 1260, 1278, 1346, 1448, 1574, 1722, 1911, 2116, 2449, 2312, 2138, 1984, 1762, 1563, 1398, 1275, 1189, 1171, 1195, 1265, 1361, 1506, 1669, 1830, 2054, 2379, 2284, 2101, 1921, 1712, 1501, 1328, 1205, 1120, 1088, 1122, 1189, 1301, 1439, 1606, 1773, 2002, 2269, 2230, 2088, 1883, 1666, 1454, 1283, 1155, 1072, 1043, 1064, 1138, 1253, 1404, 1572, 1754, 1973, 2253, 2247, 2084, 1890, 1641, 1424, 1265, 1138, 1054, 1024, 1043, 1117, 1233, 1391, 1563, 1730, 1958, 2271, 2230, 2075, 1878, 1650, 1444, 1273, 1138, 1069, 1032, 1061, 1129, 1248, 1398, 1555, 1754, 1945, 2253, 2246, 2082, 1905, 1695, 1479, 1312, 1176, 1102, 1076, 1101, 1166, 1281, 1418, 1588, 1750, 1985, 2308, 2265, 2118, 1939, 1727, 1532, 1366, 1246, 1160, 1132, 1164, 1222, 1337, 1468, 1649, 1811, 2034, 2379, 2302, 2150, 1982, 1812, 1607, 1445, 1326, 1252, 1224, 1244, 1318, 1413, 1550, 1701, 1875, 2110, 2449, 2370, 2186, 2056, 1882, 1702, 1543, 1431, 1352, 1330, 1344, 1413, 1500, 1642, 1776, 1966, 2208, 2623, 2514, 2234, 2084, 1966, 1788, 1652, 1544, 1481, 1437, 1453, 1527, 1599, 1713, 1870, 2053, 2354, 2781, 2662, 2336, 2150, 2011, 1895, 1779, 1679, 1601, 1581, 1601, 1647, 1708, 1820, 1993, 2207, 2558, 3031, 2912, 2472, 2277, 2087, 2020, 1891, 1825, 1768, 1723, 1725, 1747, 1861, 1979, 2126, 2420, 2803, 3401]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2806, 2346, 2154, 2061, 1947, 1882, 1815, 1757, 1750, 1748, 1776, 1820, 1881, 2023, 2183, 2537, 2946, 2457, 2207, 2051, 1967, 1865, 1748, 1666, 1617, 1582, 1587, 1626, 1688, 1758, 1890, 2013, 2302, 2719, 2402, 2122, 1967, 1859, 1767, 1631, 1524, 1477, 1447, 1458, 1491, 1543, 1656, 1772, 1899, 2164, 2498, 2261, 2039, 1941, 1778, 1652, 1500, 1420, 1340, 1306, 1325, 1369, 1455, 1556, 1665, 1845, 2027, 2397, 2190, 2007, 1870, 1701, 1550, 1402, 1296, 1251, 1216, 1212, 1272, 1358, 1496, 1613, 1754, 1972, 2300, 2149, 1973, 1830, 1637, 1463, 1336, 1212, 1160, 1126, 1141, 1191, 1281, 1392, 1555, 1710, 1917, 2178, 2118, 1958, 1779, 1581, 1401, 1250, 1168, 1086, 1066, 1070, 1133, 1242, 1357, 1486, 1666, 1872, 2132, 2111, 1942, 1765, 1542, 1370, 1216, 1119, 1037, 1024, 1030, 1101, 1195, 1308, 1476, 1638, 1815, 2111, 2073, 1920, 1748, 1543, 1349, 1204, 1104, 1024, 1024, 1024, 1090, 1174, 1318, 1457, 1624, 1837, 2061, 2111, 1942, 1756, 1542, 1359, 1221, 1115, 1037, 1024, 1037, 1093, 1191, 1308, 1463, 1623, 1815, 2098, 2104, 1925, 1770, 1574, 1374, 1242, 1141, 1066, 1063, 1066, 1114, 1223, 1332, 1480, 1651, 1851, 2118, 2135, 1961, 1820, 1613, 1433, 1281, 1191, 1122, 1108, 1107, 1183, 1262, 1387, 1514, 1694, 1895, 2207, 2176, 1984, 1819, 1676, 1509, 1363, 1259, 1203, 1178, 1187, 1231, 1332, 1452, 1576, 1744, 1960, 2284, 2277, 1990, 1886, 1724, 1613, 1461, 1369, 1275, 1267, 1280, 1332, 1419, 1514, 1649, 1815, 2052, 2415, 2331, 2043, 1933, 1809, 1680, 1578, 1459, 1393, 1372, 1387, 1418, 1503, 1602, 1754, 1933, 2178, 2560, 2477, 2134, 1978, 1869, 1776, 1679, 1589, 1504, 1486, 1504, 1546, 1594, 1714, 1839, 2038, 2353, 2719, 2779, 2312, 2140, 1998, 1881, 1792, 1740, 1679, 1641, 1655, 1705, 1728, 1871, 2023, 2259, 2623, 3104]
                                       }
                                   }],
                               "tableAll_len":    14
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-007, 1.27247e-010]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [1.10626, 2.17975],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.64564, 1.89777],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.70829, 1.4609],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [2.14268, 1.31636],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [2.18436, 1.15934],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.866128, 2.47508],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.57269, 1.92802],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 8, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.65062, -0.476043, -0.174573, -0.252681, 1.59418, -0.341495, -0.336319, -1.08887, 2.42519],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.30121, -0.17912, -0.122095, -0.106996, 1.35383, -0.246837, -0.169749, -0.631026, 1.80077],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.04683, -1.01434, -0.0324923, -0.286773, 1.48091, -0.194138, -0.157876, -0.634831, 1.79271],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.62537, -0.622951, -0.00241973, -0.101319, 1.22423, -0.122909, -0.00696272, -0.340565, 1.34753],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.62984, -0.56722, -0.0626188, -0.163266, 1.55048, -0.387214, -0.122862, -0.556247, 1.67911],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.30424, -0.244374, -0.059864, -0.0224967, 1.32345, -0.300955, 0.00660585, -0.234838, 1.22823],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7, -0.6, -0.1, -0.05, 1.4, -0.35, 0.1, -0.6, 1.5],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3506, -0.302152, -0.0484505, 0.0219813, 1.29899, -0.320975, 0.0365105, -0.189285, 1.15277],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.71663, -0.672183, -0.0444444, -0.128123, 1.57469, -0.446566, -0.0943738, -0.41835, 1.51272],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.38141, -0.322387, -0.0590267, 0.0164696, 1.34096, -0.357432, 0.0406237, -0.133127, 1.0925],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.61086, -0.293558, -0.317301, -0.317235, 1.54019, -0.222954, -0.640574, -1.47557, 3.11614],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.24976, -0.0497035, -0.200052, -0.176695, 1.30843, -0.131738, -0.416867, -0.92278, 2.33965],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.76768, -0.71354, -0.054137, -0.211086, 1.48186, -0.270772, -0.162477, -0.697931, 1.86041],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.40848, -0.378722, -0.029762, -0.0556233, 1.24663, -0.191003, -0.0205305, -0.365704, 1.38623],
                                       "ccOffsets":    [0, 0, 0]
                                   }],
                               "matrixAll_len":    14
                           }
                       },
                       "lut3d_calib":    {
                           "common":    {
                               "enable":    0,
                               "mode":    "CALIB_Lut3D_MODE_AUTO",
                               "gain_tolerance":    0.1,
                               "wbgain_tolerance":    1
                           },
                           "MLut3D":    {
                               "Table":    {
                                   "look_up_table_r":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_g":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               }
                           },
                           "ALut3D":    {
                               "damp_en":    1,
                               "lutAll":    [{
                                       "name":    "Normal",
                                       "awbGain":    [1, 1],
                                       "gain_alpha":    {
                                           "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                           "alpha":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "Table":    {
                                           "look_up_table_r":    [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
                                           "look_up_table_g":    [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
                                           "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                       }
                                   }],
                               "lutAll_len":    1
                           }
                       },
                       "adehaze_calib_v30":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.2, 1.15, 1.1, 1.1, 1.1, 1.1, 1.1, 1, 1],
                                       "enhance_chroma_len":    9
                                   }
                               },
                               "hist_setting":    {
                                   "en":    0,
                                   "hist_para_en":    1,
                                   "HistData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "hist_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_gratio_len":    9,
                                       "hist_th_off":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "hist_th_off_len":    9,
                                       "hist_k":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_k_len":    9,
                                       "hist_min":    [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
                                       "hist_min_len":    9,
                                       "hist_scale":    [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
                                       "hist_scale_len":    9,
                                       "cfg_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "cfg_gratio_len":    9
                                   }
                               }
                           }
                       },
                       "adrc_calib_V2":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalSetting":    {
                                   "LocalData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "LocalAutoEnable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalAutoEnable_len":    13,
                                       "LocalAutoWeit":    [0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477],
                                       "LocalAutoWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 4224]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "af_v30":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_CONTINUOUS_PICTURE",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "win_v_size":    0,
                               "video_win_h_offs":    0,
                               "video_win_v_offs":    0,
                               "video_win_h_size":    0,
                               "video_win_v_size":    0,
                               "fixed_mode":    {
                                   "code":    8
                               },
                               "macro_mode":    {
                                   "code":    32
                               },
                               "infinity_mode":    {
                                   "code":    32
                               },
                               "contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "FullRangeTbl_len":    9,
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "AdaptRangeTbl_len":    9,
                                   "TrigThers":    [0.075],
                                   "TrigThers_len":    1,
                                   "TrigThersFv":    [0],
                                   "TrigThersFv_len":    1,
                                   "LumaTrigThers":    1,
                                   "ExpTrigThers":    1,
                                   "StableThers":    0.02,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    64,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "Stage1QuickFoundThers":    0.04,
                                   "Stage2QuickFoundThers":    0.2,
                                   "FlatValue":    0,
                                   "PointLightLumaTh":    3000,
                                   "PointLightCntTh":    300,
                                   "ZoomCfg":    {
                                       "QuickFoundThersZoomIdx":    [0],
                                       "QuickFoundThersZoomIdx_len":    1,
                                       "QuickFoundThers":    [0],
                                       "QuickFoundThers_len":    1,
                                       "SearchStepZoomIdx":    [0],
                                       "SearchStepZoomIdx_len":    1,
                                       "SearchStep":    [0],
                                       "SearchStep_len":    1,
                                       "StopStepZoomIdx":    [0],
                                       "StopStepZoomIdx_len":    1,
                                       "StopStep":    [0],
                                       "StopStep_len":    1,
                                       "SkipHighPassZoomIdx":    0,
                                       "SkipHighPassGain":    0
                                   }
                               },
                               "video_contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "FullRangeTbl_len":    9,
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "AdaptRangeTbl_len":    9,
                                   "TrigThers":    [0.15],
                                   "TrigThers_len":    1,
                                   "TrigThersFv":    [0],
                                   "TrigThersFv_len":    1,
                                   "LumaTrigThers":    1,
                                   "ExpTrigThers":    1,
                                   "StableThers":    0.02,
                                   "StableFrames":    20,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    64,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "Stage1QuickFoundThers":    0.04,
                                   "Stage2QuickFoundThers":    0.2,
                                   "FlatValue":    0,
                                   "PointLightLumaTh":    3000,
                                   "PointLightCntTh":    300,
                                   "ZoomCfg":    {
                                       "QuickFoundThersZoomIdx":    [0],
                                       "QuickFoundThersZoomIdx_len":    1,
                                       "QuickFoundThers":    [0],
                                       "QuickFoundThers_len":    1,
                                       "SearchStepZoomIdx":    [0],
                                       "SearchStepZoomIdx_len":    1,
                                       "SearchStep":    [0],
                                       "SearchStep_len":    1,
                                       "StopStepZoomIdx":    [0],
                                       "StopStepZoomIdx_len":    1,
                                       "StopStep":    [0],
                                       "StopStep_len":    1,
                                       "SkipHighPassZoomIdx":    0,
                                       "SkipHighPassGain":    0
                                   }
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0,
                                   "pdVsCdDebug":    0,
                                   "pdDataBit":    10,
                                   "pdBlkLevel":    64,
                                   "pdSearchRadius":    3,
                                   "pdMirrorInCalib":    1,
                                   "pdWidth":    508,
                                   "pdHeight":    760,
                                   "pdIsoPara": 
                                   [
                                       {
                                           "iso": 50,
                                           "pdNoiseFactor":    0.15,
                                           "pdConfdRatio1":    1,
                                           "pdConfdRatio2":    1,
                                           "pdConfdThresh":    0.4,
                                           "defocusPdThresh":    18,
                                           "stablePdRatio":    0.125,
                                           "stablePdOffset":    8,
                                           "stableCntRatio":    1.5,
                                           "noconfCntThresh":    4,
                                           "fineSearchTbl":    [{
                                               "confidence":    512,
                                               "range":    4,
                                               "stepPos":    1
                                           }, {
                                               "confidence":    256,
                                               "range":    8,
                                               "stepPos":    2
                                           }],
                                           "fineSearchTbl_len":    2
                                       }
                                   ],
                                   "pdIsoPara_len":    1
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0,
                                   "posture_diff":    0.1
                               },
                               "zoomfocus_tbl":    {
                                   "widemod_deviate":    10,
                                   "telemod_deviate":    10,
                                   "zoom_move_dot":    [0],
                                   "zoom_move_dot_len":    1,
                                   "zoom_move_step":    [16],
                                   "zoom_move_step_len":    1,
                                   "focal_length":    [0],
                                   "focal_length_len":    1,
                                   "zoomcode":    [0],
                                   "zoomcode_len":    1,
                                   "focuscode":    [{
                                           "pos":    0.5,
                                           "code":    [0],
                                           "code_len":    1
                                       }, {
                                           "pos":    -1,
                                           "code":    [0],
                                           "code_len":    1
                                       }],
                                   "focuscode_len":    2,
                                   "ZoomSearchTbl":    [0],
                                   "ZoomSearchTbl_len":    1,
                                   "ZoomSearchRefCurveIdx":    0,
                                   "FocusSearchMargin":    50,
                                   "FocusSearchPlusRange":    [0],
                                   "FocusSearchPlusRange_len":    1,
                                   "FocusStage1Step":    1,
                                   "searchZoomRange":    100,
                                   "searchFocusRange":    100,
                                   "searchEmax":    100,
                                   "searchEavg":    100,
                                   "IsZoomFocusRec":    0,
                                   "ZoomInfoDir":    "/userdata"
                               },
                               "zoom_meas":    [{
                                       "zoom_idx":    0,
                                       "measiso":    [{
                                               "iso":    50,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    100,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    200,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    400,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    800,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    1600,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    3200,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    6400,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    12800,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    25600,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    51200,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    102400,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }, {
                                               "iso":    204800,
                                               "idx":    1,
                                               "spotlt_scene_idx":    1
                                           }]
                                   }],
                               "zoom_meas_len":    1,
                               "meascfg_tbl":    [{
                                       "tbl_idx":    0,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "v1_fir_sel":    1,
                                       "v1_iir_coe":    [0, 503, 0, 0, 8, 0, 0, 9, 0],
                                       "v1_fir_coe":    [-1997, 0, 1997],
                                       "v2_iir_coe":    [476, 33, 34],
                                       "v2_fir_coe":    [-985, 0, 985],
                                       "h1_iir1_coe":    [512, 557, -276, 460, 0, -460],
                                       "h1_iir2_coe":    [512, 870, -399, 37, 0, -37],
                                       "h2_iir1_coe":    [512, 557, -276, 460, 0, -460],
                                       "h2_iir2_coe":    [512, 870, -399, 37, 0, -37],
                                       "ldg_en":    0,
                                       "ve_ldg_lumth_l":    64,
                                       "ve_ldg_gain_l":    28,
                                       "ve_ldg_gslp_l":    1286,
                                       "ve_ldg_lumth_h":    185,
                                       "ve_ldg_gain_h":    8,
                                       "ve_ldg_gslp_h":    1400,
                                       "ho_ldg_lumth_l":    64,
                                       "ho_ldg_gain_l":    28,
                                       "ho_ldg_gslp_l":    1286,
                                       "ho_ldg_lumth_h":    185,
                                       "ho_ldg_gain_h":    8,
                                       "ho_ldg_gslp_h":    1400,
                                       "v_fv_thresh":    4,
                                       "h_fv_thresh":    4,
                                       "highlit_thresh":    912
                                   },
                                   {
                                       "tbl_idx":    1,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "v1_fir_sel":    1,
                                       "v1_iir_coe":    [0, 503, 0, 0, 8, 0, 0, 9, 0],
                                       "v1_fir_coe":    [-1997, 0, 1997],
                                       "v2_iir_coe":    [476, 33, 34],
                                       "v2_fir_coe":    [-985, 0, 985],
                                       "h1_iir1_coe":    [512, 811, -375, 266, 0, -266],
                                       "h1_iir2_coe":    [250, 945, -448, 41, 0, -41],
                                       "h2_iir1_coe":    [512, 557, -276, 460, 0, -460],
                                       "h2_iir2_coe":    [512, 870, -399, 37, 0, -37],
                                       "ldg_en":    0,
                                       "ve_ldg_lumth_l":    64,
                                       "ve_ldg_gain_l":    28,
                                       "ve_ldg_gslp_l":    1286,
                                       "ve_ldg_lumth_h":    185,
                                       "ve_ldg_gain_h":    8,
                                       "ve_ldg_gslp_h":    1400,
                                       "ho_ldg_lumth_l":    64,
                                       "ho_ldg_gain_l":    28,
                                       "ho_ldg_gslp_l":    1286,
                                       "ho_ldg_lumth_h":    185,
                                       "ho_ldg_gain_h":    8,
                                       "ho_ldg_gslp_h":    1400,
                                       "v_fv_thresh":    4,
                                       "h_fv_thresh":    4,
                                       "highlit_thresh":    912
                                   }],
                               "meascfg_tbl_len":    2
                           }
                       },
                       "amerge_calib_V2":    {
                           "MergeTuningPara":    {
                               "BaseFrm":    "BASEFRAME_LONG",
                               "ByPassThr":    0,
                               "LongFrmModeData":    {
                                   "OECurve":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "Smooth_len":    13,
                                       "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "Offset_len":    13
                                   },
                                   "MDCurve":    {
                                       "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "MoveCoef_len":    13,
                                       "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "LM_smooth_len":    13,
                                       "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                       "LM_offset_len":    13,
                                       "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "MS_smooth_len":    13,
                                       "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                       "MS_offset_len":    13
                                   },
                                   "OECurve_damp":    0.3,
                                   "MDCurveLM_damp":    0.3,
                                   "MDCurveMS_damp":    0.3
                               },
                               "ShortFrmModeData":    {
                                   "OECurve":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "Smooth_len":    13,
                                       "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "Offset_len":    13
                                   },
                                   "MDCurve":    {
                                       "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "MoveCoef_len":    13,
                                       "Coef":    [0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05],
                                       "Coef_len":    13,
                                       "ms_thd0":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "ms_thd0_len":    13,
                                       "lm_thd0":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "lm_thd0_len":    13
                                   },
                                   "OECurve_damp":    0.3,
                                   "MDCurve_damp":    0.3
                               }
                           }
                       },
                       "cac_calib":    {
                           "SettingPara":    {
                               "enable":    0,
                               "psf_path":    "/etc/iqfiles/cac/cac_map_64x48x34_br0.bin",
                               "psf_shift_bits":    2,
                               "center_en":    0,
                               "center_x":    0,
                               "center_y":    0
                           },
                           "TuningPara":    {
                               "SettingByIso":    [{
                                       "iso":    50,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    100,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    1600,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    3200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    6400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    12800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    25600,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    51200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    102400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    204800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    422400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }],
                               "SettingByIso_len":    14
                           }
                       },
                       "bayer2dnr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [328, 286, 246, 209, 148, 107, 92, 100, 115, 128, 134, 133, 123, 105, 87, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [500, 428, 361, 298, 188, 107, 87, 114, 153, 182, 197, 197, 181, 151, 107, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [659, 567, 482, 403, 267, 173, 144, 172, 214, 247, 263, 260, 237, 195, 136, 87]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [661, 586, 518, 456, 357, 295, 269, 270, 282, 293, 296, 285, 262, 224, 178, 137]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1255, 1216]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.7,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    1.3,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.8,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    0.92
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "bayertnr_v2":    {
                           "Version":    "V2",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [328, 286, 246, 209, 148, 107, 92, 100, 115, 128, 134, 133, 123, 105, 87, 87],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [328, 286, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [500, 428, 361, 298, 188, 107, 87, 114, 153, 182, 197, 197, 181, 151, 107, 87],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [493, 426, 362, 303, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263, 263]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [659, 567, 482, 403, 267, 173, 144, 172, 214, 247, 263, 260, 237, 195, 136, 87],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [573, 521, 472, 426, 349, 342, 342, 342, 342, 342, 346, 344, 342, 342, 342, 342]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [661, 586, 518, 456, 357, 295, 269, 270, 282, 293, 296, 285, 262, 224, 178, 137],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [575, 532, 492, 457, 401, 365, 351, 351, 358, 365, 366, 360, 346, 343, 343, 343]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [804, 726, 656, 594, 497, 434, 403, 394, 393, 392, 383, 363, 330, 286, 238, 205],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [40, 42, 44, 45, 46, 46, 46, 44, 42, 40, 37, 35, 32, 32, 32, 32],
                                               "hi_sigma":    [645, 612, 583, 557, 516, 490, 477, 473, 473, 472, 469, 460, 446, 428, 415, 415]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 51, 61, 65, 66, 64, 59, 52, 43, 32, 32, 32, 32],
                                               "hi_sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [36, 36, 36, 45, 63, 70, 72, 71, 67, 63, 58, 53, 50, 47, 45, 43],
                                               "hi_sigma":    [499, 476, 457, 440, 415, 398, 387, 379, 370, 361, 348, 332, 311, 287, 269, 269]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [34, 38, 47, 53, 61, 66, 69, 70, 71, 71, 71, 70, 68, 65, 61, 53],
                                               "hi_sigma":    [663, 641, 621, 603, 576, 558, 546, 539, 533, 527, 519, 508, 493, 475, 454, 433]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [75, 78, 80, 81, 80, 78, 77, 78, 82, 88, 95, 102, 108, 111, 111, 103],
                                               "hi_sigma":    [973, 945, 919, 897, 862, 840, 828, 824, 822, 821, 817, 810, 799, 783, 763, 743]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [81, 95, 103, 109, 115, 118, 118, 117, 114, 110, 106, 102, 97, 93, 88, 83],
                                               "hi_sigma":    [1438, 1418, 1402, 1389, 1374, 1369, 1369, 1370, 1369, 1363, 1352, 1333, 1307, 1273, 1227, 1208]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1055, 1016],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [228, 232, 235, 237, 237, 236, 233, 229, 225, 221, 218, 216, 213, 211, 207, 200],
                                               "hi_sigma":    [1586, 1615, 1642, 1666, 1706, 1737, 1758, 1770, 1772, 1765, 1749, 1724, 1690, 1647, 1596, 1542]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3136, 4224, 5120, 3136, 7168, 4224, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0.09
                                           }, {
                                               "iso":    100,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0.09
                                           }, {
                                               "iso":    200,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.2,
                                               "hi_filter_strength":    1.2,
                                               "soft_threshold_ratio":    0.09
                                           }, {
                                               "iso":    400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.4,
                                               "hi_filter_strength":    1.4,
                                               "soft_threshold_ratio":    0.08
                                           }, {
                                               "iso":    800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0.07
                                           }, {
                                               "iso":    1600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    3200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    6400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    12800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    25600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    51200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    102400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    204800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    100,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    0.8,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    200,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.3,
                                               "hi_filter_strength":    1.3,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    1600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    3200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    6400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    12800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    25600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    51200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    102400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    204800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v2":    {
                           "Version":    "V2",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    14,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    14,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    20,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v3":    {
                           "Version":    "V3",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-4.00407e-013, 4.08112e-009, -1.55227e-005, 0.0212424, 19.0322],
                                               "ynr_lci":    0.234835,
                                               "ynr_hci":    0.21531
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-8.58324e-013, 8.22496e-009, -2.89619e-005, 0.0381718, 21.9954],
                                               "ynr_lci":    0.233403,
                                               "ynr_hci":    0.208403
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.08262e-012, 1.07161e-008, -3.91802e-005, 0.052763, 29.4559],
                                               "ynr_lci":    0.233233,
                                               "ynr_hci":    0.197518
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.66684e-012, 1.61692e-008, -5.61505e-005, 0.0688079, 41.3689],
                                               "ynr_lci":    0.239081,
                                               "ynr_hci":    0.188512
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-2.66001e-012, 2.52211e-008, -8.4405e-005, 0.0981532, 58.0438],
                                               "ynr_lci":    0.240317,
                                               "ynr_hci":    0.183977
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.65677e-012, 1.3799e-008, -3.89045e-005, 0.0398789, 31.7414],
                                               "ynr_lci":    0.261701,
                                               "ynr_hci":    0.217753
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-2.7329e-012, 2.22519e-008, -6.04135e-005, 0.0580665, 46.058],
                                               "ynr_lci":    0.263882,
                                               "ynr_hci":    0.21407
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-3.68924e-012, 2.8985e-008, -7.35895e-005, 0.0593183, 78.7866],
                                               "ynr_lci":    0.253759,
                                               "ynr_hci":    0.207854
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-6.79955e-012, 5.35954e-008, -0.000136877, 0.113719, 106.702],
                                               "ynr_lci":    0.261677,
                                               "ynr_hci":    0.206287
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-1.04235e-011, 8.30699e-008, -0.000214992, 0.174099, 165.13],
                                               "ynr_lci":    0.238196,
                                               "ynr_hci":    0.189897
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-1.56028e-011, 1.28796e-007, -0.000360655, 0.360025, 166.39],
                                               "ynr_lci":    0.248733,
                                               "ynr_hci":    0.18978
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.6,
                                               "low_bf2":    0.7,
                                               "low_thred_adj":    0.6,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.2,
                                               "low_bf2":    1.2,
                                               "low_thred_adj":    0.7,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    2.3,
                                               "low_bf2":    2.3,
                                               "low_thred_adj":    0.9,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.75,
                                               "low_filt2_strength":    0.8,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    2.5,
                                               "low_bf2":    2.5,
                                               "low_thred_adj":    1.3,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.2,
                                               "low_center_weight":    0.25,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.55,
                                               "low_filt1_strength":    0.82,
                                               "low_filt2_strength":    0.7,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    2.6,
                                               "low_bf2":    2.7,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.25,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.58,
                                               "low_filt1_strength":    0.75,
                                               "low_filt2_strength":    0.8,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.65,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.3,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.75,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.5,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.5,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.7,
                                               "low_bf2":    0.7,
                                               "low_thred_adj":    0.7,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1,
                                               "low_bf2":    1,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.7,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.3,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.45,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v4":    {
                           "Version":    "V4",
                           "TuningPara":    {
                               "enable":    1,
                               "kernel_sigma_enable": 0,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    9,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 256, 512, 640, 256, 96],
                                                   "local_sharp_strength":    [256, 280, 512, 1023, 1023, 1023, 512, 350]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.35,
                                               "bf_ratio":    0.4,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 256, 512, 640, 256, 96],
                                                   "local_sharp_strength":    [220, 280, 350, 512, 700, 800, 512, 350]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    7,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.45,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [80, 96, 128, 256, 512, 640, 256, 96],
                                                   "local_sharp_strength":    [220, 280, 350, 512, 700, 800, 512, 350]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6.5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.55,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 56, 48, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 256, 512, 640, 256, 96],
                                                   "local_sharp_strength":    [220, 280, 350, 512, 700, 800, 512, 350]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.55,
                                               "bf_ratio":    0.7,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 256, 512, 640, 256, 96],
                                                   "local_sharp_strength":    [220, 280, 350, 512, 700, 800, 512, 350]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.7,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 36, 32],
                                                   "hf_clip":    [48, 80, 120, 140, 160, 140, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 140, 120, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 160, 120, 100, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 86, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 48, 64, 80, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    1,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 56, 48, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.6,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 56, 48, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.7,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.7,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 36, 32],
                                                   "hf_clip":    [48, 80, 120, 140, 160, 140, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 140, 120, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 160, 120, 100, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 86, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 48, 64, 80, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    1,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 56, 48, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    ["ENABLE_AE"],
           "enable_algos_len":    1
       }
   }
}