hc
2023-08-21 fc437ccf3419c424092701f3d883215fa4552a8b
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
{
   "sensor_calib":    {
       "resolution":    {
           "width":    2560,
           "height":    1440
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 16, 128, 0, 1, 128, 2047],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    16
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    4,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 4]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "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":    3.5,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    2
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    1
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    1.6,
           "EFL":    5.2,
           "LensT":    90,
           "IRCutT":    90
       }
   },
   "main_scene":    [{
           "name":    "normal",
           "sub_scene":    [{
                   "name":    "day",
                   "scene_isp21":    {
                       "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":    [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.02,
                                       "GainValue":    6,
                                       "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":    {
                                   "DampOver":    0.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    2,
                                   "WhiteDelay":    2
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    24
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.0286, 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.04],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 8, 15.5, 16],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 2],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.032, 0.064, 0.192, 0.32, 0.448],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [45, 45, 45, 45, 45, 45],
                                   "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.032, 0.064, 0.128, 0.192, 0.32, 0.448],
                                       "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.2222, 1, 1, 3.3637],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    0,
                               "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.333363, 0.333572, 0.333065],
                                   "rotationMat":    [-0.577057, 0.816704, -0.18687, 0.816704, 0.577057, 0.568041, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.048828, 0.138672, 0.013672, 27.375, -0.085938, 0.007813, 0.074219, 129, 0.046875, -0.066406, 0.048828, 114.875, 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":    1,
                                   "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":    8192,
                                           "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.2222, 1, 1, 3.3637],
                                       "uvRegion":    {
                                           "u":    [121.976, 43.9368, 45.7415, 121.986],
                                           "v":    [126.968, 134.072, 110.219, 125.354]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.6307, -1.1186, 0.1397, -0.0996],
                                           "big":    [-1.6307, -1.1186, 0.1949, -0.1642]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [76, 140, 396, 524, 780, 1292],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 134.562, 114.812, 186.75, 95.625, 116.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.915, 1, 1, 2.9291],
                                       "uvRegion":    {
                                           "u":    [55.5743, 62.4989, 123.359, 122.53],
                                           "v":    [85.7512, 70.9633, 122.865, 124.146]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.8572, -0.5424, 0.0501, -0.2306],
                                           "big":    [-0.8572, -0.5405, 0.0501, -0.2865]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [55, 119, 247, 503, 759, 1015],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 132.062, 116, 190.188, 117.062, 107.375],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.858, 1, 1, 1.9446],
                                       "uvRegion":    {
                                           "u":    [61.5097, 74.994, 124.434, 122.838],
                                           "v":    [72.9471, 50.8406, 121.31, 122.66]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.55, -0.1663, 0.2364, -0.1772],
                                           "big":    [-0.5533, -0.1663, 0.3076, -0.2866]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [37, 101, 229, 357, 613, 869],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 131.188, 115.938, 191, 128.125, 114.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.1624, 1, 1, 1.6229],
                                       "uvRegion":    {
                                           "u":    [75.0367, 96.2667, 126.041, 124.436],
                                           "v":    [50.9081, 34.7643, 120.468, 121.305]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.1663, 0.1483, 0.2712, -0.1791],
                                           "big":    [-0.1663, 0.1483, 0.3538, -0.2815]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [17, 81, 209, 337, 593, 849],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 129.75, 115.75, 190.562, 142.25, 113.5],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.5737, 1, 1, 2.8842],
                                       "uvRegion":    {
                                           "u":    [125.821, 95.6112, 115.06, 128.45],
                                           "v":    [120.612, 35.0259, 26.3192, 119.599]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.1028, 0.4859, 0.2204, -0.2064],
                                           "big":    [0.1005, 0.4859, 0.368, -0.3114]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [60, 124, 252, 508, 764, 1020],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 129.438, 115.688, 190, 148.75, 117.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.9039, 1, 1, 2.4396],
                                       "uvRegion":    {
                                           "u":    [122.897, 49.5, 43.9368, 122.167],
                                           "v":    [129.929, 156.5, 133.827, 126.881]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.964, -1.6161, 0.1366, -0.1239],
                                           "big":    [-1.964, -1.6137, 0.1946, -0.1678]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 134.562, 115.562, 184.438, 86.3125, 118.812],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.2934, 1, 1, 1.9121],
                                       "uvRegion":    {
                                           "u":    [121.968, 45.3832, 55.904, 122.777],
                                           "v":    [125.503, 110.897, 84.4889, 123.593]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.1249, -0.5549, 0.2364, -0.0938],
                                           "big":    [-1.1249, -0.5549, 0.3076, -0.1619]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0, 0, 1, 1, 2, 4],
                                           "lineVector":    [10, 132.875, 115.438, 189.688, 111.438, 111.938],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.858, 1, 1, 1.9446],
                                       "defaultDayGainHigh":    [2.1624, 1, 1, 1.6229],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0.05, 0.05, 0.05, 0.05],
                                   "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":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    8192,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    65536,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -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.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 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.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }],
                                   "lutAll_len":    3
                               },
                               "wbGainDaylightClip":    {
                                   "enable":    0,
                                   "outdoor_cct_min":    5000
                               },
                               "wbGainClip":    {
                                   "enable":    0,
                                   "cct":    [1000, 2856, 4100, 6500, 7500],
                                   "cct_len":    5,
                                   "cri_bound_up":    [0.091, 0.091, 0.18, 0.12, 0.12],
                                   "cri_bound_up_len":    5,
                                   "cri_bound_low":    [0.07, 0.07, 0.16, 0.16, 0.16],
                                   "cri_bound_low_len":    5
                               },
                               "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.858, 1, 1, 1.9446],
                               "lumaValueMatrix":    [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 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":    4.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":    32.3156,
                                           "meanH":    37.7583
                                       }, {
                                           "index":    13,
                                           "meanC":    31.2851,
                                           "meanH":    -70.1766
                                       }, {
                                           "index":    5,
                                           "meanC":    14.8032,
                                           "meanH":    -62.9078
                                       }, {
                                           "index":    10,
                                           "meanC":    15.4589,
                                           "meanH":    -40.1601
                                       }, {
                                           "index":    14,
                                           "meanC":    21.6245,
                                           "meanH":    150.057
                                       }, {
                                           "index":    16,
                                           "meanC":    40.9852,
                                           "meanH":    95.0539
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.22222,
                                           "BGain":    3.36367
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.57366,
                                           "BGain":    2.8842
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.858,
                                           "BGain":    1.94465
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8799, -0.4752, -2.6739],
                               "lineRgProjCCT":    [1, -0.0003, 0.4853],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.1624, 1, 1, 1.6229],
                                   "laCalcFactor":    40
                               },
                               "remosaicCfg":    {
                                   "enable":    0,
                                   "applyInvWbGainEnable":    1,
                                   "sensorWbGain":    [1, 1, 1, 1]
                               },
                               "wbGainOffset":    {
                                   "enable":    0,
                                   "offset":    [0, 0, 0, 0]
                               }
                           }
                       },
                       "agamma_calib":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_segnum":    "GAMMATYPE_LOG",
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 6, 12, 18, 24, 30, 36, 42, 48, 60, 73, 85, 97, 121, 145, 169, 193, 241, 289, 337, 384, 478, 571, 662, 752, 923, 1085, 1233, 1366, 1584, 1750, 1879, 1988, 2185, 2354, 2491, 2604, 2790, 2941, 3075, 3214, 3467, 3708, 3915, 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":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [256, 256, 256, 256, 256, 256, 256, 266, 256, 256, 256, 256, 256],
                                   "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],
                                   "ISO_len":    9,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    9,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    9,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    9,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    9,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    9,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    9,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    9,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    9,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    9,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    9,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    9,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    9,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    9,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    9,
                                   "noiseCurve_0":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_0_len":    9,
                                   "noiseCurve_1":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_1_len":    9,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    9,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    9,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    9,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    9
                               }
                           }
                       },
                       "adehaze_calib_v21":    {
                           "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.25, 1.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 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
                                   }
                               }
                           }
                       },
                       "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":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 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
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "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
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "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
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "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,
                                       "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, 8192]
                               },
                               "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
                           }
                       },
                       "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
                           }
                       },
                       "orb":    {
                           "param":    {
                               "orb_en":    0
                           }
                       },
                       "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":    "2560x1440",
                                       "lsc_sect_size_x":    [160, 160, 160, 160, 160, 160, 160, 160],
                                       "lsc_sect_size_y":    [90, 90, 90, 90, 90, 90, 90, 90]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [1.1611, 3.6509],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.8784, 3.0947],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.8276, 2.1755],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [2.1076, 1.7366],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [2.238, 1.606],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.9618, 4.3263],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.5375, 2.9175],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 100, 100],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 10, 31, 64],
                                       "gains_len":    4,
                                       "vig":    [90, 60, 25, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "2560x1440_A_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2442, 2000, 1709, 1541, 1421, 1328, 1275, 1231, 1228, 1242, 1269, 1322, 1407, 1524, 1687, 2008, 2429, 2343, 1926, 1653, 1490, 1389, 1292, 1244, 1199, 1189, 1197, 1234, 1290, 1366, 1486, 1643, 1911, 2321, 2239, 1853, 1612, 1477, 1359, 1267, 1210, 1185, 1158, 1169, 1212, 1264, 1350, 1458, 1612, 1846, 2239, 2193, 1818, 1596, 1452, 1338, 1259, 1188, 1155, 1142, 1152, 1186, 1249, 1330, 1445, 1578, 1799, 2157, 2117, 1773, 1571, 1428, 1320, 1230, 1177, 1137, 1121, 1129, 1165, 1228, 1315, 1425, 1567, 1761, 2117, 2055, 1741, 1546, 1413, 1296, 1216, 1151, 1107, 1091, 1103, 1142, 1204, 1291, 1400, 1550, 1736, 2047, 2029, 1705, 1516, 1382, 1274, 1193, 1125, 1086, 1064, 1081, 1116, 1184, 1271, 1378, 1524, 1715, 2006, 1995, 1684, 1498, 1365, 1256, 1169, 1100, 1058, 1044, 1054, 1096, 1161, 1251, 1356, 1487, 1674, 1966, 1963, 1658, 1471, 1346, 1227, 1149, 1082, 1035, 1024, 1040, 1076, 1141, 1227, 1338, 1471, 1644, 1935, 1924, 1640, 1461, 1329, 1224, 1137, 1075, 1027, 1010, 1025, 1069, 1129, 1217, 1326, 1465, 1631, 1924, 1955, 1636, 1460, 1330, 1220, 1138, 1076, 1024, 1012, 1027, 1065, 1132, 1222, 1325, 1449, 1626, 1933, 1964, 1649, 1472, 1341, 1240, 1154, 1089, 1049, 1034, 1044, 1074, 1146, 1227, 1335, 1468, 1663, 1942, 2034, 1691, 1493, 1354, 1258, 1178, 1116, 1066, 1054, 1068, 1103, 1164, 1253, 1357, 1497, 1691, 1995, 2078, 1736, 1531, 1394, 1285, 1205, 1139, 1103, 1082, 1097, 1131, 1193, 1282, 1384, 1536, 1730, 2095, 2180, 1796, 1567, 1429, 1323, 1241, 1175, 1135, 1125, 1121, 1169, 1236, 1314, 1426, 1571, 1802, 2171, 2267, 1863, 1614, 1474, 1363, 1270, 1211, 1176, 1158, 1174, 1214, 1276, 1360, 1474, 1619, 1856, 2267, 2332, 1938, 1676, 1499, 1400, 1295, 1237, 1199, 1177, 1204, 1240, 1316, 1393, 1499, 1660, 1946, 2332]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2291, 1887, 1617, 1472, 1369, 1288, 1239, 1212, 1208, 1200, 1242, 1298, 1372, 1465, 1613, 1870, 2263, 2179, 1818, 1574, 1439, 1347, 1265, 1218, 1183, 1172, 1177, 1210, 1267, 1339, 1436, 1574, 1802, 2163, 2110, 1764, 1552, 1427, 1329, 1248, 1192, 1158, 1146, 1156, 1188, 1244, 1310, 1421, 1548, 1754, 2095, 2039, 1736, 1525, 1402, 1309, 1232, 1172, 1142, 1130, 1142, 1178, 1228, 1307, 1411, 1535, 1713, 2032, 2024, 1691, 1508, 1391, 1294, 1223, 1158, 1131, 1114, 1123, 1155, 1215, 1290, 1388, 1515, 1691, 2005, 1965, 1680, 1496, 1380, 1278, 1195, 1143, 1100, 1087, 1097, 1141, 1197, 1274, 1378, 1499, 1672, 1941, 1925, 1647, 1482, 1353, 1258, 1179, 1121, 1080, 1068, 1071, 1114, 1172, 1258, 1360, 1488, 1655, 1920, 1887, 1625, 1463, 1336, 1235, 1161, 1101, 1058, 1043, 1059, 1094, 1159, 1229, 1334, 1460, 1618, 1870, 1863, 1606, 1434, 1315, 1221, 1140, 1083, 1042, 1024, 1040, 1072, 1136, 1219, 1315, 1434, 1598, 1853, 1854, 1588, 1426, 1305, 1213, 1133, 1075, 1030, 1018, 1028, 1067, 1131, 1206, 1303, 1423, 1595, 1849, 1843, 1579, 1423, 1307, 1210, 1128, 1075, 1035, 1019, 1029, 1072, 1128, 1212, 1307, 1420, 1593, 1854, 1895, 1600, 1433, 1325, 1226, 1154, 1092, 1053, 1039, 1056, 1080, 1139, 1224, 1316, 1441, 1600, 1867, 1931, 1637, 1458, 1345, 1249, 1169, 1112, 1075, 1058, 1077, 1112, 1165, 1249, 1340, 1467, 1637, 1931, 2000, 1682, 1502, 1373, 1279, 1203, 1144, 1107, 1092, 1109, 1144, 1199, 1282, 1373, 1499, 1682, 2019, 2081, 1754, 1537, 1421, 1315, 1242, 1183, 1149, 1132, 1137, 1173, 1231, 1312, 1415, 1541, 1740, 2067, 2195, 1818, 1586, 1448, 1352, 1281, 1220, 1179, 1166, 1188, 1218, 1272, 1352, 1451, 1586, 1818, 2171, 2237, 1876, 1617, 1462, 1374, 1295, 1242, 1206, 1200, 1214, 1248, 1295, 1374, 1472, 1626, 1864, 2219]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2260, 1876, 1640, 1478, 1369, 1294, 1236, 1205, 1207, 1213, 1243, 1287, 1372, 1475, 1615, 1876, 2296, 2185, 1813, 1573, 1445, 1348, 1271, 1211, 1190, 1173, 1181, 1215, 1268, 1342, 1439, 1577, 1803, 2185, 2116, 1770, 1544, 1421, 1321, 1249, 1196, 1160, 1148, 1162, 1192, 1245, 1321, 1427, 1554, 1760, 2094, 2045, 1724, 1525, 1406, 1313, 1236, 1183, 1144, 1136, 1141, 1176, 1234, 1310, 1411, 1542, 1728, 2045, 2004, 1701, 1514, 1402, 1291, 1219, 1162, 1128, 1114, 1127, 1162, 1211, 1291, 1394, 1521, 1697, 2004, 1971, 1670, 1506, 1379, 1282, 1197, 1147, 1107, 1088, 1101, 1142, 1199, 1278, 1379, 1515, 1686, 1965, 1920, 1646, 1492, 1356, 1262, 1181, 1123, 1082, 1063, 1080, 1117, 1183, 1262, 1359, 1492, 1654, 1920, 1882, 1624, 1455, 1328, 1245, 1156, 1103, 1059, 1043, 1060, 1098, 1160, 1241, 1337, 1461, 1628, 1893, 1864, 1601, 1434, 1321, 1225, 1142, 1084, 1035, 1024, 1043, 1077, 1143, 1219, 1314, 1440, 1605, 1854, 1855, 1590, 1423, 1309, 1211, 1138, 1073, 1030, 1016, 1030, 1073, 1135, 1208, 1309, 1432, 1587, 1850, 1850, 1592, 1426, 1311, 1216, 1135, 1078, 1035, 1015, 1027, 1065, 1133, 1214, 1306, 1424, 1596, 1860, 1885, 1611, 1439, 1327, 1234, 1144, 1094, 1051, 1040, 1051, 1079, 1146, 1220, 1320, 1442, 1607, 1879, 1943, 1631, 1464, 1348, 1253, 1167, 1114, 1072, 1062, 1079, 1112, 1173, 1244, 1343, 1473, 1635, 1926, 2019, 1684, 1488, 1384, 1281, 1197, 1146, 1103, 1094, 1105, 1141, 1197, 1281, 1373, 1498, 1680, 1999, 2094, 1741, 1533, 1413, 1318, 1237, 1186, 1146, 1136, 1141, 1177, 1235, 1311, 1410, 1540, 1746, 2087, 2177, 1834, 1577, 1454, 1353, 1266, 1217, 1183, 1170, 1183, 1215, 1273, 1353, 1445, 1581, 1818, 2185, 2224, 1899, 1623, 1484, 1378, 1296, 1241, 1197, 1193, 1205, 1249, 1299, 1375, 1488, 1640, 1882, 2251]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2199, 1827, 1557, 1403, 1338, 1251, 1219, 1195, 1172, 1182, 1211, 1266, 1338, 1457, 1598, 1827, 2199, 2088, 1739, 1538, 1413, 1314, 1255, 1203, 1182, 1166, 1168, 1203, 1248, 1323, 1434, 1551, 1774, 2088, 2048, 1719, 1516, 1398, 1305, 1234, 1192, 1159, 1144, 1159, 1192, 1241, 1321, 1428, 1540, 1752, 2048, 1979, 1679, 1501, 1379, 1299, 1224, 1171, 1140, 1127, 1140, 1184, 1231, 1315, 1408, 1536, 1709, 2002, 1910, 1693, 1493, 1385, 1282, 1217, 1166, 1130, 1117, 1125, 1172, 1224, 1305, 1413, 1527, 1724, 1994, 1897, 1658, 1480, 1375, 1276, 1206, 1151, 1112, 1089, 1106, 1134, 1219, 1306, 1412, 1525, 1687, 1937, 1859, 1605, 1462, 1362, 1258, 1185, 1127, 1085, 1063, 1090, 1111, 1185, 1273, 1379, 1505, 1660, 1897, 1816, 1602, 1450, 1327, 1244, 1161, 1096, 1071, 1045, 1061, 1101, 1173, 1237, 1361, 1471, 1642, 1908, 1768, 1554, 1433, 1321, 1225, 1140, 1082, 1048, 1024, 1039, 1077, 1146, 1232, 1338, 1443, 1592, 1855, 1764, 1539, 1410, 1311, 1216, 1126, 1070, 1019, 1013, 1032, 1075, 1132, 1223, 1311, 1440, 1589, 1852, 1770, 1554, 1412, 1295, 1209, 1120, 1074, 1027, 1008, 1022, 1054, 1137, 1209, 1311, 1442, 1592, 1805, 1804, 1564, 1428, 1299, 1225, 1138, 1095, 1050, 1030, 1045, 1074, 1138, 1225, 1324, 1459, 1603, 1840, 1815, 1595, 1450, 1331, 1230, 1165, 1108, 1056, 1045, 1061, 1114, 1165, 1266, 1340, 1482, 1635, 1890, 1916, 1649, 1457, 1361, 1268, 1184, 1135, 1079, 1067, 1095, 1123, 1184, 1291, 1379, 1513, 1694, 1958, 1978, 1703, 1492, 1398, 1305, 1213, 1160, 1123, 1115, 1100, 1147, 1227, 1313, 1418, 1540, 1719, 2001, 2038, 1756, 1538, 1413, 1306, 1248, 1190, 1162, 1141, 1162, 1203, 1271, 1359, 1444, 1577, 1791, 2141, 2141, 1808, 1598, 1446, 1347, 1266, 1211, 1155, 1152, 1182, 1241, 1308, 1376, 1479, 1612, 1847, 2141]
                                       }
                                   }, {
                                       "name":    "2560x1440_A_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2555, 1876, 1620, 1460, 1320, 1249, 1216, 1191, 1180, 1186, 1211, 1258, 1348, 1472, 1672, 1957, 3136, 2170, 1812, 1568, 1399, 1282, 1235, 1182, 1162, 1154, 1169, 1193, 1239, 1312, 1441, 1620, 1909, 2790, 2058, 1713, 1501, 1327, 1228, 1182, 1152, 1129, 1128, 1134, 1162, 1201, 1267, 1374, 1523, 1802, 2179, 1953, 1651, 1442, 1291, 1223, 1167, 1131, 1107, 1098, 1111, 1147, 1174, 1244, 1344, 1481, 1734, 2083, 1896, 1605, 1396, 1265, 1208, 1151, 1111, 1098, 1089, 1092, 1118, 1166, 1236, 1311, 1448, 1690, 1974, 1834, 1571, 1369, 1247, 1181, 1127, 1088, 1062, 1049, 1067, 1116, 1134, 1202, 1279, 1411, 1625, 1913, 1789, 1522, 1334, 1206, 1160, 1113, 1061, 1048, 1045, 1043, 1087, 1116, 1180, 1268, 1383, 1593, 1884, 1788, 1513, 1311, 1236, 1146, 1102, 1062, 1045, 1024, 1043, 1079, 1115, 1168, 1258, 1364, 1583, 1858, 1785, 1504, 1335, 1243, 1155, 1090, 1069, 1040, 1039, 1052, 1084, 1120, 1171, 1241, 1373, 1575, 1858, 1789, 1524, 1331, 1234, 1162, 1100, 1070, 1038, 1030, 1049, 1083, 1124, 1173, 1255, 1386, 1578, 1890, 1791, 1520, 1352, 1235, 1156, 1100, 1063, 1042, 1039, 1055, 1076, 1117, 1171, 1260, 1381, 1578, 1848, 1854, 1561, 1370, 1256, 1172, 1128, 1077, 1051, 1046, 1067, 1095, 1126, 1187, 1256, 1399, 1603, 1913, 1891, 1596, 1400, 1296, 1186, 1142, 1105, 1083, 1074, 1087, 1117, 1168, 1213, 1284, 1430, 1679, 1951, 1931, 1651, 1440, 1301, 1219, 1168, 1137, 1114, 1103, 1124, 1128, 1184, 1235, 1331, 1496, 1726, 2031, 2038, 1719, 1470, 1335, 1260, 1203, 1164, 1129, 1120, 1122, 1174, 1197, 1272, 1361, 1511, 1764, 2100, 2131, 1783, 1540, 1371, 1279, 1241, 1184, 1154, 1141, 1160, 1187, 1233, 1297, 1420, 1588, 1869, 2258, 2315, 1886, 1644, 1470, 1346, 1285, 1234, 1201, 1196, 1204, 1238, 1293, 1369, 1527, 1689, 1973, 3136]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2355, 1718, 1490, 1350, 1252, 1187, 1152, 1137, 1148, 1140, 1177, 1221, 1284, 1404, 1532, 1805, 2799, 1949, 1659, 1444, 1314, 1220, 1172, 1145, 1138, 1133, 1127, 1163, 1208, 1256, 1367, 1524, 1761, 2562, 1804, 1567, 1394, 1260, 1200, 1160, 1119, 1101, 1091, 1110, 1129, 1177, 1217, 1308, 1459, 1682, 1962, 1761, 1515, 1339, 1246, 1178, 1138, 1104, 1088, 1093, 1102, 1122, 1150, 1208, 1282, 1420, 1611, 1867, 1686, 1479, 1322, 1212, 1165, 1125, 1092, 1085, 1073, 1086, 1120, 1149, 1203, 1265, 1395, 1573, 1821, 1655, 1437, 1286, 1200, 1152, 1109, 1078, 1063, 1051, 1066, 1100, 1130, 1184, 1249, 1358, 1535, 1767, 1625, 1418, 1260, 1172, 1123, 1088, 1051, 1039, 1040, 1051, 1080, 1108, 1164, 1223, 1326, 1495, 1697, 1618, 1405, 1257, 1169, 1125, 1086, 1043, 1034, 1024, 1052, 1072, 1120, 1158, 1215, 1303, 1506, 1685, 1603, 1411, 1272, 1180, 1127, 1088, 1064, 1046, 1046, 1044, 1093, 1109, 1158, 1224, 1325, 1508, 1717, 1613, 1419, 1262, 1196, 1127, 1095, 1062, 1046, 1038, 1056, 1070, 1120, 1150, 1224, 1328, 1501, 1711, 1631, 1407, 1273, 1181, 1138, 1082, 1058, 1029, 1041, 1052, 1080, 1111, 1151, 1221, 1308, 1491, 1706, 1637, 1424, 1290, 1193, 1128, 1100, 1062, 1051, 1052, 1047, 1080, 1106, 1157, 1223, 1333, 1502, 1725, 1702, 1474, 1334, 1241, 1161, 1110, 1075, 1072, 1073, 1071, 1098, 1140, 1181, 1229, 1376, 1554, 1759, 1760, 1526, 1350, 1246, 1168, 1144, 1119, 1090, 1103, 1097, 1106, 1160, 1209, 1286, 1398, 1595, 1827, 1833, 1557, 1372, 1254, 1185, 1175, 1122, 1103, 1096, 1107, 1132, 1165, 1220, 1300, 1433, 1666, 1930, 1897, 1599, 1416, 1282, 1206, 1177, 1150, 1121, 1114, 1122, 1144, 1178, 1239, 1328, 1491, 1695, 2026, 2015, 1678, 1485, 1353, 1272, 1211, 1186, 1156, 1135, 1166, 1194, 1207, 1301, 1403, 1565, 1795, 2799]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2291, 1685, 1479, 1338, 1236, 1177, 1141, 1120, 1119, 1128, 1171, 1201, 1280, 1371, 1554, 1781, 2879, 1931, 1612, 1430, 1308, 1207, 1159, 1125, 1114, 1114, 1133, 1170, 1190, 1262, 1355, 1512, 1720, 2551, 1816, 1558, 1374, 1265, 1177, 1137, 1106, 1092, 1082, 1099, 1130, 1171, 1225, 1302, 1452, 1654, 1972, 1737, 1517, 1337, 1222, 1159, 1126, 1094, 1080, 1076, 1085, 1115, 1160, 1196, 1271, 1428, 1620, 1878, 1699, 1475, 1302, 1215, 1159, 1114, 1082, 1065, 1079, 1083, 1105, 1142, 1187, 1259, 1382, 1570, 1826, 1624, 1435, 1284, 1183, 1137, 1090, 1070, 1040, 1060, 1066, 1089, 1121, 1167, 1231, 1354, 1520, 1762, 1618, 1413, 1257, 1172, 1112, 1080, 1050, 1032, 1038, 1046, 1063, 1096, 1157, 1206, 1325, 1501, 1712, 1587, 1386, 1244, 1161, 1116, 1061, 1041, 1024, 1027, 1045, 1060, 1105, 1152, 1213, 1317, 1487, 1698, 1591, 1398, 1262, 1178, 1125, 1081, 1057, 1035, 1025, 1036, 1068, 1113, 1164, 1210, 1323, 1493, 1714, 1609, 1413, 1253, 1180, 1112, 1076, 1046, 1028, 1027, 1039, 1071, 1103, 1148, 1215, 1330, 1495, 1706, 1595, 1415, 1260, 1180, 1119, 1079, 1045, 1030, 1027, 1041, 1073, 1085, 1142, 1209, 1319, 1491, 1722, 1634, 1437, 1272, 1183, 1129, 1082, 1050, 1039, 1051, 1042, 1064, 1106, 1156, 1218, 1337, 1490, 1751, 1660, 1472, 1322, 1214, 1142, 1110, 1069, 1062, 1060, 1069, 1093, 1127, 1179, 1242, 1362, 1545, 1791, 1734, 1507, 1337, 1246, 1163, 1132, 1098, 1081, 1086, 1085, 1109, 1156, 1203, 1271, 1406, 1587, 1841, 1817, 1533, 1368, 1252, 1181, 1152, 1119, 1106, 1095, 1095, 1125, 1156, 1207, 1300, 1424, 1638, 1892, 1879, 1609, 1388, 1258, 1209, 1183, 1132, 1115, 1107, 1115, 1132, 1174, 1229, 1338, 1462, 1685, 1999, 2032, 1662, 1483, 1351, 1251, 1207, 1175, 1144, 1145, 1133, 1179, 1217, 1269, 1395, 1569, 1777, 2879]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2079, 1592, 1399, 1288, 1213, 1159, 1123, 1129, 1126, 1140, 1159, 1191, 1264, 1388, 1541, 1749, 2696, 1791, 1617, 1374, 1271, 1199, 1161, 1130, 1112, 1160, 1145, 1170, 1218, 1291, 1398, 1529, 1752, 2408, 1760, 1511, 1326, 1238, 1181, 1157, 1129, 1107, 1107, 1122, 1139, 1202, 1238, 1316, 1473, 1705, 1931, 1691, 1500, 1334, 1197, 1188, 1128, 1123, 1089, 1100, 1094, 1145, 1173, 1211, 1346, 1416, 1635, 1857, 1608, 1449, 1298, 1206, 1159, 1122, 1101, 1079, 1080, 1074, 1127, 1154, 1233, 1287, 1432, 1607, 1797, 1611, 1400, 1268, 1208, 1158, 1093, 1103, 1077, 1063, 1077, 1105, 1126, 1198, 1255, 1377, 1543, 1735, 1560, 1354, 1244, 1197, 1126, 1073, 1048, 1055, 1032, 1059, 1074, 1124, 1181, 1217, 1315, 1539, 1646, 1486, 1365, 1233, 1165, 1146, 1057, 1066, 1032, 1029, 1054, 1083, 1106, 1169, 1217, 1365, 1498, 1675, 1540, 1384, 1216, 1185, 1142, 1075, 1051, 1025, 1049, 1048, 1080, 1114, 1163, 1263, 1347, 1517, 1741, 1560, 1399, 1254, 1174, 1143, 1087, 1058, 1038, 1046, 1062, 1089, 1105, 1174, 1249, 1338, 1503, 1693, 1517, 1417, 1269, 1194, 1118, 1059, 1059, 1029, 1024, 1046, 1048, 1106, 1167, 1240, 1331, 1510, 1693, 1581, 1393, 1279, 1187, 1147, 1069, 1061, 1041, 1042, 1048, 1080, 1130, 1181, 1249, 1344, 1489, 1664, 1659, 1424, 1303, 1189, 1143, 1081, 1088, 1062, 1053, 1076, 1105, 1143, 1183, 1272, 1370, 1570, 1742, 1700, 1494, 1311, 1212, 1164, 1138, 1130, 1067, 1089, 1118, 1116, 1165, 1201, 1283, 1425, 1606, 1813, 1715, 1516, 1350, 1217, 1188, 1148, 1124, 1097, 1107, 1093, 1133, 1183, 1227, 1300, 1429, 1644, 1855, 1820, 1553, 1366, 1249, 1229, 1158, 1167, 1105, 1100, 1141, 1146, 1184, 1232, 1345, 1465, 1711, 1927, 1810, 1636, 1460, 1316, 1233, 1190, 1176, 1161, 1137, 1163, 1185, 1219, 1296, 1376, 1539, 1740, 2696]
                                       }
                                   }, {
                                       "name":    "2560x1440_CWF_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2345, 1956, 1668, 1504, 1386, 1319, 1270, 1229, 1210, 1213, 1240, 1305, 1370, 1492, 1644, 1921, 2345, 2230, 1860, 1600, 1462, 1349, 1272, 1224, 1184, 1185, 1184, 1216, 1272, 1345, 1450, 1586, 1830, 2246, 2172, 1790, 1556, 1424, 1330, 1249, 1194, 1164, 1148, 1158, 1184, 1241, 1317, 1413, 1536, 1772, 2101, 2070, 1747, 1530, 1401, 1300, 1217, 1160, 1124, 1109, 1124, 1157, 1214, 1287, 1375, 1530, 1705, 2057, 2008, 1686, 1500, 1374, 1275, 1180, 1131, 1100, 1079, 1100, 1128, 1191, 1263, 1364, 1494, 1678, 1961, 1966, 1647, 1467, 1344, 1240, 1172, 1116, 1078, 1063, 1070, 1107, 1166, 1244, 1335, 1461, 1624, 1922, 1909, 1618, 1458, 1339, 1237, 1163, 1094, 1053, 1036, 1053, 1088, 1150, 1233, 1330, 1447, 1618, 1868, 1889, 1613, 1455, 1324, 1225, 1138, 1080, 1041, 1029, 1038, 1075, 1135, 1214, 1306, 1444, 1606, 1849, 1873, 1609, 1436, 1322, 1220, 1137, 1072, 1030, 1024, 1030, 1077, 1137, 1216, 1309, 1442, 1588, 1873, 1879, 1606, 1450, 1324, 1218, 1141, 1075, 1033, 1027, 1029, 1072, 1129, 1211, 1302, 1439, 1599, 1869, 1899, 1618, 1447, 1316, 1229, 1141, 1083, 1035, 1029, 1043, 1075, 1138, 1215, 1316, 1431, 1611, 1868, 1944, 1632, 1456, 1326, 1229, 1149, 1092, 1056, 1039, 1051, 1089, 1143, 1218, 1335, 1450, 1610, 1890, 1961, 1655, 1459, 1345, 1240, 1164, 1110, 1072, 1062, 1067, 1113, 1164, 1240, 1341, 1459, 1632, 1939, 2007, 1697, 1486, 1365, 1262, 1185, 1131, 1097, 1080, 1094, 1125, 1188, 1258, 1356, 1480, 1672, 1995, 2088, 1718, 1504, 1392, 1290, 1207, 1156, 1132, 1110, 1122, 1156, 1211, 1281, 1382, 1497, 1710, 2048, 2169, 1771, 1551, 1405, 1321, 1243, 1187, 1153, 1143, 1150, 1180, 1231, 1312, 1416, 1537, 1771, 2154, 2257, 1865, 1605, 1461, 1365, 1265, 1220, 1194, 1169, 1172, 1213, 1257, 1340, 1437, 1582, 1833, 2224]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2265, 1890, 1629, 1470, 1376, 1303, 1250, 1220, 1213, 1214, 1250, 1285, 1370, 1466, 1616, 1866, 2219, 2182, 1815, 1565, 1428, 1338, 1262, 1210, 1186, 1172, 1182, 1210, 1257, 1338, 1431, 1562, 1799, 2166, 2093, 1738, 1526, 1400, 1306, 1228, 1189, 1142, 1143, 1150, 1179, 1230, 1297, 1394, 1512, 1728, 2063, 1998, 1686, 1492, 1369, 1281, 1202, 1155, 1119, 1106, 1112, 1144, 1198, 1269, 1372, 1485, 1677, 1966, 1951, 1637, 1465, 1344, 1252, 1179, 1125, 1090, 1075, 1088, 1126, 1177, 1246, 1342, 1462, 1633, 1914, 1911, 1618, 1444, 1329, 1236, 1163, 1104, 1067, 1053, 1064, 1098, 1155, 1236, 1326, 1438, 1606, 1882, 1872, 1594, 1439, 1314, 1221, 1141, 1088, 1049, 1033, 1048, 1083, 1138, 1215, 1312, 1430, 1586, 1850, 1856, 1584, 1426, 1307, 1212, 1137, 1081, 1035, 1022, 1039, 1071, 1129, 1208, 1298, 1418, 1580, 1845, 1848, 1591, 1423, 1305, 1206, 1138, 1073, 1031, 1024, 1031, 1070, 1128, 1202, 1298, 1414, 1572, 1811, 1850, 1584, 1426, 1302, 1210, 1137, 1077, 1035, 1021, 1032, 1071, 1129, 1204, 1293, 1421, 1580, 1823, 1861, 1583, 1427, 1314, 1213, 1145, 1080, 1042, 1027, 1036, 1074, 1140, 1213, 1304, 1410, 1586, 1850, 1888, 1602, 1444, 1319, 1226, 1155, 1096, 1058, 1047, 1057, 1087, 1146, 1220, 1319, 1429, 1583, 1871, 1926, 1629, 1452, 1337, 1242, 1166, 1103, 1076, 1064, 1071, 1106, 1164, 1239, 1326, 1449, 1608, 1908, 1966, 1659, 1475, 1356, 1262, 1188, 1133, 1097, 1091, 1100, 1128, 1182, 1264, 1342, 1462, 1642, 1959, 2042, 1713, 1494, 1385, 1285, 1216, 1157, 1125, 1118, 1120, 1151, 1207, 1275, 1371, 1491, 1681, 2020, 2141, 1767, 1527, 1403, 1312, 1237, 1190, 1153, 1140, 1155, 1188, 1228, 1307, 1400, 1527, 1736, 2086, 2219, 1836, 1574, 1443, 1340, 1266, 1216, 1184, 1176, 1178, 1212, 1266, 1326, 1411, 1566, 1819, 2175]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2273, 1899, 1637, 1481, 1375, 1303, 1253, 1223, 1208, 1221, 1260, 1300, 1373, 1475, 1620, 1881, 2246, 2191, 1835, 1582, 1442, 1348, 1274, 1220, 1191, 1177, 1187, 1220, 1272, 1351, 1439, 1574, 1807, 2174, 2094, 1756, 1535, 1413, 1309, 1242, 1185, 1153, 1144, 1157, 1187, 1229, 1307, 1408, 1535, 1722, 2065, 2007, 1699, 1500, 1380, 1284, 1209, 1160, 1122, 1111, 1122, 1153, 1207, 1284, 1374, 1497, 1690, 1988, 1966, 1650, 1477, 1355, 1262, 1186, 1130, 1095, 1082, 1095, 1127, 1181, 1253, 1352, 1477, 1654, 1923, 1903, 1631, 1461, 1334, 1240, 1168, 1111, 1074, 1055, 1074, 1108, 1165, 1240, 1337, 1461, 1619, 1908, 1876, 1611, 1447, 1324, 1233, 1152, 1096, 1054, 1040, 1054, 1090, 1150, 1221, 1322, 1441, 1611, 1865, 1854, 1585, 1438, 1310, 1223, 1146, 1090, 1043, 1038, 1046, 1081, 1141, 1215, 1308, 1432, 1593, 1838, 1857, 1596, 1423, 1320, 1218, 1142, 1078, 1037, 1024, 1038, 1075, 1138, 1214, 1310, 1431, 1600, 1825, 1865, 1597, 1429, 1317, 1221, 1141, 1082, 1035, 1029, 1040, 1081, 1139, 1215, 1315, 1426, 1589, 1843, 1876, 1603, 1435, 1317, 1223, 1149, 1091, 1046, 1034, 1046, 1084, 1145, 1223, 1317, 1435, 1591, 1859, 1880, 1607, 1434, 1329, 1238, 1156, 1097, 1062, 1047, 1059, 1095, 1154, 1229, 1322, 1446, 1615, 1880, 1917, 1637, 1461, 1344, 1251, 1169, 1115, 1084, 1071, 1083, 1107, 1169, 1243, 1334, 1454, 1621, 1923, 1975, 1672, 1477, 1361, 1268, 1197, 1139, 1102, 1092, 1101, 1137, 1187, 1268, 1353, 1477, 1659, 1962, 2050, 1713, 1503, 1387, 1283, 1223, 1164, 1130, 1117, 1130, 1162, 1213, 1280, 1373, 1503, 1699, 2008, 2126, 1776, 1543, 1408, 1314, 1247, 1193, 1162, 1147, 1158, 1183, 1242, 1309, 1405, 1536, 1750, 2087, 2246, 1845, 1586, 1441, 1356, 1273, 1217, 1190, 1174, 1186, 1217, 1269, 1339, 1438, 1574, 1822, 2201]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2207, 1864, 1618, 1457, 1352, 1289, 1227, 1197, 1195, 1204, 1249, 1273, 1352, 1446, 1632, 1845, 2178, 2153, 1828, 1586, 1436, 1337, 1263, 1213, 1178, 1164, 1178, 1219, 1256, 1329, 1426, 1573, 1759, 2126, 2063, 1724, 1527, 1412, 1320, 1229, 1183, 1164, 1138, 1152, 1183, 1236, 1303, 1393, 1515, 1708, 2016, 1975, 1700, 1502, 1376, 1276, 1200, 1158, 1123, 1111, 1123, 1158, 1200, 1284, 1367, 1491, 1671, 1933, 1928, 1658, 1473, 1364, 1268, 1182, 1131, 1099, 1087, 1099, 1131, 1176, 1254, 1346, 1473, 1630, 1890, 1878, 1626, 1452, 1331, 1235, 1167, 1113, 1073, 1071, 1078, 1113, 1167, 1228, 1347, 1442, 1600, 1878, 1843, 1615, 1436, 1343, 1233, 1160, 1092, 1058, 1043, 1063, 1097, 1149, 1226, 1319, 1445, 1590, 1825, 1819, 1574, 1434, 1311, 1220, 1155, 1093, 1041, 1035, 1055, 1088, 1144, 1226, 1319, 1424, 1574, 1785, 1840, 1577, 1437, 1321, 1222, 1146, 1080, 1043, 1024, 1048, 1080, 1140, 1222, 1313, 1427, 1577, 1805, 1836, 1574, 1424, 1327, 1226, 1150, 1083, 1041, 1031, 1050, 1088, 1144, 1220, 1311, 1434, 1599, 1836, 1825, 1615, 1445, 1327, 1226, 1155, 1087, 1054, 1039, 1049, 1092, 1155, 1226, 1319, 1426, 1590, 1843, 1842, 1613, 1452, 1331, 1242, 1167, 1113, 1068, 1057, 1063, 1097, 1161, 1235, 1331, 1442, 1600, 1860, 1928, 1644, 1453, 1346, 1254, 1176, 1109, 1084, 1077, 1094, 1109, 1189, 1246, 1338, 1442, 1617, 1871, 1954, 1671, 1480, 1358, 1269, 1194, 1146, 1107, 1095, 1102, 1140, 1187, 1269, 1358, 1480, 1642, 1933, 1994, 1693, 1503, 1393, 1288, 1215, 1158, 1128, 1110, 1128, 1158, 1215, 1288, 1347, 1492, 1678, 1972, 2076, 1759, 1523, 1396, 1312, 1227, 1199, 1160, 1145, 1160, 1179, 1234, 1304, 1396, 1523, 1759, 2076, 2150, 1807, 1578, 1435, 1334, 1265, 1234, 1191, 1156, 1177, 1227, 1281, 1334, 1435, 1578, 1807, 2150]
                                       }
                                   }, {
                                       "name":    "2560x1440_CWF_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2484, 1706, 1489, 1376, 1257, 1196, 1166, 1154, 1127, 1154, 1162, 1211, 1262, 1393, 1506, 1748, 2703, 2027, 1698, 1482, 1352, 1249, 1201, 1146, 1141, 1144, 1162, 1185, 1196, 1281, 1384, 1507, 1718, 2602, 1891, 1608, 1404, 1302, 1219, 1167, 1136, 1126, 1119, 1137, 1153, 1177, 1223, 1308, 1429, 1633, 1952, 1815, 1559, 1360, 1246, 1190, 1152, 1132, 1104, 1099, 1104, 1129, 1164, 1198, 1263, 1406, 1560, 1833, 1771, 1479, 1328, 1223, 1166, 1134, 1085, 1087, 1073, 1092, 1131, 1137, 1188, 1261, 1318, 1515, 1754, 1709, 1491, 1293, 1201, 1157, 1120, 1080, 1060, 1057, 1080, 1100, 1125, 1157, 1205, 1316, 1485, 1673, 1648, 1428, 1274, 1194, 1133, 1092, 1087, 1046, 1048, 1075, 1088, 1098, 1142, 1199, 1284, 1461, 1656, 1631, 1411, 1249, 1177, 1115, 1103, 1057, 1044, 1045, 1027, 1071, 1103, 1118, 1185, 1272, 1442, 1657, 1629, 1409, 1243, 1175, 1128, 1082, 1056, 1035, 1024, 1043, 1066, 1084, 1117, 1173, 1256, 1438, 1643, 1654, 1405, 1268, 1187, 1134, 1081, 1058, 1030, 1031, 1042, 1064, 1094, 1109, 1171, 1283, 1424, 1622, 1644, 1447, 1276, 1186, 1128, 1072, 1054, 1025, 1037, 1050, 1059, 1100, 1122, 1181, 1266, 1421, 1659, 1659, 1436, 1278, 1183, 1139, 1084, 1079, 1051, 1053, 1060, 1067, 1076, 1136, 1181, 1292, 1448, 1681, 1704, 1504, 1310, 1207, 1135, 1108, 1074, 1057, 1053, 1065, 1054, 1094, 1137, 1188, 1300, 1508, 1758, 1811, 1521, 1338, 1219, 1176, 1109, 1086, 1064, 1054, 1067, 1083, 1098, 1154, 1209, 1331, 1532, 1752, 1875, 1570, 1348, 1255, 1178, 1128, 1117, 1102, 1065, 1083, 1095, 1136, 1189, 1243, 1370, 1572, 1821, 1938, 1617, 1412, 1295, 1204, 1172, 1139, 1108, 1093, 1088, 1115, 1146, 1189, 1324, 1433, 1634, 1951, 2001, 1688, 1462, 1356, 1284, 1185, 1166, 1142, 1124, 1128, 1149, 1174, 1250, 1369, 1505, 1701, 2703]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2377, 1663, 1485, 1340, 1241, 1188, 1155, 1130, 1131, 1150, 1159, 1191, 1285, 1371, 1522, 1740, 2596, 1876, 1647, 1423, 1300, 1210, 1166, 1141, 1134, 1131, 1141, 1161, 1209, 1260, 1345, 1475, 1665, 2427, 1784, 1559, 1394, 1271, 1196, 1148, 1119, 1108, 1105, 1113, 1139, 1168, 1203, 1299, 1421, 1607, 1877, 1724, 1496, 1348, 1231, 1162, 1136, 1103, 1078, 1089, 1103, 1111, 1149, 1189, 1255, 1368, 1547, 1772, 1662, 1459, 1304, 1210, 1148, 1113, 1088, 1065, 1069, 1087, 1098, 1135, 1182, 1222, 1335, 1496, 1703, 1615, 1427, 1280, 1206, 1134, 1095, 1072, 1059, 1041, 1075, 1104, 1114, 1155, 1205, 1309, 1464, 1683, 1579, 1400, 1257, 1174, 1135, 1078, 1060, 1044, 1052, 1061, 1075, 1105, 1145, 1178, 1283, 1440, 1632, 1562, 1368, 1256, 1160, 1106, 1087, 1057, 1030, 1040, 1048, 1067, 1092, 1128, 1171, 1266, 1421, 1614, 1558, 1369, 1243, 1164, 1125, 1077, 1049, 1034, 1024, 1037, 1071, 1076, 1123, 1176, 1259, 1397, 1611, 1576, 1381, 1238, 1168, 1116, 1086, 1051, 1031, 1033, 1048, 1057, 1082, 1109, 1174, 1266, 1426, 1628, 1585, 1378, 1244, 1175, 1119, 1078, 1053, 1039, 1038, 1044, 1047, 1078, 1128, 1181, 1260, 1414, 1619, 1617, 1397, 1254, 1179, 1122, 1093, 1066, 1046, 1046, 1045, 1058, 1083, 1118, 1188, 1286, 1440, 1666, 1628, 1426, 1282, 1179, 1124, 1101, 1069, 1051, 1052, 1048, 1064, 1099, 1123, 1181, 1307, 1447, 1677, 1695, 1468, 1299, 1191, 1143, 1105, 1079, 1061, 1068, 1067, 1086, 1101, 1143, 1217, 1332, 1483, 1721, 1784, 1498, 1332, 1224, 1162, 1135, 1095, 1078, 1070, 1067, 1084, 1106, 1174, 1223, 1365, 1545, 1773, 1801, 1545, 1380, 1262, 1189, 1147, 1116, 1089, 1086, 1092, 1102, 1141, 1187, 1275, 1408, 1593, 1850, 1917, 1612, 1424, 1313, 1236, 1173, 1145, 1111, 1116, 1112, 1126, 1164, 1230, 1324, 1468, 1665, 2596]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2302, 1649, 1470, 1350, 1250, 1187, 1154, 1136, 1121, 1140, 1168, 1206, 1277, 1355, 1508, 1733, 2670, 1878, 1651, 1430, 1316, 1214, 1183, 1138, 1123, 1136, 1137, 1161, 1205, 1255, 1352, 1493, 1668, 2463, 1782, 1556, 1376, 1264, 1185, 1151, 1134, 1109, 1110, 1129, 1141, 1181, 1216, 1308, 1428, 1601, 1847, 1725, 1504, 1317, 1221, 1166, 1136, 1107, 1092, 1090, 1095, 1121, 1157, 1192, 1243, 1374, 1555, 1782, 1689, 1464, 1297, 1212, 1155, 1118, 1085, 1075, 1082, 1086, 1112, 1138, 1173, 1224, 1349, 1515, 1719, 1614, 1436, 1283, 1183, 1139, 1095, 1071, 1045, 1067, 1078, 1101, 1127, 1165, 1207, 1307, 1467, 1668, 1590, 1410, 1265, 1175, 1116, 1088, 1059, 1049, 1048, 1069, 1079, 1108, 1150, 1181, 1293, 1446, 1658, 1574, 1391, 1237, 1168, 1112, 1079, 1052, 1040, 1039, 1049, 1078, 1095, 1138, 1177, 1270, 1432, 1628, 1556, 1378, 1238, 1158, 1117, 1082, 1053, 1035, 1024, 1045, 1060, 1092, 1119, 1172, 1264, 1405, 1610, 1584, 1385, 1234, 1174, 1107, 1070, 1048, 1040, 1032, 1048, 1069, 1091, 1133, 1172, 1276, 1423, 1625, 1568, 1412, 1247, 1169, 1125, 1076, 1058, 1034, 1040, 1046, 1052, 1080, 1133, 1182, 1289, 1435, 1636, 1590, 1409, 1264, 1180, 1124, 1085, 1064, 1055, 1042, 1044, 1056, 1080, 1122, 1187, 1286, 1450, 1647, 1625, 1447, 1274, 1180, 1129, 1094, 1070, 1048, 1052, 1049, 1055, 1083, 1142, 1205, 1302, 1468, 1662, 1681, 1479, 1303, 1205, 1147, 1101, 1082, 1071, 1074, 1064, 1071, 1107, 1159, 1217, 1327, 1491, 1726, 1763, 1514, 1329, 1239, 1171, 1133, 1105, 1093, 1073, 1076, 1091, 1115, 1164, 1235, 1383, 1538, 1801, 1814, 1580, 1380, 1263, 1190, 1146, 1119, 1092, 1080, 1092, 1098, 1153, 1190, 1281, 1409, 1622, 1862, 1920, 1639, 1418, 1311, 1213, 1191, 1142, 1129, 1122, 1102, 1125, 1165, 1231, 1335, 1475, 1675, 2670]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2231, 1598, 1397, 1297, 1215, 1149, 1130, 1130, 1122, 1117, 1171, 1217, 1266, 1375, 1514, 1688, 2594, 1827, 1565, 1408, 1279, 1205, 1182, 1159, 1136, 1123, 1155, 1195, 1201, 1267, 1381, 1503, 1701, 2407, 1678, 1487, 1351, 1236, 1192, 1145, 1118, 1109, 1109, 1145, 1178, 1192, 1219, 1316, 1461, 1632, 1862, 1654, 1442, 1307, 1206, 1162, 1137, 1141, 1069, 1089, 1108, 1137, 1169, 1229, 1278, 1385, 1547, 1795, 1643, 1449, 1301, 1199, 1151, 1118, 1089, 1076, 1075, 1085, 1117, 1145, 1226, 1251, 1345, 1487, 1685, 1564, 1405, 1276, 1165, 1129, 1109, 1088, 1071, 1046, 1076, 1111, 1145, 1162, 1210, 1330, 1491, 1649, 1571, 1383, 1222, 1175, 1112, 1077, 1066, 1070, 1050, 1053, 1103, 1115, 1154, 1217, 1291, 1435, 1625, 1488, 1353, 1187, 1137, 1121, 1056, 1062, 1045, 1038, 1051, 1076, 1108, 1154, 1175, 1286, 1448, 1601, 1499, 1324, 1203, 1170, 1111, 1085, 1037, 1036, 1038, 1057, 1063, 1107, 1115, 1198, 1256, 1420, 1593, 1524, 1342, 1217, 1168, 1113, 1070, 1043, 1033, 1032, 1038, 1076, 1087, 1136, 1181, 1275, 1412, 1590, 1550, 1374, 1200, 1153, 1117, 1073, 1057, 1024, 1030, 1066, 1057, 1073, 1148, 1181, 1271, 1398, 1548, 1581, 1389, 1240, 1166, 1118, 1076, 1058, 1051, 1052, 1045, 1080, 1093, 1117, 1183, 1283, 1426, 1613, 1583, 1384, 1256, 1190, 1140, 1087, 1071, 1043, 1036, 1039, 1082, 1088, 1142, 1201, 1294, 1456, 1617, 1685, 1430, 1279, 1190, 1132, 1105, 1084, 1055, 1053, 1054, 1068, 1097, 1142, 1217, 1331, 1470, 1671, 1742, 1453, 1328, 1192, 1136, 1112, 1087, 1067, 1046, 1060, 1098, 1141, 1172, 1234, 1356, 1509, 1722, 1762, 1548, 1327, 1220, 1167, 1139, 1112, 1097, 1069, 1088, 1104, 1135, 1200, 1261, 1375, 1560, 1803, 1849, 1533, 1362, 1263, 1205, 1143, 1136, 1091, 1098, 1103, 1129, 1120, 1192, 1286, 1451, 1608, 2594]
                                       }
                                   }, {
                                       "name":    "2560x1440_D50_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1788, 1541, 1379, 1292, 1257, 1194, 1175, 1176, 1169, 1187, 1222, 1274, 1386, 1471, 1633, 1895, 2308, 1762, 1494, 1347, 1268, 1200, 1178, 1147, 1138, 1131, 1151, 1186, 1258, 1322, 1428, 1565, 1823, 2225, 1677, 1447, 1319, 1251, 1186, 1149, 1127, 1119, 1110, 1129, 1161, 1226, 1303, 1402, 1535, 1753, 2105, 1629, 1417, 1312, 1243, 1189, 1148, 1118, 1098, 1096, 1110, 1144, 1205, 1272, 1373, 1514, 1719, 2058, 1572, 1413, 1297, 1231, 1190, 1137, 1115, 1087, 1079, 1095, 1121, 1189, 1269, 1371, 1502, 1707, 2018, 1557, 1404, 1291, 1235, 1188, 1136, 1096, 1072, 1059, 1078, 1120, 1173, 1260, 1369, 1497, 1672, 1974, 1536, 1379, 1299, 1231, 1177, 1140, 1088, 1057, 1053, 1065, 1100, 1160, 1248, 1343, 1481, 1657, 1936, 1518, 1365, 1288, 1222, 1173, 1121, 1074, 1039, 1032, 1044, 1086, 1156, 1235, 1336, 1461, 1636, 1925, 1481, 1357, 1273, 1216, 1165, 1108, 1060, 1023, 1024, 1036, 1068, 1133, 1215, 1316, 1441, 1624, 1897, 1452, 1345, 1266, 1210, 1166, 1106, 1053, 1016, 1007, 1019, 1063, 1109, 1202, 1296, 1432, 1592, 1862, 1463, 1337, 1263, 1211, 1157, 1103, 1047, 1011, 999, 1016, 1049, 1106, 1191, 1293, 1419, 1575, 1861, 1454, 1339, 1278, 1227, 1163, 1108, 1061, 1026, 1015, 1026, 1064, 1117, 1199, 1298, 1416, 1581, 1874, 1479, 1363, 1297, 1235, 1183, 1125, 1076, 1037, 1032, 1047, 1076, 1137, 1209, 1308, 1436, 1619, 1935, 1514, 1388, 1337, 1264, 1200, 1148, 1108, 1077, 1066, 1077, 1105, 1162, 1243, 1343, 1476, 1669, 1945, 1584, 1441, 1376, 1310, 1238, 1173, 1140, 1106, 1094, 1109, 1147, 1199, 1285, 1380, 1515, 1708, 2050, 1639, 1508, 1415, 1356, 1289, 1224, 1186, 1151, 1141, 1148, 1175, 1237, 1313, 1428, 1565, 1793, 2161, 1704, 1587, 1452, 1387, 1323, 1265, 1214, 1191, 1176, 1187, 1231, 1288, 1354, 1471, 1601, 1873, 2273]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1939, 1635, 1450, 1342, 1279, 1230, 1192, 1181, 1174, 1190, 1219, 1257, 1339, 1434, 1576, 1848, 2183, 1865, 1581, 1411, 1310, 1238, 1194, 1166, 1149, 1139, 1157, 1190, 1238, 1314, 1395, 1534, 1751, 2105, 1804, 1536, 1377, 1293, 1225, 1180, 1142, 1124, 1113, 1126, 1158, 1210, 1287, 1382, 1495, 1711, 2028, 1747, 1513, 1369, 1283, 1218, 1168, 1127, 1103, 1095, 1114, 1142, 1200, 1271, 1363, 1482, 1664, 1964, 1683, 1493, 1368, 1279, 1216, 1160, 1123, 1094, 1082, 1102, 1133, 1184, 1265, 1360, 1486, 1642, 1926, 1667, 1487, 1363, 1283, 1215, 1155, 1114, 1084, 1071, 1081, 1122, 1177, 1258, 1350, 1478, 1637, 1914, 1665, 1476, 1355, 1278, 1206, 1149, 1104, 1065, 1059, 1068, 1111, 1164, 1246, 1343, 1468, 1636, 1901, 1651, 1453, 1348, 1270, 1204, 1142, 1089, 1055, 1043, 1056, 1098, 1157, 1226, 1334, 1456, 1610, 1857, 1608, 1435, 1334, 1256, 1192, 1129, 1072, 1038, 1024, 1044, 1077, 1138, 1213, 1313, 1439, 1584, 1814, 1600, 1419, 1323, 1251, 1179, 1122, 1071, 1029, 1019, 1028, 1063, 1123, 1202, 1297, 1411, 1565, 1816, 1591, 1411, 1318, 1248, 1177, 1117, 1061, 1028, 1014, 1028, 1062, 1115, 1198, 1285, 1403, 1568, 1811, 1597, 1424, 1317, 1256, 1185, 1119, 1072, 1035, 1023, 1035, 1072, 1127, 1204, 1288, 1399, 1561, 1834, 1625, 1453, 1344, 1271, 1197, 1140, 1091, 1060, 1049, 1060, 1091, 1140, 1221, 1302, 1422, 1577, 1856, 1693, 1493, 1378, 1296, 1234, 1175, 1127, 1091, 1082, 1084, 1121, 1173, 1246, 1337, 1454, 1627, 1937, 1734, 1540, 1423, 1343, 1267, 1201, 1158, 1132, 1119, 1130, 1160, 1210, 1277, 1379, 1487, 1681, 2013, 1826, 1618, 1476, 1382, 1306, 1246, 1201, 1170, 1155, 1168, 1199, 1253, 1322, 1414, 1538, 1745, 2114, 1881, 1696, 1521, 1417, 1336, 1281, 1238, 1199, 1196, 1206, 1236, 1286, 1366, 1456, 1594, 1842, 2193]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1924, 1628, 1448, 1327, 1277, 1217, 1182, 1170, 1169, 1179, 1221, 1267, 1333, 1449, 1565, 1815, 2202, 1844, 1570, 1398, 1299, 1233, 1189, 1153, 1138, 1134, 1146, 1172, 1233, 1300, 1395, 1515, 1738, 2096, 1772, 1521, 1368, 1282, 1215, 1173, 1133, 1112, 1105, 1125, 1157, 1201, 1279, 1370, 1492, 1684, 2019, 1717, 1495, 1351, 1275, 1206, 1165, 1115, 1093, 1085, 1104, 1145, 1188, 1260, 1354, 1483, 1657, 1963, 1691, 1468, 1345, 1273, 1209, 1151, 1111, 1082, 1077, 1091, 1117, 1185, 1250, 1346, 1473, 1644, 1904, 1675, 1474, 1354, 1268, 1205, 1152, 1103, 1079, 1067, 1073, 1115, 1174, 1252, 1347, 1475, 1617, 1905, 1657, 1463, 1343, 1267, 1203, 1142, 1096, 1055, 1043, 1063, 1104, 1159, 1236, 1334, 1455, 1624, 1868, 1634, 1443, 1343, 1265, 1191, 1135, 1081, 1041, 1034, 1046, 1090, 1150, 1223, 1318, 1443, 1599, 1855, 1584, 1416, 1325, 1245, 1183, 1119, 1065, 1025, 1024, 1034, 1074, 1133, 1210, 1305, 1423, 1577, 1824, 1576, 1407, 1312, 1243, 1166, 1110, 1052, 1014, 1012, 1022, 1060, 1117, 1199, 1292, 1408, 1554, 1820, 1575, 1408, 1299, 1238, 1166, 1105, 1051, 1016, 1006, 1018, 1053, 1109, 1193, 1280, 1394, 1553, 1821, 1577, 1414, 1317, 1241, 1175, 1111, 1059, 1030, 1017, 1030, 1062, 1122, 1196, 1283, 1393, 1558, 1803, 1609, 1426, 1330, 1263, 1185, 1130, 1077, 1046, 1039, 1046, 1080, 1139, 1209, 1297, 1412, 1578, 1854, 1670, 1468, 1366, 1288, 1215, 1159, 1111, 1081, 1069, 1079, 1111, 1163, 1239, 1323, 1437, 1624, 1908, 1732, 1525, 1410, 1329, 1254, 1196, 1149, 1123, 1108, 1119, 1149, 1205, 1266, 1364, 1488, 1684, 1997, 1787, 1606, 1458, 1367, 1297, 1231, 1194, 1159, 1148, 1163, 1189, 1240, 1303, 1408, 1531, 1749, 2088, 1853, 1679, 1506, 1404, 1333, 1267, 1216, 1192, 1187, 1194, 1228, 1267, 1345, 1439, 1569, 1828, 2183]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1648, 1425, 1283, 1211, 1194, 1147, 1112, 1128, 1131, 1150, 1182, 1251, 1316, 1398, 1522, 1784, 2091, 1597, 1381, 1258, 1197, 1144, 1120, 1113, 1116, 1124, 1120, 1162, 1200, 1286, 1380, 1505, 1703, 2023, 1519, 1343, 1237, 1181, 1139, 1118, 1099, 1094, 1097, 1114, 1141, 1195, 1271, 1367, 1476, 1657, 1948, 1471, 1338, 1240, 1180, 1145, 1120, 1101, 1077, 1081, 1100, 1138, 1186, 1253, 1336, 1467, 1620, 1873, 1439, 1321, 1240, 1196, 1151, 1126, 1096, 1080, 1072, 1088, 1124, 1178, 1258, 1347, 1461, 1609, 1908, 1443, 1333, 1251, 1202, 1157, 1124, 1095, 1068, 1068, 1079, 1110, 1175, 1243, 1346, 1458, 1612, 1864, 1417, 1319, 1257, 1203, 1164, 1122, 1090, 1057, 1053, 1075, 1105, 1169, 1235, 1334, 1449, 1589, 1843, 1426, 1314, 1248, 1195, 1166, 1112, 1085, 1052, 1039, 1059, 1096, 1153, 1222, 1323, 1436, 1589, 1815, 1376, 1280, 1234, 1202, 1159, 1107, 1058, 1027, 1024, 1040, 1076, 1131, 1219, 1314, 1417, 1565, 1806, 1352, 1266, 1216, 1186, 1148, 1097, 1052, 1019, 1009, 1029, 1059, 1120, 1193, 1295, 1407, 1553, 1765, 1351, 1258, 1214, 1189, 1142, 1091, 1046, 1020, 1013, 1016, 1057, 1114, 1182, 1271, 1386, 1518, 1743, 1358, 1276, 1234, 1197, 1157, 1104, 1054, 1020, 1017, 1027, 1058, 1120, 1189, 1275, 1386, 1529, 1774, 1376, 1283, 1251, 1206, 1156, 1122, 1073, 1047, 1040, 1044, 1077, 1134, 1207, 1298, 1402, 1544, 1786, 1405, 1318, 1281, 1243, 1197, 1150, 1101, 1081, 1069, 1077, 1109, 1150, 1232, 1324, 1421, 1600, 1859, 1464, 1365, 1329, 1278, 1222, 1176, 1141, 1118, 1105, 1110, 1145, 1190, 1271, 1360, 1476, 1657, 1932, 1486, 1429, 1371, 1320, 1257, 1206, 1181, 1155, 1137, 1151, 1186, 1232, 1304, 1395, 1523, 1714, 2059, 1557, 1496, 1420, 1362, 1297, 1240, 1212, 1194, 1168, 1199, 1217, 1256, 1349, 1436, 1560, 1811, 2110]
                                       }
                                   }, {
                                       "name":    "2560x1440_D50_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2530, 1829, 1598, 1439, 1345, 1277, 1256, 1228, 1215, 1224, 1260, 1273, 1402, 1494, 1686, 1996, 3090, 2074, 1807, 1579, 1433, 1340, 1289, 1239, 1209, 1218, 1230, 1252, 1314, 1397, 1490, 1665, 1945, 2828, 2015, 1719, 1517, 1407, 1293, 1228, 1225, 1185, 1178, 1191, 1219, 1244, 1314, 1413, 1578, 1844, 2238, 1948, 1655, 1456, 1306, 1245, 1216, 1168, 1145, 1128, 1145, 1180, 1224, 1257, 1379, 1520, 1750, 2106, 1844, 1595, 1412, 1292, 1220, 1177, 1152, 1138, 1125, 1109, 1153, 1182, 1265, 1325, 1466, 1687, 2012, 1816, 1559, 1385, 1275, 1200, 1163, 1133, 1091, 1097, 1122, 1127, 1167, 1251, 1322, 1431, 1633, 1940, 1747, 1507, 1360, 1251, 1210, 1148, 1109, 1071, 1086, 1076, 1121, 1160, 1226, 1303, 1431, 1606, 1910, 1710, 1492, 1322, 1252, 1183, 1129, 1077, 1071, 1051, 1078, 1098, 1133, 1194, 1270, 1388, 1589, 1855, 1694, 1482, 1288, 1214, 1161, 1123, 1081, 1052, 1024, 1063, 1087, 1120, 1165, 1261, 1380, 1568, 1867, 1743, 1481, 1317, 1224, 1177, 1116, 1076, 1069, 1036, 1057, 1090, 1128, 1185, 1264, 1368, 1583, 1815, 1743, 1516, 1305, 1229, 1158, 1122, 1080, 1050, 1052, 1068, 1106, 1136, 1186, 1272, 1401, 1604, 1901, 1729, 1518, 1317, 1245, 1190, 1121, 1095, 1050, 1071, 1078, 1098, 1148, 1214, 1247, 1428, 1632, 1848, 1803, 1508, 1338, 1247, 1189, 1137, 1090, 1084, 1062, 1082, 1100, 1141, 1209, 1284, 1439, 1625, 1933, 1819, 1603, 1372, 1259, 1190, 1156, 1129, 1091, 1090, 1099, 1144, 1174, 1238, 1318, 1456, 1685, 1998, 1935, 1660, 1423, 1293, 1214, 1183, 1145, 1128, 1124, 1137, 1184, 1202, 1252, 1393, 1521, 1786, 2045, 1998, 1686, 1464, 1339, 1249, 1204, 1178, 1167, 1150, 1180, 1194, 1246, 1311, 1404, 1599, 1831, 2195, 2009, 1763, 1523, 1390, 1307, 1252, 1194, 1184, 1184, 1217, 1207, 1272, 1338, 1488, 1670, 1943, 3090]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2258, 1663, 1501, 1372, 1275, 1235, 1187, 1170, 1174, 1187, 1210, 1241, 1320, 1443, 1586, 1778, 2721, 1881, 1652, 1454, 1349, 1260, 1229, 1193, 1192, 1187, 1182, 1209, 1250, 1313, 1401, 1560, 1771, 2561, 1781, 1567, 1416, 1301, 1237, 1199, 1163, 1139, 1147, 1174, 1175, 1217, 1248, 1363, 1493, 1700, 1989, 1678, 1531, 1354, 1253, 1191, 1169, 1135, 1114, 1119, 1121, 1142, 1184, 1239, 1303, 1431, 1632, 1889, 1652, 1449, 1320, 1229, 1181, 1129, 1106, 1092, 1096, 1099, 1128, 1163, 1209, 1275, 1412, 1567, 1778, 1607, 1424, 1302, 1204, 1166, 1126, 1089, 1084, 1078, 1096, 1114, 1144, 1204, 1250, 1379, 1545, 1771, 1587, 1405, 1288, 1218, 1152, 1126, 1085, 1073, 1071, 1084, 1098, 1137, 1185, 1243, 1364, 1510, 1749, 1549, 1376, 1250, 1191, 1122, 1091, 1065, 1045, 1046, 1059, 1095, 1137, 1176, 1245, 1348, 1486, 1702, 1534, 1369, 1254, 1168, 1128, 1073, 1056, 1031, 1027, 1048, 1076, 1106, 1164, 1228, 1325, 1459, 1695, 1524, 1371, 1240, 1179, 1112, 1082, 1055, 1027, 1024, 1060, 1081, 1127, 1158, 1220, 1329, 1489, 1679, 1542, 1373, 1272, 1178, 1133, 1083, 1062, 1044, 1043, 1056, 1084, 1116, 1161, 1222, 1337, 1492, 1732, 1578, 1384, 1267, 1187, 1117, 1092, 1056, 1047, 1055, 1066, 1096, 1129, 1170, 1231, 1349, 1494, 1715, 1580, 1394, 1285, 1189, 1134, 1084, 1057, 1057, 1053, 1063, 1092, 1119, 1179, 1246, 1358, 1539, 1762, 1620, 1442, 1308, 1202, 1132, 1114, 1090, 1065, 1079, 1071, 1097, 1142, 1194, 1253, 1386, 1557, 1781, 1682, 1476, 1317, 1222, 1149, 1138, 1093, 1096, 1086, 1093, 1131, 1179, 1223, 1296, 1443, 1617, 1865, 1767, 1546, 1361, 1235, 1181, 1159, 1140, 1111, 1104, 1125, 1137, 1199, 1243, 1332, 1467, 1686, 1948, 1819, 1592, 1420, 1292, 1237, 1167, 1137, 1113, 1135, 1139, 1175, 1204, 1281, 1383, 1525, 1756, 2721]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2208, 1666, 1485, 1333, 1272, 1217, 1188, 1184, 1162, 1175, 1186, 1246, 1301, 1419, 1563, 1818, 2751, 1847, 1638, 1457, 1324, 1257, 1236, 1181, 1170, 1175, 1193, 1192, 1238, 1300, 1401, 1572, 1762, 2586, 1749, 1552, 1399, 1302, 1227, 1189, 1165, 1147, 1140, 1152, 1192, 1213, 1279, 1364, 1504, 1714, 1988, 1641, 1520, 1354, 1245, 1190, 1150, 1126, 1107, 1117, 1106, 1138, 1177, 1225, 1304, 1448, 1624, 1892, 1633, 1448, 1313, 1227, 1174, 1131, 1106, 1085, 1084, 1103, 1122, 1164, 1209, 1274, 1408, 1553, 1803, 1578, 1427, 1298, 1208, 1155, 1119, 1091, 1076, 1093, 1077, 1117, 1134, 1192, 1253, 1389, 1541, 1755, 1570, 1390, 1261, 1207, 1147, 1107, 1073, 1062, 1063, 1084, 1101, 1144, 1185, 1246, 1363, 1517, 1742, 1524, 1385, 1239, 1177, 1120, 1083, 1065, 1040, 1043, 1064, 1080, 1126, 1175, 1237, 1336, 1501, 1699, 1543, 1353, 1229, 1162, 1123, 1069, 1058, 1024, 1025, 1046, 1081, 1114, 1150, 1217, 1311, 1502, 1674, 1522, 1372, 1233, 1175, 1108, 1085, 1046, 1039, 1039, 1051, 1076, 1112, 1161, 1228, 1332, 1487, 1673, 1548, 1390, 1243, 1173, 1130, 1084, 1059, 1038, 1039, 1059, 1082, 1108, 1163, 1239, 1346, 1496, 1722, 1558, 1377, 1255, 1175, 1134, 1081, 1060, 1052, 1060, 1070, 1092, 1115, 1163, 1238, 1341, 1509, 1742, 1561, 1406, 1276, 1177, 1119, 1089, 1057, 1039, 1057, 1060, 1097, 1120, 1179, 1244, 1367, 1527, 1718, 1601, 1433, 1278, 1187, 1132, 1096, 1078, 1061, 1073, 1069, 1091, 1119, 1186, 1259, 1378, 1556, 1812, 1686, 1485, 1303, 1217, 1169, 1131, 1097, 1103, 1097, 1101, 1132, 1162, 1207, 1306, 1437, 1606, 1860, 1773, 1533, 1345, 1249, 1195, 1149, 1123, 1116, 1126, 1122, 1142, 1194, 1236, 1338, 1472, 1681, 1978, 1823, 1595, 1405, 1290, 1211, 1176, 1149, 1132, 1134, 1140, 1161, 1202, 1267, 1379, 1547, 1717, 2751]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2109, 1567, 1392, 1267, 1237, 1169, 1154, 1124, 1151, 1141, 1173, 1236, 1296, 1430, 1568, 1768, 2742, 1758, 1593, 1394, 1314, 1238, 1209, 1190, 1177, 1174, 1166, 1204, 1266, 1295, 1394, 1539, 1754, 2563, 1720, 1526, 1364, 1263, 1211, 1179, 1145, 1128, 1143, 1163, 1166, 1208, 1260, 1346, 1496, 1700, 2013, 1621, 1440, 1314, 1220, 1187, 1140, 1147, 1119, 1113, 1134, 1146, 1180, 1241, 1306, 1436, 1616, 1864, 1561, 1391, 1285, 1185, 1177, 1109, 1101, 1104, 1089, 1095, 1132, 1145, 1226, 1281, 1403, 1575, 1778, 1522, 1414, 1248, 1184, 1138, 1116, 1087, 1083, 1057, 1096, 1124, 1157, 1223, 1263, 1398, 1545, 1722, 1502, 1364, 1241, 1185, 1119, 1099, 1082, 1062, 1060, 1075, 1108, 1138, 1194, 1235, 1347, 1563, 1688, 1488, 1348, 1236, 1154, 1100, 1098, 1052, 1049, 1043, 1056, 1093, 1112, 1180, 1219, 1344, 1493, 1700, 1469, 1338, 1216, 1149, 1114, 1059, 1048, 1041, 1033, 1060, 1072, 1102, 1164, 1205, 1329, 1488, 1693, 1490, 1321, 1205, 1155, 1102, 1044, 1044, 1050, 1035, 1042, 1082, 1113, 1172, 1214, 1311, 1471, 1632, 1484, 1359, 1214, 1147, 1091, 1053, 1068, 1024, 1033, 1063, 1074, 1114, 1175, 1252, 1307, 1475, 1678, 1471, 1342, 1232, 1154, 1106, 1070, 1049, 1024, 1038, 1065, 1094, 1119, 1159, 1228, 1349, 1499, 1712, 1524, 1353, 1229, 1168, 1117, 1050, 1043, 1050, 1044, 1068, 1080, 1107, 1184, 1210, 1352, 1489, 1688, 1545, 1389, 1211, 1156, 1114, 1091, 1082, 1061, 1065, 1060, 1093, 1137, 1210, 1254, 1356, 1536, 1753, 1628, 1429, 1273, 1166, 1148, 1110, 1076, 1091, 1075, 1078, 1113, 1158, 1208, 1279, 1432, 1627, 1806, 1724, 1477, 1304, 1234, 1157, 1112, 1102, 1090, 1090, 1111, 1152, 1162, 1230, 1306, 1439, 1626, 1899, 1710, 1489, 1354, 1231, 1189, 1135, 1136, 1116, 1109, 1127, 1169, 1198, 1212, 1351, 1473, 1730, 2742]
                                       }
                                   }, {
                                       "name":    "2560x1440_D65_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2417, 1961, 1691, 1530, 1417, 1345, 1275, 1233, 1223, 1233, 1259, 1317, 1391, 1522, 1671, 1947, 2371, 2274, 1900, 1626, 1483, 1375, 1300, 1237, 1204, 1182, 1195, 1232, 1284, 1340, 1469, 1608, 1862, 2274, 2189, 1815, 1572, 1443, 1339, 1261, 1208, 1178, 1157, 1161, 1199, 1242, 1323, 1443, 1564, 1793, 2154, 2105, 1756, 1549, 1421, 1307, 1235, 1170, 1142, 1131, 1142, 1174, 1226, 1292, 1415, 1557, 1745, 2137, 2021, 1725, 1530, 1390, 1294, 1207, 1154, 1110, 1096, 1110, 1135, 1199, 1279, 1384, 1507, 1715, 2021, 1966, 1690, 1492, 1367, 1262, 1177, 1124, 1087, 1067, 1077, 1113, 1189, 1252, 1351, 1492, 1671, 1966, 1972, 1642, 1478, 1347, 1246, 1164, 1106, 1064, 1049, 1061, 1103, 1161, 1241, 1347, 1465, 1633, 1933, 1919, 1643, 1466, 1343, 1244, 1152, 1095, 1045, 1034, 1048, 1082, 1144, 1217, 1327, 1446, 1634, 1944, 1922, 1629, 1456, 1324, 1224, 1154, 1078, 1038, 1024, 1041, 1078, 1139, 1215, 1314, 1456, 1629, 1897, 1894, 1617, 1459, 1333, 1217, 1148, 1082, 1039, 1025, 1030, 1076, 1137, 1204, 1306, 1440, 1617, 1894, 1895, 1633, 1458, 1341, 1228, 1149, 1086, 1046, 1022, 1043, 1076, 1131, 1215, 1325, 1451, 1616, 1895, 1953, 1644, 1485, 1345, 1234, 1161, 1096, 1054, 1042, 1051, 1089, 1142, 1230, 1334, 1451, 1644, 1939, 1993, 1658, 1493, 1355, 1260, 1170, 1113, 1073, 1063, 1066, 1106, 1162, 1236, 1344, 1486, 1658, 1952, 2043, 1695, 1503, 1366, 1272, 1191, 1135, 1095, 1085, 1102, 1131, 1183, 1267, 1366, 1496, 1695, 2028, 2104, 1749, 1532, 1404, 1301, 1219, 1162, 1127, 1115, 1123, 1150, 1214, 1270, 1386, 1524, 1718, 2088, 2162, 1802, 1573, 1448, 1329, 1245, 1196, 1165, 1145, 1153, 1192, 1240, 1323, 1428, 1565, 1791, 2162, 2266, 1880, 1623, 1477, 1354, 1284, 1230, 1183, 1174, 1187, 1221, 1289, 1366, 1462, 1623, 1867, 2307]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2243, 1868, 1607, 1465, 1373, 1288, 1249, 1221, 1196, 1212, 1249, 1288, 1352, 1451, 1607, 1855, 2224, 2152, 1810, 1560, 1431, 1335, 1261, 1207, 1186, 1167, 1178, 1207, 1266, 1327, 1431, 1552, 1781, 2110, 2064, 1730, 1508, 1390, 1308, 1232, 1182, 1144, 1140, 1146, 1170, 1232, 1303, 1393, 1508, 1730, 2057, 1985, 1688, 1492, 1371, 1284, 1202, 1158, 1123, 1112, 1124, 1147, 1208, 1269, 1368, 1489, 1664, 1971, 1953, 1652, 1472, 1356, 1261, 1184, 1130, 1095, 1077, 1090, 1125, 1180, 1254, 1348, 1469, 1634, 1914, 1878, 1621, 1451, 1336, 1245, 1168, 1113, 1075, 1058, 1065, 1107, 1164, 1234, 1325, 1451, 1612, 1878, 1872, 1598, 1439, 1316, 1226, 1146, 1090, 1055, 1040, 1045, 1089, 1142, 1219, 1308, 1436, 1586, 1849, 1831, 1575, 1425, 1308, 1215, 1149, 1077, 1041, 1024, 1039, 1074, 1136, 1209, 1303, 1422, 1575, 1836, 1829, 1570, 1412, 1306, 1211, 1129, 1066, 1029, 1024, 1026, 1068, 1127, 1198, 1295, 1421, 1562, 1812, 1831, 1559, 1419, 1303, 1207, 1132, 1072, 1033, 1021, 1030, 1066, 1123, 1207, 1286, 1415, 1563, 1836, 1854, 1578, 1426, 1303, 1213, 1139, 1082, 1047, 1025, 1035, 1072, 1131, 1202, 1291, 1423, 1574, 1825, 1878, 1591, 1428, 1317, 1227, 1149, 1097, 1059, 1044, 1053, 1085, 1149, 1219, 1314, 1428, 1583, 1854, 1914, 1612, 1442, 1337, 1245, 1170, 1110, 1079, 1066, 1075, 1103, 1158, 1231, 1326, 1439, 1599, 1876, 1964, 1650, 1475, 1353, 1259, 1187, 1135, 1103, 1088, 1096, 1132, 1181, 1259, 1345, 1461, 1636, 1924, 2034, 1700, 1490, 1390, 1287, 1214, 1160, 1125, 1118, 1125, 1154, 1207, 1275, 1365, 1482, 1690, 2011, 2101, 1765, 1536, 1402, 1316, 1241, 1194, 1161, 1147, 1151, 1181, 1241, 1311, 1399, 1532, 1737, 2085, 2176, 1830, 1585, 1441, 1352, 1267, 1220, 1187, 1163, 1187, 1204, 1257, 1328, 1420, 1581, 1806, 2186]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2246, 1880, 1623, 1476, 1380, 1298, 1249, 1226, 1216, 1224, 1259, 1295, 1356, 1472, 1632, 1886, 2255, 2165, 1805, 1571, 1435, 1349, 1273, 1219, 1194, 1177, 1187, 1214, 1273, 1340, 1435, 1567, 1799, 2156, 2069, 1737, 1523, 1406, 1318, 1249, 1190, 1151, 1144, 1159, 1192, 1242, 1313, 1409, 1531, 1742, 2069, 2005, 1685, 1489, 1384, 1286, 1216, 1164, 1134, 1116, 1130, 1162, 1212, 1284, 1375, 1503, 1685, 2012, 1945, 1654, 1483, 1358, 1271, 1194, 1134, 1103, 1093, 1099, 1138, 1190, 1257, 1356, 1480, 1645, 1932, 1902, 1624, 1456, 1349, 1244, 1173, 1117, 1082, 1068, 1080, 1115, 1167, 1246, 1338, 1456, 1624, 1909, 1867, 1598, 1437, 1332, 1240, 1159, 1101, 1060, 1043, 1062, 1101, 1152, 1227, 1329, 1456, 1598, 1867, 1837, 1582, 1432, 1316, 1225, 1152, 1086, 1048, 1038, 1049, 1084, 1143, 1219, 1311, 1445, 1594, 1849, 1852, 1589, 1429, 1313, 1221, 1147, 1081, 1038, 1024, 1041, 1073, 1134, 1210, 1298, 1432, 1581, 1841, 1837, 1582, 1426, 1313, 1225, 1140, 1082, 1043, 1026, 1040, 1070, 1134, 1210, 1303, 1423, 1586, 1837, 1843, 1593, 1424, 1314, 1218, 1141, 1091, 1045, 1028, 1047, 1078, 1137, 1212, 1311, 1431, 1593, 1855, 1878, 1607, 1436, 1327, 1233, 1160, 1101, 1058, 1046, 1055, 1098, 1148, 1224, 1327, 1446, 1603, 1878, 1913, 1632, 1453, 1347, 1246, 1174, 1118, 1083, 1070, 1079, 1114, 1162, 1239, 1339, 1456, 1628, 1913, 1991, 1662, 1479, 1361, 1272, 1197, 1141, 1112, 1091, 1105, 1139, 1188, 1262, 1355, 1482, 1662, 1970, 2046, 1716, 1512, 1385, 1297, 1221, 1167, 1132, 1116, 1134, 1163, 1219, 1287, 1376, 1501, 1697, 2009, 2122, 1771, 1543, 1422, 1326, 1246, 1201, 1169, 1153, 1163, 1186, 1244, 1315, 1416, 1531, 1754, 2105, 2217, 1848, 1592, 1458, 1347, 1272, 1227, 1194, 1181, 1194, 1225, 1270, 1341, 1437, 1587, 1824, 2161]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2162, 1787, 1563, 1425, 1341, 1278, 1228, 1197, 1205, 1201, 1224, 1288, 1341, 1431, 1579, 1821, 2145, 2064, 1757, 1531, 1421, 1320, 1256, 1210, 1177, 1173, 1173, 1202, 1256, 1320, 1421, 1531, 1757, 2080, 1978, 1684, 1503, 1402, 1291, 1228, 1178, 1148, 1145, 1152, 1182, 1228, 1301, 1390, 1510, 1684, 1992, 1931, 1674, 1486, 1362, 1289, 1207, 1153, 1121, 1118, 1125, 1160, 1207, 1275, 1362, 1480, 1656, 1931, 1857, 1634, 1452, 1358, 1259, 1195, 1140, 1110, 1094, 1100, 1140, 1195, 1255, 1352, 1465, 1634, 1869, 1849, 1590, 1440, 1323, 1241, 1168, 1116, 1082, 1070, 1079, 1116, 1165, 1241, 1334, 1446, 1614, 1838, 1802, 1574, 1423, 1331, 1235, 1153, 1097, 1055, 1044, 1067, 1104, 1157, 1227, 1326, 1435, 1590, 1823, 1823, 1553, 1413, 1308, 1225, 1153, 1094, 1044, 1033, 1047, 1087, 1142, 1213, 1318, 1425, 1576, 1802, 1795, 1556, 1410, 1311, 1219, 1144, 1083, 1040, 1024, 1043, 1074, 1130, 1211, 1306, 1422, 1563, 1795, 1771, 1553, 1413, 1304, 1221, 1138, 1078, 1041, 1033, 1041, 1075, 1135, 1209, 1299, 1419, 1568, 1812, 1802, 1559, 1411, 1301, 1227, 1146, 1091, 1047, 1033, 1050, 1081, 1143, 1214, 1311, 1423, 1574, 1791, 1816, 1574, 1422, 1323, 1236, 1157, 1100, 1067, 1052, 1055, 1097, 1157, 1236, 1318, 1440, 1590, 1838, 1834, 1600, 1440, 1337, 1237, 1172, 1119, 1084, 1072, 1080, 1122, 1172, 1242, 1326, 1446, 1617, 1869, 1918, 1639, 1466, 1351, 1275, 1191, 1142, 1115, 1092, 1104, 1128, 1203, 1261, 1356, 1460, 1639, 1918, 1964, 1684, 1489, 1378, 1286, 1211, 1167, 1134, 1123, 1134, 1155, 1211, 1281, 1372, 1496, 1674, 1978, 2034, 1736, 1523, 1415, 1315, 1243, 1194, 1165, 1150, 1158, 1185, 1234, 1309, 1409, 1523, 1726, 2034, 2094, 1810, 1579, 1431, 1341, 1273, 1215, 1193, 1184, 1193, 1211, 1268, 1352, 1425, 1579, 1810, 2111]
                                       }
                                   }, {
                                       "name":    "2560x1440_D65_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2425, 1757, 1558, 1399, 1293, 1229, 1185, 1172, 1167, 1175, 1201, 1222, 1318, 1462, 1616, 1877, 2884, 2056, 1752, 1465, 1352, 1278, 1208, 1173, 1179, 1152, 1167, 1189, 1240, 1294, 1416, 1591, 1833, 2715, 2000, 1686, 1434, 1323, 1227, 1190, 1152, 1153, 1125, 1148, 1144, 1201, 1263, 1354, 1492, 1753, 2080, 1888, 1583, 1380, 1280, 1209, 1147, 1137, 1118, 1117, 1130, 1148, 1168, 1252, 1321, 1475, 1665, 1987, 1822, 1548, 1366, 1253, 1183, 1146, 1120, 1084, 1095, 1115, 1130, 1161, 1214, 1298, 1410, 1642, 1902, 1721, 1496, 1328, 1222, 1178, 1121, 1101, 1060, 1060, 1073, 1107, 1144, 1189, 1255, 1393, 1576, 1810, 1712, 1473, 1281, 1215, 1151, 1123, 1068, 1056, 1054, 1056, 1089, 1118, 1174, 1247, 1335, 1548, 1809, 1728, 1459, 1280, 1204, 1156, 1089, 1055, 1033, 1042, 1040, 1083, 1115, 1161, 1228, 1339, 1545, 1775, 1670, 1469, 1283, 1198, 1146, 1099, 1062, 1031, 1035, 1048, 1084, 1112, 1161, 1220, 1359, 1548, 1774, 1649, 1461, 1284, 1196, 1135, 1094, 1062, 1024, 1035, 1046, 1081, 1109, 1153, 1211, 1334, 1502, 1751, 1722, 1459, 1269, 1207, 1121, 1100, 1045, 1033, 1033, 1054, 1075, 1115, 1157, 1231, 1308, 1514, 1744, 1709, 1493, 1317, 1202, 1150, 1095, 1068, 1042, 1043, 1055, 1087, 1105, 1163, 1219, 1372, 1567, 1786, 1808, 1511, 1325, 1228, 1162, 1119, 1090, 1074, 1056, 1072, 1104, 1135, 1197, 1248, 1387, 1572, 1851, 1810, 1561, 1361, 1247, 1180, 1135, 1096, 1087, 1087, 1095, 1126, 1147, 1193, 1274, 1401, 1627, 1882, 1913, 1643, 1407, 1252, 1171, 1153, 1110, 1099, 1099, 1113, 1129, 1163, 1222, 1321, 1438, 1693, 1963, 1934, 1677, 1441, 1295, 1221, 1159, 1148, 1108, 1112, 1126, 1161, 1194, 1243, 1343, 1516, 1755, 2061, 2101, 1818, 1517, 1368, 1288, 1191, 1176, 1172, 1162, 1159, 1186, 1225, 1319, 1419, 1599, 1846, 2884]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2290, 1668, 1476, 1330, 1251, 1184, 1153, 1136, 1151, 1148, 1179, 1213, 1290, 1399, 1559, 1788, 2718, 1862, 1614, 1415, 1295, 1204, 1169, 1145, 1142, 1130, 1149, 1177, 1200, 1261, 1356, 1530, 1732, 2491, 1780, 1556, 1371, 1261, 1191, 1160, 1129, 1112, 1118, 1121, 1148, 1179, 1223, 1323, 1461, 1657, 1944, 1684, 1500, 1339, 1236, 1168, 1137, 1113, 1097, 1100, 1107, 1130, 1170, 1221, 1290, 1428, 1611, 1880, 1666, 1444, 1300, 1206, 1154, 1114, 1096, 1072, 1082, 1077, 1112, 1156, 1187, 1263, 1384, 1551, 1767, 1614, 1411, 1273, 1184, 1130, 1115, 1081, 1064, 1059, 1072, 1102, 1116, 1177, 1225, 1331, 1512, 1739, 1559, 1392, 1242, 1159, 1116, 1089, 1056, 1039, 1042, 1064, 1068, 1119, 1170, 1212, 1318, 1489, 1676, 1554, 1372, 1250, 1170, 1119, 1082, 1065, 1038, 1041, 1054, 1077, 1116, 1157, 1222, 1319, 1470, 1650, 1552, 1380, 1242, 1171, 1130, 1087, 1055, 1045, 1030, 1051, 1078, 1110, 1155, 1220, 1313, 1463, 1657, 1564, 1369, 1233, 1162, 1104, 1078, 1046, 1033, 1028, 1049, 1071, 1107, 1142, 1209, 1298, 1463, 1674, 1531, 1363, 1224, 1163, 1097, 1073, 1050, 1024, 1028, 1030, 1070, 1108, 1138, 1202, 1300, 1459, 1669, 1557, 1397, 1251, 1163, 1113, 1080, 1061, 1032, 1040, 1042, 1076, 1109, 1145, 1203, 1308, 1474, 1665, 1621, 1425, 1278, 1177, 1133, 1084, 1066, 1054, 1060, 1061, 1084, 1120, 1162, 1217, 1342, 1509, 1723, 1644, 1463, 1292, 1177, 1142, 1095, 1084, 1061, 1063, 1079, 1089, 1129, 1187, 1232, 1358, 1543, 1751, 1717, 1506, 1315, 1211, 1150, 1115, 1088, 1077, 1069, 1075, 1108, 1127, 1192, 1266, 1400, 1577, 1809, 1771, 1566, 1360, 1231, 1165, 1131, 1107, 1089, 1098, 1092, 1117, 1156, 1201, 1287, 1421, 1617, 1917, 1880, 1632, 1410, 1300, 1229, 1159, 1128, 1109, 1117, 1126, 1156, 1175, 1265, 1354, 1493, 1713, 2718]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2214, 1657, 1447, 1338, 1229, 1190, 1151, 1141, 1144, 1131, 1157, 1192, 1282, 1386, 1562, 1785, 2729, 1845, 1608, 1434, 1302, 1201, 1178, 1142, 1124, 1132, 1148, 1165, 1202, 1257, 1347, 1506, 1721, 2529, 1759, 1539, 1384, 1243, 1187, 1165, 1124, 1111, 1102, 1123, 1141, 1179, 1221, 1328, 1483, 1657, 1942, 1699, 1472, 1336, 1238, 1178, 1141, 1111, 1097, 1094, 1106, 1131, 1165, 1202, 1293, 1424, 1604, 1845, 1648, 1454, 1282, 1203, 1159, 1119, 1088, 1071, 1075, 1086, 1112, 1150, 1190, 1260, 1380, 1554, 1780, 1593, 1414, 1272, 1166, 1139, 1094, 1076, 1054, 1054, 1064, 1106, 1124, 1157, 1226, 1337, 1511, 1727, 1577, 1379, 1246, 1177, 1117, 1082, 1065, 1036, 1048, 1056, 1074, 1106, 1161, 1213, 1319, 1487, 1705, 1545, 1387, 1256, 1160, 1117, 1078, 1052, 1041, 1036, 1042, 1073, 1106, 1166, 1225, 1317, 1464, 1688, 1545, 1393, 1247, 1153, 1113, 1076, 1053, 1037, 1024, 1043, 1080, 1115, 1151, 1226, 1323, 1464, 1670, 1537, 1365, 1239, 1150, 1106, 1080, 1045, 1030, 1032, 1042, 1071, 1095, 1150, 1213, 1304, 1459, 1654, 1539, 1370, 1238, 1151, 1111, 1070, 1046, 1025, 1026, 1035, 1056, 1092, 1142, 1196, 1304, 1465, 1652, 1566, 1405, 1251, 1171, 1115, 1079, 1053, 1037, 1037, 1050, 1062, 1107, 1147, 1216, 1325, 1464, 1683, 1612, 1413, 1270, 1171, 1124, 1096, 1078, 1059, 1055, 1056, 1099, 1115, 1163, 1226, 1338, 1505, 1718, 1654, 1460, 1293, 1201, 1143, 1108, 1085, 1079, 1068, 1068, 1104, 1129, 1187, 1241, 1352, 1553, 1753, 1727, 1511, 1315, 1221, 1155, 1116, 1092, 1076, 1080, 1081, 1098, 1138, 1181, 1253, 1383, 1588, 1812, 1762, 1570, 1360, 1228, 1166, 1132, 1110, 1090, 1093, 1096, 1120, 1154, 1192, 1304, 1430, 1619, 1889, 1856, 1639, 1414, 1297, 1220, 1168, 1128, 1136, 1117, 1120, 1148, 1185, 1257, 1342, 1525, 1705, 2729]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2153, 1597, 1428, 1296, 1236, 1184, 1158, 1150, 1150, 1164, 1181, 1238, 1288, 1414, 1542, 1771, 2588, 1757, 1581, 1396, 1281, 1228, 1175, 1163, 1145, 1164, 1173, 1180, 1221, 1284, 1383, 1528, 1719, 2445, 1711, 1511, 1351, 1243, 1206, 1159, 1148, 1147, 1133, 1142, 1153, 1217, 1252, 1343, 1480, 1640, 1929, 1648, 1461, 1315, 1231, 1179, 1164, 1139, 1124, 1127, 1138, 1157, 1192, 1252, 1315, 1432, 1643, 1855, 1574, 1422, 1281, 1197, 1162, 1143, 1126, 1099, 1097, 1122, 1149, 1177, 1239, 1280, 1391, 1586, 1779, 1549, 1393, 1264, 1185, 1140, 1112, 1094, 1081, 1081, 1080, 1116, 1157, 1199, 1280, 1351, 1512, 1699, 1488, 1354, 1241, 1176, 1127, 1095, 1084, 1071, 1055, 1073, 1097, 1127, 1181, 1235, 1326, 1493, 1671, 1496, 1349, 1233, 1153, 1136, 1096, 1081, 1048, 1049, 1071, 1102, 1127, 1178, 1222, 1337, 1498, 1649, 1480, 1361, 1219, 1167, 1119, 1090, 1066, 1064, 1051, 1055, 1091, 1129, 1164, 1237, 1339, 1487, 1663, 1525, 1339, 1219, 1155, 1114, 1087, 1050, 1036, 1037, 1074, 1088, 1112, 1161, 1231, 1312, 1461, 1656, 1503, 1340, 1229, 1157, 1118, 1077, 1052, 1024, 1031, 1058, 1069, 1118, 1157, 1214, 1297, 1443, 1638, 1491, 1376, 1217, 1156, 1113, 1078, 1061, 1042, 1058, 1073, 1088, 1125, 1168, 1241, 1327, 1484, 1664, 1557, 1391, 1269, 1181, 1131, 1091, 1073, 1066, 1050, 1070, 1110, 1134, 1178, 1232, 1338, 1504, 1686, 1588, 1422, 1277, 1188, 1142, 1098, 1081, 1066, 1075, 1075, 1118, 1143, 1183, 1230, 1361, 1522, 1754, 1651, 1455, 1295, 1199, 1136, 1113, 1088, 1083, 1070, 1098, 1117, 1170, 1192, 1258, 1382, 1549, 1757, 1699, 1519, 1320, 1231, 1166, 1126, 1110, 1089, 1094, 1099, 1127, 1146, 1193, 1300, 1402, 1593, 1843, 1790, 1551, 1364, 1241, 1200, 1152, 1142, 1111, 1112, 1125, 1154, 1168, 1245, 1352, 1471, 1641, 2588]
                                       }
                                   }, {
                                       "name":    "2560x1440_D75_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2407, 1987, 1731, 1539, 1418, 1330, 1272, 1235, 1221, 1231, 1232, 1297, 1356, 1470, 1605, 1852, 2278, 2307, 1911, 1644, 1499, 1389, 1292, 1239, 1193, 1180, 1185, 1207, 1252, 1331, 1416, 1557, 1767, 2157, 2202, 1826, 1606, 1452, 1352, 1268, 1206, 1168, 1144, 1148, 1177, 1217, 1288, 1381, 1495, 1687, 2053, 2133, 1776, 1574, 1429, 1320, 1228, 1172, 1130, 1116, 1112, 1141, 1185, 1255, 1351, 1469, 1647, 1968, 2062, 1735, 1538, 1398, 1291, 1197, 1141, 1096, 1079, 1082, 1120, 1165, 1239, 1313, 1433, 1613, 1910, 2033, 1709, 1514, 1393, 1269, 1188, 1113, 1073, 1051, 1057, 1092, 1137, 1215, 1304, 1413, 1568, 1850, 2025, 1688, 1493, 1371, 1267, 1167, 1113, 1055, 1034, 1039, 1076, 1133, 1200, 1281, 1408, 1559, 1822, 1995, 1679, 1502, 1362, 1255, 1174, 1095, 1051, 1034, 1033, 1069, 1114, 1194, 1284, 1404, 1553, 1788, 1999, 1682, 1512, 1353, 1258, 1172, 1094, 1041, 1024, 1035, 1061, 1120, 1188, 1291, 1388, 1556, 1814, 2009, 1716, 1509, 1373, 1246, 1154, 1092, 1039, 1022, 1033, 1059, 1111, 1190, 1289, 1386, 1537, 1810, 2025, 1688, 1507, 1377, 1253, 1163, 1099, 1045, 1025, 1031, 1060, 1122, 1188, 1276, 1384, 1536, 1822, 2033, 1709, 1522, 1369, 1260, 1172, 1092, 1054, 1030, 1039, 1066, 1116, 1189, 1284, 1401, 1544, 1804, 2062, 1725, 1509, 1368, 1267, 1169, 1105, 1063, 1044, 1047, 1071, 1123, 1190, 1277, 1389, 1547, 1824, 2117, 1755, 1534, 1392, 1274, 1194, 1123, 1081, 1068, 1064, 1090, 1130, 1209, 1291, 1402, 1568, 1863, 2184, 1792, 1573, 1425, 1298, 1203, 1152, 1096, 1089, 1082, 1114, 1153, 1215, 1317, 1411, 1602, 1883, 2287, 1860, 1600, 1449, 1325, 1232, 1173, 1132, 1113, 1117, 1140, 1183, 1251, 1324, 1450, 1662, 1980, 2341, 1973, 1670, 1492, 1356, 1265, 1214, 1160, 1135, 1143, 1165, 1221, 1271, 1369, 1495, 1701, 2058]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2266, 1927, 1658, 1506, 1394, 1318, 1259, 1230, 1217, 1222, 1254, 1283, 1348, 1434, 1580, 1795, 2158, 2216, 1841, 1595, 1460, 1354, 1278, 1225, 1189, 1175, 1177, 1199, 1250, 1312, 1394, 1521, 1720, 2040, 2115, 1771, 1542, 1427, 1324, 1238, 1190, 1154, 1135, 1141, 1163, 1209, 1275, 1363, 1468, 1656, 1958, 2024, 1711, 1514, 1392, 1290, 1211, 1157, 1114, 1101, 1107, 1134, 1179, 1246, 1321, 1437, 1602, 1877, 1981, 1678, 1488, 1357, 1265, 1184, 1123, 1087, 1072, 1081, 1105, 1150, 1224, 1299, 1413, 1551, 1826, 1964, 1649, 1472, 1354, 1253, 1178, 1113, 1063, 1049, 1055, 1087, 1135, 1201, 1282, 1388, 1539, 1772, 1947, 1648, 1464, 1339, 1243, 1162, 1094, 1051, 1033, 1038, 1076, 1125, 1194, 1274, 1390, 1521, 1744, 1940, 1641, 1469, 1344, 1240, 1159, 1089, 1045, 1026, 1035, 1069, 1119, 1189, 1276, 1375, 1523, 1750, 1932, 1644, 1482, 1344, 1242, 1158, 1084, 1038, 1024, 1034, 1067, 1116, 1190, 1270, 1367, 1516, 1744, 1952, 1649, 1479, 1346, 1244, 1154, 1094, 1042, 1028, 1028, 1061, 1119, 1186, 1265, 1378, 1509, 1750, 1965, 1652, 1477, 1349, 1243, 1153, 1096, 1043, 1027, 1036, 1062, 1120, 1189, 1267, 1367, 1514, 1735, 1964, 1670, 1485, 1352, 1244, 1162, 1097, 1050, 1037, 1041, 1070, 1114, 1183, 1264, 1371, 1510, 1747, 1994, 1686, 1485, 1357, 1252, 1163, 1107, 1065, 1045, 1052, 1079, 1122, 1195, 1270, 1367, 1515, 1762, 2074, 1706, 1510, 1366, 1264, 1183, 1113, 1080, 1062, 1064, 1090, 1135, 1199, 1279, 1380, 1535, 1803, 2100, 1750, 1535, 1391, 1282, 1200, 1143, 1105, 1087, 1093, 1107, 1148, 1214, 1296, 1395, 1559, 1852, 2199, 1830, 1571, 1422, 1312, 1226, 1169, 1130, 1114, 1109, 1131, 1175, 1234, 1313, 1418, 1604, 1909, 2285, 1901, 1622, 1457, 1343, 1261, 1194, 1150, 1135, 1146, 1160, 1200, 1252, 1346, 1455, 1681, 1977]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2271, 1919, 1653, 1499, 1392, 1319, 1264, 1234, 1214, 1221, 1255, 1299, 1360, 1448, 1580, 1806, 2146, 2222, 1858, 1595, 1461, 1355, 1284, 1228, 1186, 1176, 1184, 1207, 1254, 1320, 1398, 1525, 1729, 2076, 2113, 1770, 1554, 1415, 1320, 1240, 1187, 1150, 1138, 1141, 1166, 1212, 1271, 1372, 1472, 1651, 1963, 2037, 1716, 1518, 1384, 1288, 1210, 1151, 1112, 1103, 1107, 1133, 1177, 1245, 1325, 1444, 1602, 1888, 1986, 1682, 1486, 1361, 1264, 1187, 1130, 1090, 1066, 1077, 1108, 1151, 1221, 1305, 1411, 1575, 1825, 1951, 1653, 1476, 1347, 1250, 1163, 1108, 1066, 1046, 1060, 1089, 1134, 1210, 1288, 1392, 1539, 1797, 1934, 1640, 1468, 1347, 1246, 1159, 1092, 1055, 1029, 1042, 1074, 1126, 1194, 1282, 1393, 1540, 1759, 1933, 1645, 1464, 1350, 1239, 1150, 1095, 1043, 1032, 1037, 1068, 1122, 1191, 1275, 1382, 1524, 1764, 1931, 1657, 1479, 1340, 1235, 1154, 1091, 1040, 1024, 1034, 1062, 1119, 1191, 1273, 1373, 1527, 1743, 1933, 1662, 1467, 1345, 1239, 1157, 1089, 1041, 1025, 1031, 1060, 1117, 1193, 1268, 1382, 1520, 1759, 1952, 1661, 1474, 1350, 1238, 1157, 1094, 1048, 1022, 1029, 1066, 1116, 1188, 1277, 1374, 1511, 1759, 1976, 1674, 1483, 1347, 1248, 1157, 1096, 1049, 1032, 1039, 1069, 1122, 1186, 1265, 1372, 1514, 1771, 2013, 1678, 1489, 1358, 1253, 1170, 1101, 1064, 1045, 1053, 1084, 1128, 1185, 1267, 1379, 1529, 1767, 2037, 1706, 1507, 1365, 1265, 1179, 1121, 1080, 1068, 1064, 1088, 1139, 1200, 1285, 1384, 1539, 1797, 2075, 1755, 1513, 1386, 1283, 1198, 1137, 1099, 1079, 1086, 1107, 1151, 1213, 1292, 1398, 1563, 1851, 2179, 1813, 1563, 1419, 1307, 1227, 1170, 1126, 1107, 1112, 1136, 1176, 1231, 1308, 1425, 1617, 1908, 2281, 1888, 1614, 1465, 1338, 1257, 1191, 1151, 1130, 1136, 1155, 1196, 1263, 1335, 1466, 1675, 1975]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2191, 1892, 1605, 1457, 1380, 1288, 1258, 1215, 1193, 1204, 1222, 1275, 1325, 1411, 1540, 1779, 2073, 2112, 1797, 1566, 1447, 1340, 1273, 1218, 1187, 1166, 1180, 1200, 1232, 1303, 1398, 1493, 1689, 1993, 2051, 1734, 1525, 1407, 1313, 1236, 1190, 1145, 1133, 1135, 1166, 1206, 1258, 1346, 1446, 1613, 1875, 1953, 1680, 1501, 1360, 1288, 1209, 1157, 1121, 1093, 1109, 1125, 1167, 1240, 1309, 1421, 1575, 1806, 1922, 1640, 1462, 1355, 1261, 1183, 1129, 1087, 1075, 1079, 1099, 1151, 1215, 1292, 1392, 1542, 1791, 1886, 1618, 1454, 1350, 1247, 1162, 1114, 1069, 1057, 1056, 1091, 1137, 1196, 1272, 1380, 1518, 1726, 1874, 1613, 1462, 1349, 1247, 1160, 1093, 1052, 1036, 1042, 1073, 1123, 1189, 1276, 1364, 1489, 1710, 1856, 1615, 1459, 1338, 1243, 1157, 1090, 1048, 1032, 1043, 1074, 1121, 1189, 1267, 1362, 1504, 1687, 1889, 1639, 1468, 1336, 1249, 1150, 1090, 1048, 1024, 1035, 1068, 1123, 1188, 1273, 1360, 1501, 1715, 1876, 1629, 1459, 1343, 1250, 1157, 1090, 1041, 1029, 1038, 1074, 1127, 1189, 1271, 1362, 1498, 1695, 1905, 1634, 1457, 1340, 1247, 1160, 1095, 1050, 1024, 1037, 1060, 1114, 1189, 1267, 1359, 1501, 1710, 1886, 1633, 1459, 1354, 1239, 1162, 1096, 1050, 1034, 1040, 1069, 1113, 1185, 1260, 1351, 1487, 1701, 1911, 1647, 1474, 1341, 1246, 1160, 1105, 1063, 1048, 1047, 1077, 1125, 1180, 1255, 1352, 1497, 1711, 1964, 1672, 1483, 1365, 1256, 1181, 1113, 1078, 1062, 1064, 1087, 1131, 1192, 1270, 1363, 1502, 1740, 1989, 1717, 1500, 1376, 1266, 1191, 1130, 1093, 1079, 1075, 1099, 1147, 1203, 1278, 1359, 1534, 1784, 2071, 1778, 1532, 1398, 1285, 1217, 1165, 1114, 1093, 1096, 1128, 1166, 1215, 1290, 1399, 1571, 1843, 2160, 1818, 1575, 1440, 1325, 1241, 1173, 1150, 1127, 1127, 1145, 1202, 1244, 1327, 1431, 1620, 1859]
                                       }
                                   }, {
                                       "name":    "2560x1440_D75_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2418, 1784, 1564, 1387, 1302, 1210, 1178, 1150, 1138, 1146, 1177, 1223, 1293, 1384, 1565, 1857, 2891, 2054, 1752, 1532, 1377, 1261, 1209, 1156, 1164, 1148, 1164, 1179, 1207, 1271, 1402, 1545, 1784, 2505, 1982, 1668, 1452, 1336, 1245, 1203, 1137, 1104, 1116, 1118, 1146, 1196, 1249, 1338, 1468, 1703, 1995, 1920, 1615, 1414, 1285, 1221, 1164, 1119, 1127, 1095, 1114, 1143, 1190, 1229, 1309, 1422, 1642, 1951, 1829, 1557, 1345, 1256, 1208, 1148, 1110, 1099, 1088, 1113, 1113, 1149, 1200, 1265, 1386, 1558, 1807, 1772, 1526, 1341, 1231, 1172, 1126, 1084, 1058, 1054, 1079, 1103, 1126, 1177, 1238, 1346, 1528, 1769, 1777, 1489, 1318, 1232, 1164, 1113, 1086, 1063, 1048, 1064, 1106, 1128, 1155, 1212, 1355, 1515, 1741, 1744, 1482, 1318, 1223, 1155, 1128, 1076, 1042, 1041, 1048, 1075, 1118, 1164, 1224, 1313, 1506, 1736, 1729, 1492, 1321, 1235, 1153, 1121, 1078, 1056, 1037, 1063, 1077, 1115, 1154, 1224, 1320, 1509, 1709, 1734, 1506, 1294, 1230, 1157, 1107, 1068, 1060, 1024, 1041, 1077, 1117, 1142, 1213, 1312, 1492, 1686, 1739, 1497, 1322, 1234, 1156, 1108, 1064, 1049, 1037, 1066, 1085, 1098, 1151, 1236, 1320, 1488, 1729, 1775, 1525, 1356, 1262, 1176, 1123, 1087, 1054, 1048, 1071, 1087, 1114, 1169, 1234, 1354, 1524, 1726, 1866, 1576, 1376, 1260, 1176, 1144, 1098, 1077, 1081, 1097, 1110, 1136, 1182, 1244, 1361, 1550, 1811, 1891, 1650, 1422, 1260, 1203, 1145, 1122, 1095, 1087, 1107, 1114, 1145, 1195, 1267, 1410, 1602, 1865, 1999, 1651, 1420, 1293, 1217, 1179, 1153, 1123, 1105, 1090, 1145, 1167, 1215, 1316, 1444, 1664, 1898, 2068, 1710, 1494, 1336, 1263, 1225, 1182, 1141, 1136, 1146, 1173, 1204, 1246, 1353, 1489, 1721, 2000, 2197, 1857, 1536, 1418, 1322, 1253, 1213, 1193, 1162, 1180, 1192, 1252, 1308, 1421, 1561, 1834, 2891]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2216, 1666, 1458, 1318, 1232, 1177, 1131, 1131, 1123, 1123, 1154, 1184, 1244, 1356, 1497, 1693, 2599, 1895, 1627, 1412, 1290, 1212, 1175, 1124, 1123, 1118, 1126, 1145, 1181, 1234, 1320, 1456, 1636, 2358, 1796, 1562, 1386, 1260, 1200, 1148, 1114, 1107, 1097, 1102, 1126, 1155, 1214, 1283, 1418, 1596, 1859, 1731, 1505, 1345, 1234, 1174, 1140, 1101, 1089, 1082, 1104, 1105, 1148, 1191, 1265, 1379, 1542, 1772, 1659, 1470, 1297, 1224, 1152, 1107, 1082, 1076, 1065, 1081, 1102, 1135, 1170, 1242, 1356, 1505, 1701, 1639, 1430, 1290, 1206, 1132, 1092, 1071, 1051, 1047, 1067, 1080, 1109, 1141, 1220, 1308, 1484, 1662, 1591, 1406, 1254, 1174, 1127, 1084, 1052, 1042, 1041, 1051, 1062, 1105, 1158, 1181, 1285, 1437, 1613, 1600, 1389, 1258, 1183, 1129, 1092, 1060, 1046, 1024, 1042, 1071, 1106, 1143, 1184, 1303, 1451, 1620, 1572, 1400, 1260, 1186, 1124, 1092, 1060, 1049, 1031, 1048, 1076, 1093, 1139, 1195, 1277, 1450, 1598, 1584, 1394, 1262, 1186, 1123, 1083, 1051, 1032, 1026, 1048, 1064, 1094, 1132, 1186, 1283, 1428, 1621, 1598, 1398, 1250, 1178, 1116, 1075, 1045, 1029, 1032, 1045, 1061, 1087, 1127, 1179, 1271, 1426, 1625, 1616, 1421, 1271, 1199, 1138, 1088, 1068, 1043, 1047, 1049, 1064, 1099, 1140, 1202, 1294, 1458, 1640, 1671, 1471, 1313, 1208, 1142, 1107, 1075, 1061, 1064, 1064, 1096, 1115, 1151, 1215, 1323, 1476, 1663, 1723, 1491, 1321, 1222, 1170, 1120, 1097, 1083, 1071, 1075, 1095, 1130, 1162, 1237, 1340, 1529, 1720, 1773, 1525, 1353, 1247, 1166, 1146, 1104, 1097, 1087, 1091, 1109, 1135, 1183, 1249, 1365, 1555, 1779, 1880, 1583, 1383, 1278, 1195, 1154, 1139, 1105, 1094, 1096, 1127, 1148, 1208, 1282, 1403, 1593, 1858, 1980, 1665, 1464, 1338, 1243, 1189, 1158, 1146, 1139, 1137, 1170, 1184, 1255, 1344, 1491, 1682, 2599]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2251, 1668, 1449, 1315, 1217, 1155, 1144, 1111, 1116, 1124, 1140, 1172, 1245, 1350, 1481, 1706, 2665, 1863, 1593, 1411, 1292, 1207, 1150, 1138, 1113, 1109, 1106, 1137, 1172, 1236, 1321, 1454, 1662, 2346, 1781, 1561, 1378, 1251, 1181, 1143, 1112, 1092, 1089, 1107, 1120, 1159, 1205, 1277, 1407, 1599, 1858, 1708, 1504, 1335, 1233, 1166, 1142, 1103, 1079, 1083, 1085, 1122, 1144, 1191, 1257, 1405, 1551, 1798, 1700, 1464, 1299, 1210, 1146, 1117, 1085, 1068, 1059, 1080, 1096, 1143, 1163, 1228, 1344, 1498, 1698, 1622, 1427, 1278, 1177, 1147, 1098, 1069, 1043, 1056, 1051, 1078, 1113, 1160, 1201, 1311, 1464, 1661, 1578, 1403, 1262, 1185, 1119, 1081, 1042, 1033, 1036, 1043, 1059, 1085, 1141, 1196, 1300, 1447, 1607, 1569, 1397, 1250, 1159, 1110, 1082, 1045, 1032, 1044, 1051, 1064, 1103, 1134, 1176, 1285, 1439, 1623, 1592, 1376, 1255, 1167, 1130, 1088, 1053, 1031, 1029, 1030, 1072, 1100, 1122, 1191, 1260, 1425, 1622, 1586, 1392, 1249, 1180, 1124, 1077, 1044, 1029, 1024, 1036, 1064, 1093, 1130, 1185, 1272, 1427, 1607, 1588, 1391, 1254, 1178, 1115, 1074, 1039, 1034, 1026, 1036, 1061, 1084, 1129, 1177, 1282, 1428, 1628, 1600, 1435, 1275, 1187, 1126, 1084, 1054, 1045, 1051, 1047, 1073, 1092, 1150, 1192, 1287, 1444, 1647, 1662, 1448, 1309, 1207, 1149, 1103, 1080, 1057, 1066, 1058, 1092, 1117, 1164, 1207, 1332, 1491, 1661, 1694, 1502, 1335, 1218, 1160, 1110, 1089, 1088, 1073, 1074, 1094, 1130, 1168, 1236, 1352, 1512, 1685, 1778, 1539, 1346, 1238, 1164, 1134, 1108, 1081, 1068, 1091, 1111, 1136, 1169, 1252, 1364, 1549, 1786, 1823, 1582, 1383, 1272, 1182, 1158, 1132, 1111, 1098, 1093, 1126, 1154, 1204, 1290, 1412, 1614, 1876, 1913, 1678, 1444, 1333, 1235, 1199, 1149, 1136, 1139, 1133, 1153, 1198, 1247, 1326, 1487, 1687, 2665]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2149, 1566, 1389, 1285, 1196, 1172, 1122, 1112, 1110, 1123, 1131, 1171, 1227, 1342, 1457, 1689, 2429, 1794, 1556, 1391, 1271, 1197, 1160, 1132, 1116, 1127, 1128, 1156, 1201, 1242, 1336, 1440, 1626, 2276, 1717, 1508, 1345, 1241, 1170, 1141, 1125, 1103, 1104, 1116, 1135, 1160, 1222, 1281, 1416, 1574, 1806, 1668, 1472, 1315, 1220, 1168, 1127, 1113, 1091, 1093, 1095, 1134, 1151, 1201, 1280, 1375, 1526, 1723, 1600, 1438, 1280, 1196, 1153, 1113, 1088, 1066, 1079, 1076, 1109, 1127, 1190, 1233, 1348, 1498, 1669, 1566, 1395, 1257, 1172, 1131, 1102, 1073, 1059, 1063, 1057, 1084, 1121, 1160, 1222, 1309, 1454, 1621, 1537, 1365, 1237, 1175, 1110, 1087, 1072, 1041, 1040, 1038, 1075, 1105, 1140, 1202, 1290, 1416, 1578, 1487, 1364, 1231, 1172, 1122, 1092, 1055, 1040, 1038, 1053, 1079, 1110, 1157, 1202, 1293, 1428, 1567, 1533, 1379, 1226, 1176, 1106, 1090, 1064, 1040, 1034, 1043, 1074, 1099, 1142, 1195, 1289, 1418, 1558, 1527, 1373, 1243, 1150, 1125, 1072, 1041, 1036, 1024, 1037, 1068, 1090, 1140, 1194, 1288, 1418, 1569, 1531, 1374, 1221, 1154, 1111, 1067, 1048, 1025, 1026, 1047, 1061, 1083, 1123, 1188, 1270, 1408, 1548, 1547, 1392, 1253, 1167, 1124, 1094, 1057, 1044, 1047, 1053, 1063, 1110, 1133, 1195, 1282, 1410, 1593, 1602, 1413, 1282, 1193, 1139, 1095, 1071, 1063, 1049, 1071, 1080, 1112, 1156, 1208, 1294, 1448, 1616, 1644, 1458, 1301, 1195, 1133, 1098, 1080, 1070, 1057, 1074, 1096, 1133, 1160, 1227, 1317, 1485, 1640, 1700, 1457, 1289, 1222, 1152, 1110, 1086, 1079, 1074, 1081, 1119, 1138, 1167, 1241, 1341, 1518, 1692, 1750, 1530, 1325, 1239, 1177, 1132, 1109, 1097, 1091, 1096, 1113, 1145, 1196, 1284, 1396, 1558, 1759, 1846, 1558, 1421, 1282, 1219, 1171, 1143, 1126, 1108, 1135, 1154, 1167, 1230, 1315, 1470, 1599, 2429]
                                       }
                                   }, {
                                       "name":    "2560x1440_HZ_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2301, 1886, 1641, 1469, 1378, 1297, 1248, 1220, 1220, 1233, 1264, 1332, 1426, 1568, 1720, 2012, 2467, 2193, 1820, 1580, 1441, 1333, 1271, 1211, 1184, 1184, 1193, 1223, 1287, 1392, 1509, 1671, 1925, 2358, 2083, 1737, 1538, 1404, 1296, 1233, 1179, 1152, 1146, 1158, 1199, 1255, 1345, 1470, 1621, 1862, 2237, 2033, 1694, 1506, 1372, 1275, 1201, 1146, 1114, 1108, 1133, 1169, 1239, 1324, 1440, 1584, 1787, 2132, 1943, 1649, 1464, 1340, 1245, 1177, 1120, 1099, 1090, 1097, 1133, 1201, 1294, 1414, 1557, 1757, 2104, 1909, 1602, 1437, 1321, 1223, 1157, 1097, 1066, 1064, 1076, 1119, 1186, 1272, 1382, 1529, 1722, 2015, 1856, 1578, 1417, 1305, 1209, 1136, 1087, 1051, 1040, 1059, 1093, 1168, 1256, 1368, 1505, 1683, 1991, 1836, 1565, 1415, 1289, 1196, 1127, 1073, 1039, 1030, 1044, 1087, 1156, 1249, 1358, 1488, 1673, 1946, 1822, 1560, 1395, 1283, 1190, 1112, 1065, 1028, 1024, 1039, 1073, 1146, 1237, 1349, 1484, 1658, 1950, 1812, 1553, 1402, 1276, 1192, 1117, 1064, 1025, 1021, 1036, 1080, 1138, 1242, 1341, 1488, 1659, 1953, 1814, 1556, 1401, 1279, 1196, 1117, 1067, 1036, 1021, 1044, 1084, 1146, 1237, 1347, 1483, 1664, 1963, 1826, 1571, 1407, 1291, 1207, 1129, 1083, 1054, 1041, 1054, 1092, 1159, 1254, 1358, 1487, 1681, 1978, 1863, 1580, 1418, 1306, 1214, 1142, 1094, 1066, 1056, 1076, 1112, 1180, 1260, 1367, 1509, 1693, 2017, 1874, 1601, 1428, 1326, 1227, 1160, 1112, 1084, 1081, 1095, 1136, 1195, 1288, 1391, 1534, 1726, 2049, 1949, 1643, 1452, 1343, 1254, 1184, 1135, 1110, 1110, 1110, 1153, 1216, 1299, 1417, 1551, 1771, 2117, 2000, 1686, 1479, 1366, 1284, 1210, 1166, 1135, 1136, 1149, 1195, 1252, 1339, 1448, 1576, 1826, 2222, 2029, 1739, 1516, 1382, 1301, 1235, 1196, 1160, 1157, 1180, 1210, 1289, 1382, 1477, 1641, 1907, 2335]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2162, 1795, 1568, 1436, 1348, 1266, 1233, 1204, 1201, 1202, 1246, 1302, 1383, 1493, 1649, 1914, 2252, 2072, 1732, 1515, 1390, 1306, 1243, 1191, 1168, 1170, 1183, 1210, 1266, 1350, 1456, 1602, 1815, 2189, 2001, 1670, 1475, 1367, 1272, 1210, 1161, 1140, 1133, 1142, 1176, 1243, 1327, 1425, 1563, 1767, 2123, 1915, 1628, 1447, 1346, 1247, 1183, 1140, 1105, 1105, 1120, 1158, 1216, 1296, 1393, 1518, 1707, 2032, 1857, 1588, 1423, 1314, 1225, 1166, 1112, 1084, 1079, 1098, 1126, 1194, 1269, 1373, 1498, 1672, 1972, 1827, 1558, 1402, 1302, 1206, 1143, 1094, 1055, 1052, 1068, 1114, 1173, 1248, 1358, 1485, 1651, 1923, 1786, 1532, 1396, 1279, 1197, 1126, 1081, 1044, 1036, 1052, 1087, 1154, 1243, 1339, 1470, 1630, 1864, 1763, 1525, 1379, 1281, 1191, 1121, 1065, 1036, 1024, 1047, 1091, 1152, 1231, 1329, 1458, 1617, 1875, 1755, 1528, 1376, 1271, 1185, 1116, 1062, 1030, 1024, 1042, 1077, 1141, 1229, 1326, 1443, 1625, 1866, 1741, 1521, 1376, 1266, 1183, 1110, 1064, 1037, 1024, 1039, 1077, 1133, 1227, 1327, 1441, 1599, 1857, 1747, 1524, 1374, 1269, 1195, 1119, 1075, 1035, 1024, 1046, 1087, 1146, 1227, 1333, 1442, 1612, 1877, 1780, 1529, 1383, 1283, 1200, 1129, 1085, 1060, 1043, 1057, 1089, 1155, 1241, 1323, 1460, 1610, 1903, 1796, 1549, 1393, 1287, 1213, 1142, 1098, 1072, 1058, 1077, 1114, 1177, 1256, 1346, 1469, 1633, 1937, 1829, 1573, 1419, 1303, 1225, 1166, 1118, 1087, 1089, 1099, 1134, 1194, 1270, 1377, 1484, 1672, 1987, 1871, 1593, 1431, 1330, 1244, 1185, 1142, 1118, 1108, 1122, 1157, 1217, 1288, 1389, 1510, 1712, 2040, 1967, 1647, 1453, 1345, 1273, 1208, 1169, 1149, 1140, 1155, 1182, 1250, 1317, 1417, 1545, 1767, 2115, 2001, 1695, 1495, 1373, 1288, 1240, 1199, 1170, 1176, 1179, 1213, 1277, 1351, 1458, 1591, 1839, 2171]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2165, 1815, 1578, 1428, 1349, 1280, 1236, 1208, 1205, 1224, 1254, 1319, 1400, 1507, 1678, 1921, 2306, 2068, 1741, 1529, 1391, 1302, 1248, 1202, 1174, 1176, 1185, 1221, 1276, 1367, 1470, 1612, 1867, 2202, 1992, 1685, 1481, 1365, 1278, 1225, 1168, 1146, 1144, 1154, 1189, 1254, 1338, 1440, 1573, 1787, 2120, 1916, 1629, 1454, 1345, 1256, 1192, 1143, 1116, 1114, 1125, 1165, 1223, 1302, 1420, 1533, 1722, 2023, 1878, 1594, 1424, 1320, 1238, 1171, 1120, 1087, 1087, 1100, 1136, 1201, 1285, 1393, 1513, 1701, 1979, 1824, 1560, 1413, 1305, 1217, 1148, 1103, 1066, 1066, 1076, 1119, 1186, 1269, 1366, 1503, 1666, 1951, 1795, 1534, 1398, 1288, 1208, 1139, 1084, 1050, 1045, 1063, 1101, 1159, 1254, 1353, 1481, 1636, 1930, 1772, 1527, 1384, 1290, 1202, 1125, 1078, 1038, 1039, 1049, 1090, 1161, 1245, 1346, 1472, 1641, 1884, 1759, 1527, 1383, 1277, 1191, 1125, 1073, 1037, 1024, 1045, 1092, 1152, 1236, 1335, 1478, 1635, 1875, 1761, 1524, 1384, 1277, 1198, 1121, 1069, 1040, 1033, 1041, 1093, 1153, 1236, 1338, 1465, 1632, 1884, 1767, 1534, 1379, 1280, 1200, 1122, 1080, 1045, 1030, 1051, 1089, 1155, 1245, 1344, 1460, 1622, 1904, 1777, 1531, 1394, 1286, 1211, 1140, 1091, 1066, 1048, 1066, 1101, 1164, 1250, 1352, 1474, 1638, 1938, 1786, 1543, 1394, 1298, 1219, 1153, 1105, 1077, 1070, 1082, 1125, 1182, 1267, 1369, 1494, 1667, 1951, 1850, 1588, 1413, 1311, 1231, 1170, 1125, 1096, 1090, 1106, 1143, 1202, 1278, 1388, 1506, 1691, 2008, 1892, 1602, 1434, 1329, 1260, 1196, 1151, 1125, 1117, 1127, 1166, 1228, 1302, 1403, 1532, 1732, 2062, 1958, 1646, 1455, 1359, 1281, 1214, 1173, 1157, 1147, 1163, 1198, 1253, 1334, 1428, 1559, 1793, 2138, 1998, 1703, 1476, 1383, 1299, 1230, 1203, 1174, 1164, 1187, 1226, 1285, 1361, 1457, 1605, 1853, 2243]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1782, 1504, 1355, 1244, 1232, 1152, 1114, 1110, 1138, 1166, 1198, 1283, 1375, 1493, 1651, 1850, 2175, 1710, 1487, 1333, 1220, 1166, 1160, 1116, 1104, 1116, 1135, 1171, 1230, 1367, 1478, 1591, 1811, 2117, 1674, 1436, 1309, 1222, 1153, 1140, 1099, 1088, 1099, 1117, 1159, 1233, 1354, 1460, 1581, 1791, 2049, 1596, 1399, 1303, 1220, 1144, 1103, 1079, 1057, 1080, 1104, 1144, 1222, 1328, 1437, 1566, 1744, 2036, 1572, 1359, 1272, 1213, 1125, 1093, 1058, 1050, 1066, 1088, 1119, 1200, 1308, 1412, 1547, 1715, 1960, 1512, 1354, 1279, 1202, 1110, 1080, 1047, 1027, 1054, 1057, 1105, 1191, 1295, 1418, 1523, 1663, 1885, 1527, 1343, 1261, 1171, 1121, 1071, 1050, 1013, 1034, 1054, 1075, 1170, 1288, 1396, 1537, 1679, 1879, 1505, 1339, 1249, 1170, 1120, 1057, 1032, 1019, 1028, 1048, 1101, 1184, 1276, 1381, 1503, 1670, 1867, 1478, 1330, 1232, 1164, 1122, 1053, 1028, 1015, 1024, 1044, 1090, 1163, 1279, 1383, 1520, 1638, 1870, 1460, 1328, 1230, 1170, 1120, 1064, 1032, 1013, 1016, 1042, 1094, 1169, 1267, 1370, 1517, 1653, 1867, 1481, 1331, 1261, 1171, 1121, 1071, 1038, 1025, 1034, 1048, 1102, 1170, 1269, 1373, 1509, 1661, 1929, 1466, 1330, 1240, 1169, 1125, 1074, 1053, 1027, 1042, 1063, 1098, 1175, 1276, 1383, 1494, 1663, 1885, 1475, 1324, 1242, 1170, 1125, 1086, 1058, 1062, 1066, 1082, 1133, 1217, 1308, 1412, 1503, 1695, 1908, 1463, 1324, 1231, 1184, 1137, 1096, 1073, 1070, 1067, 1090, 1144, 1222, 1307, 1412, 1535, 1704, 1951, 1508, 1343, 1244, 1185, 1145, 1109, 1106, 1082, 1099, 1103, 1159, 1242, 1311, 1408, 1565, 1727, 1989, 1516, 1358, 1254, 1201, 1149, 1120, 1108, 1104, 1116, 1142, 1196, 1278, 1344, 1451, 1574, 1766, 2052, 1527, 1369, 1271, 1204, 1167, 1127, 1138, 1126, 1138, 1158, 1234, 1283, 1375, 1464, 1614, 1825, 2175]
                                       }
                                   }, {
                                       "name":    "2560x1440_HZ_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2451, 1832, 1613, 1433, 1322, 1254, 1205, 1199, 1195, 1191, 1218, 1255, 1367, 1516, 1731, 2041, 3262, 2100, 1796, 1569, 1402, 1298, 1248, 1193, 1174, 1182, 1190, 1218, 1251, 1339, 1484, 1672, 1986, 2873, 2010, 1697, 1472, 1334, 1247, 1189, 1160, 1130, 1136, 1146, 1174, 1234, 1303, 1418, 1609, 1865, 2287, 1912, 1645, 1425, 1283, 1219, 1168, 1130, 1111, 1103, 1115, 1146, 1196, 1260, 1378, 1538, 1804, 2193, 1850, 1570, 1378, 1252, 1196, 1142, 1111, 1090, 1080, 1096, 1134, 1176, 1256, 1346, 1502, 1734, 2104, 1780, 1554, 1353, 1248, 1185, 1136, 1094, 1066, 1066, 1086, 1111, 1161, 1243, 1322, 1478, 1731, 2038, 1731, 1508, 1338, 1237, 1169, 1103, 1079, 1050, 1050, 1068, 1106, 1150, 1215, 1316, 1444, 1670, 1994, 1754, 1499, 1311, 1216, 1146, 1098, 1066, 1037, 1035, 1052, 1088, 1142, 1208, 1298, 1424, 1647, 1973, 1737, 1498, 1316, 1221, 1163, 1087, 1056, 1035, 1024, 1050, 1098, 1152, 1198, 1305, 1437, 1658, 1956, 1778, 1499, 1338, 1224, 1155, 1099, 1066, 1036, 1032, 1057, 1102, 1149, 1221, 1307, 1443, 1665, 2003, 1780, 1518, 1340, 1232, 1156, 1113, 1075, 1046, 1044, 1080, 1111, 1167, 1236, 1315, 1444, 1680, 1981, 1803, 1549, 1329, 1239, 1160, 1118, 1083, 1061, 1068, 1091, 1122, 1186, 1242, 1322, 1462, 1704, 1993, 1851, 1590, 1368, 1254, 1185, 1134, 1102, 1075, 1084, 1115, 1148, 1195, 1245, 1350, 1494, 1738, 2044, 1902, 1624, 1429, 1279, 1206, 1163, 1127, 1126, 1116, 1147, 1179, 1220, 1289, 1392, 1554, 1791, 2133, 1988, 1711, 1458, 1319, 1239, 1198, 1161, 1144, 1151, 1175, 1217, 1258, 1333, 1423, 1619, 1878, 2237, 2118, 1739, 1517, 1367, 1268, 1229, 1197, 1183, 1181, 1202, 1248, 1296, 1356, 1489, 1687, 1971, 2357, 2176, 1852, 1596, 1451, 1354, 1274, 1242, 1223, 1228, 1260, 1274, 1330, 1430, 1549, 1756, 2086, 3262]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2259, 1628, 1465, 1329, 1241, 1189, 1155, 1143, 1140, 1149, 1173, 1214, 1295, 1412, 1589, 1844, 2882, 1838, 1621, 1425, 1310, 1231, 1187, 1146, 1150, 1137, 1151, 1182, 1220, 1291, 1389, 1576, 1806, 2582, 1732, 1539, 1392, 1243, 1201, 1156, 1124, 1120, 1107, 1119, 1147, 1184, 1252, 1355, 1506, 1729, 2075, 1671, 1478, 1322, 1232, 1173, 1128, 1099, 1086, 1093, 1090, 1130, 1171, 1237, 1310, 1461, 1674, 1961, 1651, 1448, 1296, 1217, 1161, 1115, 1085, 1069, 1068, 1086, 1111, 1150, 1210, 1301, 1440, 1641, 1885, 1590, 1425, 1283, 1204, 1143, 1104, 1079, 1071, 1063, 1081, 1109, 1144, 1210, 1281, 1418, 1613, 1892, 1592, 1388, 1265, 1185, 1133, 1080, 1056, 1053, 1044, 1064, 1093, 1131, 1214, 1281, 1395, 1578, 1809, 1571, 1368, 1238, 1157, 1114, 1069, 1050, 1034, 1037, 1045, 1081, 1138, 1206, 1253, 1380, 1556, 1777, 1533, 1372, 1263, 1169, 1126, 1077, 1051, 1037, 1024, 1047, 1101, 1133, 1199, 1270, 1377, 1548, 1783, 1548, 1383, 1253, 1167, 1115, 1073, 1044, 1045, 1034, 1075, 1105, 1145, 1204, 1279, 1382, 1559, 1781, 1605, 1400, 1249, 1187, 1134, 1079, 1058, 1045, 1053, 1075, 1114, 1158, 1211, 1277, 1393, 1568, 1783, 1627, 1412, 1261, 1175, 1130, 1094, 1064, 1068, 1079, 1087, 1117, 1164, 1218, 1292, 1403, 1580, 1830, 1656, 1452, 1306, 1208, 1142, 1102, 1083, 1062, 1074, 1096, 1129, 1172, 1231, 1278, 1429, 1619, 1851, 1698, 1485, 1309, 1222, 1161, 1113, 1121, 1091, 1111, 1116, 1144, 1196, 1252, 1326, 1447, 1657, 1909, 1770, 1524, 1348, 1254, 1186, 1157, 1125, 1134, 1141, 1128, 1186, 1210, 1280, 1345, 1496, 1728, 2008, 1871, 1580, 1393, 1270, 1208, 1183, 1153, 1144, 1160, 1162, 1189, 1231, 1293, 1397, 1561, 1789, 2075, 1939, 1608, 1451, 1322, 1257, 1207, 1188, 1190, 1186, 1201, 1238, 1250, 1333, 1455, 1626, 1868, 2882]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2195, 1625, 1419, 1306, 1221, 1184, 1138, 1130, 1129, 1133, 1159, 1196, 1284, 1411, 1586, 1850, 2935, 1819, 1611, 1440, 1285, 1207, 1179, 1141, 1139, 1131, 1145, 1175, 1220, 1284, 1401, 1586, 1838, 2606, 1775, 1536, 1352, 1244, 1186, 1137, 1126, 1110, 1099, 1121, 1146, 1195, 1267, 1345, 1492, 1748, 2083, 1689, 1476, 1326, 1224, 1153, 1126, 1095, 1078, 1080, 1090, 1125, 1165, 1221, 1316, 1479, 1679, 1981, 1648, 1425, 1285, 1196, 1148, 1101, 1089, 1064, 1073, 1088, 1114, 1148, 1207, 1295, 1447, 1632, 1901, 1622, 1405, 1268, 1196, 1139, 1102, 1074, 1053, 1070, 1077, 1112, 1156, 1215, 1285, 1400, 1600, 1838, 1571, 1395, 1275, 1180, 1130, 1096, 1049, 1044, 1043, 1064, 1097, 1135, 1198, 1260, 1407, 1586, 1817, 1546, 1381, 1240, 1163, 1112, 1071, 1048, 1030, 1040, 1037, 1084, 1137, 1192, 1264, 1375, 1564, 1790, 1545, 1365, 1222, 1152, 1109, 1066, 1025, 1024, 1032, 1040, 1090, 1138, 1189, 1272, 1382, 1539, 1769, 1561, 1394, 1241, 1169, 1117, 1082, 1044, 1030, 1033, 1060, 1097, 1145, 1206, 1285, 1387, 1573, 1825, 1567, 1402, 1259, 1180, 1117, 1080, 1055, 1041, 1059, 1074, 1108, 1148, 1197, 1294, 1412, 1566, 1816, 1605, 1428, 1272, 1191, 1119, 1084, 1061, 1059, 1067, 1066, 1103, 1152, 1229, 1292, 1406, 1565, 1844, 1634, 1446, 1303, 1194, 1133, 1092, 1086, 1064, 1086, 1089, 1134, 1178, 1244, 1299, 1413, 1618, 1853, 1692, 1477, 1322, 1201, 1165, 1114, 1104, 1090, 1109, 1109, 1148, 1184, 1248, 1322, 1457, 1656, 1914, 1767, 1536, 1341, 1244, 1181, 1145, 1118, 1127, 1134, 1140, 1166, 1210, 1272, 1363, 1512, 1719, 1996, 1793, 1577, 1400, 1268, 1211, 1180, 1153, 1149, 1152, 1164, 1198, 1238, 1274, 1403, 1548, 1785, 2084, 1939, 1639, 1456, 1330, 1250, 1219, 1198, 1176, 1180, 1195, 1221, 1277, 1332, 1460, 1612, 1853, 2935]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1991, 1568, 1389, 1278, 1193, 1148, 1134, 1129, 1111, 1146, 1180, 1218, 1328, 1416, 1567, 1829, 2913, 1711, 1560, 1419, 1339, 1217, 1201, 1164, 1167, 1153, 1164, 1204, 1234, 1317, 1439, 1622, 1857, 2626, 1710, 1524, 1352, 1249, 1232, 1172, 1150, 1128, 1125, 1142, 1167, 1239, 1288, 1405, 1573, 1826, 2039, 1661, 1474, 1321, 1190, 1167, 1123, 1121, 1092, 1098, 1111, 1163, 1184, 1277, 1362, 1529, 1735, 1965, 1589, 1417, 1285, 1210, 1160, 1147, 1094, 1072, 1078, 1082, 1124, 1192, 1272, 1322, 1490, 1681, 1876, 1583, 1410, 1291, 1206, 1175, 1105, 1090, 1077, 1091, 1066, 1109, 1188, 1254, 1329, 1462, 1663, 1823, 1532, 1381, 1253, 1218, 1148, 1089, 1073, 1070, 1059, 1060, 1099, 1175, 1253, 1280, 1490, 1628, 1848, 1518, 1345, 1260, 1182, 1104, 1074, 1061, 1034, 1031, 1092, 1097, 1147, 1222, 1283, 1442, 1620, 1848, 1493, 1376, 1222, 1198, 1100, 1079, 1039, 1024, 1039, 1070, 1098, 1184, 1246, 1336, 1410, 1629, 1753, 1489, 1358, 1249, 1193, 1127, 1077, 1067, 1038, 1051, 1057, 1104, 1160, 1231, 1320, 1411, 1622, 1794, 1553, 1397, 1243, 1204, 1140, 1096, 1070, 1030, 1051, 1087, 1101, 1146, 1237, 1357, 1477, 1603, 1815, 1565, 1415, 1286, 1183, 1150, 1098, 1090, 1062, 1069, 1101, 1119, 1198, 1256, 1330, 1455, 1621, 1899, 1538, 1464, 1334, 1237, 1143, 1073, 1070, 1089, 1056, 1108, 1152, 1226, 1253, 1345, 1471, 1655, 1899, 1635, 1472, 1351, 1246, 1139, 1132, 1113, 1119, 1109, 1156, 1167, 1215, 1267, 1360, 1502, 1687, 1929, 1752, 1513, 1345, 1266, 1173, 1177, 1131, 1141, 1137, 1156, 1193, 1248, 1300, 1381, 1511, 1710, 2027, 1826, 1583, 1380, 1295, 1224, 1189, 1163, 1159, 1183, 1167, 1213, 1244, 1319, 1448, 1566, 1850, 2010, 1807, 1565, 1411, 1316, 1250, 1194, 1220, 1192, 1209, 1260, 1272, 1307, 1365, 1472, 1658, 1841, 2913]
                                       }
                                   }, {
                                       "name":    "2560x1440_TL84_70",
                                       "resolution":    "2560x1440",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2339, 1935, 1651, 1494, 1381, 1317, 1246, 1211, 1205, 1214, 1249, 1294, 1364, 1462, 1651, 1868, 2294, 2240, 1820, 1596, 1454, 1352, 1278, 1223, 1188, 1183, 1185, 1214, 1267, 1339, 1439, 1577, 1804, 2187, 2161, 1786, 1558, 1423, 1328, 1253, 1196, 1158, 1150, 1152, 1190, 1239, 1317, 1405, 1541, 1732, 2090, 2071, 1719, 1529, 1398, 1295, 1223, 1167, 1137, 1125, 1129, 1153, 1219, 1288, 1394, 1503, 1704, 2027, 2013, 1686, 1508, 1375, 1281, 1203, 1148, 1109, 1093, 1100, 1137, 1197, 1267, 1371, 1492, 1666, 1973, 1962, 1669, 1477, 1364, 1260, 1183, 1110, 1082, 1067, 1080, 1115, 1171, 1244, 1348, 1462, 1630, 1906, 1907, 1640, 1457, 1349, 1239, 1149, 1098, 1067, 1042, 1060, 1094, 1157, 1229, 1330, 1448, 1609, 1872, 1892, 1612, 1447, 1326, 1224, 1142, 1088, 1042, 1035, 1044, 1083, 1142, 1211, 1311, 1437, 1588, 1874, 1853, 1597, 1431, 1310, 1220, 1136, 1071, 1035, 1024, 1044, 1073, 1131, 1205, 1306, 1435, 1586, 1844, 1849, 1606, 1433, 1319, 1211, 1134, 1076, 1033, 1022, 1033, 1074, 1126, 1205, 1293, 1428, 1583, 1832, 1880, 1597, 1438, 1315, 1214, 1146, 1084, 1036, 1027, 1043, 1077, 1138, 1214, 1307, 1429, 1585, 1846, 1897, 1612, 1453, 1321, 1231, 1163, 1098, 1057, 1045, 1055, 1091, 1152, 1221, 1314, 1439, 1612, 1870, 1934, 1646, 1472, 1351, 1250, 1176, 1119, 1078, 1063, 1080, 1119, 1176, 1240, 1335, 1457, 1640, 1915, 1996, 1684, 1492, 1373, 1274, 1198, 1148, 1111, 1102, 1114, 1142, 1192, 1260, 1364, 1482, 1663, 1976, 2067, 1740, 1524, 1405, 1294, 1226, 1172, 1133, 1126, 1144, 1169, 1217, 1294, 1387, 1519, 1710, 2067, 2174, 1795, 1571, 1434, 1331, 1253, 1207, 1164, 1151, 1170, 1198, 1250, 1319, 1425, 1553, 1771, 2124, 2265, 1859, 1605, 1457, 1351, 1286, 1228, 1201, 1189, 1192, 1232, 1275, 1351, 1457, 1592, 1832, 2250]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2296, 1899, 1642, 1469, 1380, 1309, 1249, 1231, 1207, 1212, 1251, 1301, 1374, 1462, 1623, 1880, 2246, 2200, 1822, 1579, 1449, 1346, 1273, 1225, 1187, 1177, 1190, 1212, 1268, 1340, 1422, 1559, 1799, 2156, 2101, 1763, 1546, 1422, 1318, 1244, 1190, 1157, 1148, 1153, 1194, 1237, 1316, 1406, 1531, 1747, 2069, 2041, 1714, 1511, 1393, 1296, 1220, 1172, 1126, 1117, 1130, 1158, 1212, 1286, 1384, 1503, 1676, 1998, 1972, 1682, 1487, 1364, 1274, 1196, 1141, 1104, 1090, 1099, 1138, 1190, 1264, 1358, 1476, 1650, 1959, 1934, 1641, 1462, 1354, 1255, 1183, 1124, 1084, 1066, 1074, 1115, 1171, 1242, 1341, 1472, 1624, 1902, 1903, 1623, 1453, 1327, 1233, 1161, 1098, 1059, 1046, 1062, 1098, 1154, 1227, 1324, 1450, 1606, 1861, 1866, 1607, 1442, 1324, 1229, 1143, 1089, 1046, 1035, 1045, 1086, 1143, 1214, 1316, 1442, 1582, 1826, 1858, 1598, 1435, 1316, 1225, 1140, 1081, 1035, 1024, 1041, 1070, 1133, 1210, 1306, 1423, 1585, 1835, 1878, 1599, 1432, 1321, 1216, 1138, 1079, 1039, 1026, 1039, 1070, 1127, 1208, 1298, 1423, 1582, 1860, 1867, 1598, 1440, 1319, 1222, 1144, 1088, 1047, 1034, 1044, 1081, 1137, 1212, 1303, 1431, 1589, 1861, 1890, 1620, 1452, 1332, 1242, 1152, 1103, 1066, 1051, 1064, 1096, 1154, 1224, 1325, 1446, 1599, 1866, 1945, 1650, 1473, 1342, 1260, 1182, 1120, 1088, 1075, 1086, 1120, 1172, 1243, 1334, 1463, 1628, 1926, 2005, 1685, 1493, 1378, 1281, 1203, 1148, 1110, 1105, 1116, 1150, 1199, 1274, 1364, 1479, 1666, 1991, 2069, 1742, 1527, 1400, 1305, 1224, 1182, 1142, 1129, 1142, 1169, 1226, 1292, 1385, 1516, 1706, 2031, 2165, 1805, 1563, 1432, 1329, 1258, 1210, 1173, 1161, 1169, 1199, 1254, 1315, 1416, 1543, 1760, 2147, 2246, 1867, 1601, 1444, 1356, 1285, 1239, 1203, 1190, 1203, 1232, 1275, 1339, 1444, 1601, 1830, 2198]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2322, 1893, 1658, 1479, 1393, 1304, 1257, 1223, 1218, 1216, 1248, 1310, 1372, 1475, 1625, 1867, 2251, 2198, 1829, 1595, 1445, 1364, 1280, 1223, 1200, 1185, 1191, 1227, 1275, 1349, 1439, 1582, 1817, 2171, 2123, 1775, 1553, 1429, 1330, 1253, 1202, 1161, 1152, 1159, 1196, 1246, 1322, 1419, 1545, 1739, 2091, 2040, 1716, 1521, 1400, 1303, 1226, 1174, 1136, 1120, 1134, 1166, 1220, 1290, 1379, 1514, 1706, 2012, 1966, 1684, 1494, 1371, 1283, 1198, 1146, 1105, 1094, 1110, 1140, 1192, 1271, 1368, 1483, 1666, 1946, 1941, 1648, 1479, 1361, 1259, 1180, 1124, 1086, 1069, 1080, 1116, 1178, 1248, 1353, 1472, 1639, 1909, 1910, 1621, 1460, 1344, 1244, 1169, 1107, 1068, 1047, 1066, 1099, 1154, 1235, 1331, 1457, 1609, 1874, 1879, 1606, 1449, 1333, 1233, 1149, 1093, 1051, 1039, 1051, 1087, 1149, 1221, 1320, 1442, 1601, 1844, 1871, 1605, 1439, 1322, 1219, 1142, 1086, 1038, 1024, 1044, 1081, 1142, 1214, 1312, 1433, 1600, 1859, 1885, 1593, 1439, 1315, 1221, 1142, 1084, 1042, 1031, 1039, 1077, 1138, 1216, 1307, 1433, 1581, 1856, 1880, 1617, 1437, 1323, 1231, 1150, 1089, 1049, 1038, 1043, 1087, 1147, 1218, 1318, 1434, 1609, 1856, 1922, 1614, 1459, 1334, 1244, 1168, 1109, 1064, 1052, 1069, 1102, 1153, 1232, 1328, 1446, 1618, 1879, 1952, 1652, 1476, 1351, 1261, 1180, 1126, 1087, 1081, 1092, 1126, 1174, 1245, 1348, 1473, 1639, 1926, 2004, 1697, 1492, 1379, 1273, 1203, 1152, 1120, 1108, 1114, 1152, 1197, 1276, 1367, 1499, 1678, 1997, 2083, 1734, 1534, 1404, 1306, 1230, 1176, 1146, 1135, 1150, 1178, 1228, 1301, 1397, 1526, 1713, 2053, 2162, 1794, 1561, 1439, 1338, 1260, 1209, 1177, 1169, 1177, 1207, 1255, 1335, 1432, 1557, 1794, 2162, 2271, 1867, 1616, 1465, 1366, 1283, 1241, 1196, 1192, 1194, 1236, 1266, 1357, 1458, 1594, 1874, 2242]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2159, 1861, 1572, 1446, 1356, 1272, 1228, 1193, 1197, 1206, 1235, 1264, 1330, 1426, 1585, 1825, 2215, 2138, 1811, 1569, 1428, 1326, 1256, 1208, 1176, 1167, 1182, 1208, 1264, 1318, 1438, 1557, 1761, 2088, 2053, 1743, 1514, 1415, 1318, 1245, 1186, 1162, 1148, 1150, 1193, 1231, 1303, 1396, 1525, 1713, 2053, 1970, 1706, 1491, 1389, 1299, 1216, 1163, 1135, 1127, 1129, 1157, 1210, 1284, 1389, 1502, 1691, 1950, 1946, 1665, 1507, 1369, 1269, 1193, 1148, 1111, 1094, 1100, 1137, 1193, 1255, 1344, 1475, 1638, 1908, 1861, 1609, 1465, 1346, 1244, 1184, 1119, 1080, 1065, 1075, 1114, 1161, 1244, 1338, 1445, 1622, 1861, 1844, 1600, 1439, 1334, 1236, 1154, 1099, 1062, 1047, 1066, 1099, 1154, 1236, 1319, 1439, 1587, 1827, 1821, 1597, 1429, 1319, 1223, 1144, 1085, 1045, 1026, 1045, 1085, 1144, 1211, 1303, 1419, 1597, 1821, 1825, 1576, 1422, 1298, 1213, 1136, 1078, 1038, 1024, 1042, 1068, 1141, 1207, 1306, 1413, 1576, 1809, 1805, 1584, 1429, 1319, 1223, 1144, 1085, 1032, 1031, 1036, 1076, 1123, 1205, 1303, 1429, 1573, 1821, 1827, 1575, 1439, 1334, 1230, 1143, 1079, 1052, 1034, 1048, 1084, 1138, 1217, 1311, 1430, 1575, 1811, 1879, 1622, 1445, 1330, 1251, 1155, 1104, 1056, 1055, 1061, 1099, 1166, 1225, 1314, 1435, 1584, 1826, 1908, 1638, 1465, 1344, 1249, 1181, 1115, 1090, 1074, 1085, 1115, 1181, 1242, 1336, 1455, 1612, 1889, 1970, 1677, 1491, 1363, 1284, 1197, 1145, 1113, 1101, 1103, 1140, 1185, 1255, 1355, 1470, 1636, 1910, 2031, 1713, 1514, 1396, 1303, 1224, 1174, 1145, 1132, 1139, 1162, 1218, 1280, 1369, 1514, 1698, 1987, 2088, 1761, 1557, 1438, 1318, 1242, 1195, 1163, 1149, 1169, 1195, 1242, 1302, 1399, 1545, 1745, 2064, 2159, 1843, 1585, 1446, 1347, 1280, 1228, 1193, 1190, 1193, 1221, 1280, 1347, 1436, 1559, 1825, 2187]
                                       }
                                   }, {
                                       "name":    "2560x1440_TL84_100",
                                       "resolution":    "2560x1440",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2463, 1763, 1548, 1360, 1294, 1220, 1227, 1203, 1179, 1189, 1207, 1228, 1289, 1418, 1579, 1829, 2872, 2017, 1707, 1497, 1342, 1282, 1211, 1208, 1170, 1179, 1184, 1199, 1219, 1282, 1374, 1537, 1790, 2647, 1940, 1615, 1441, 1292, 1213, 1200, 1170, 1140, 1137, 1146, 1162, 1205, 1232, 1315, 1449, 1677, 2007, 1857, 1565, 1368, 1248, 1191, 1156, 1127, 1125, 1110, 1130, 1153, 1165, 1208, 1284, 1404, 1609, 1905, 1832, 1519, 1329, 1237, 1169, 1130, 1113, 1107, 1101, 1125, 1143, 1175, 1213, 1259, 1371, 1567, 1842, 1772, 1503, 1307, 1208, 1164, 1104, 1086, 1088, 1085, 1097, 1107, 1146, 1211, 1244, 1368, 1545, 1772, 1725, 1458, 1291, 1209, 1132, 1112, 1072, 1050, 1069, 1085, 1123, 1130, 1180, 1240, 1334, 1515, 1737, 1701, 1458, 1284, 1192, 1135, 1100, 1058, 1042, 1057, 1068, 1093, 1131, 1183, 1232, 1319, 1481, 1707, 1695, 1456, 1292, 1193, 1115, 1080, 1055, 1029, 1033, 1065, 1087, 1127, 1176, 1232, 1329, 1504, 1724, 1711, 1454, 1298, 1197, 1123, 1094, 1049, 1037, 1039, 1047, 1103, 1128, 1170, 1236, 1330, 1485, 1690, 1760, 1477, 1311, 1199, 1137, 1102, 1060, 1024, 1044, 1061, 1087, 1122, 1176, 1238, 1327, 1489, 1710, 1748, 1500, 1312, 1219, 1142, 1097, 1067, 1050, 1043, 1056, 1098, 1138, 1192, 1253, 1349, 1532, 1769, 1799, 1521, 1337, 1210, 1165, 1113, 1082, 1059, 1066, 1047, 1087, 1142, 1186, 1237, 1377, 1542, 1769, 1852, 1585, 1369, 1236, 1187, 1126, 1105, 1090, 1092, 1093, 1110, 1154, 1204, 1278, 1432, 1605, 1854, 1958, 1649, 1430, 1295, 1218, 1170, 1128, 1125, 1113, 1105, 1139, 1172, 1241, 1324, 1461, 1658, 1932, 2079, 1717, 1469, 1319, 1245, 1186, 1159, 1135, 1132, 1122, 1157, 1201, 1245, 1416, 1518, 1746, 2068, 2158, 1785, 1567, 1411, 1302, 1211, 1182, 1169, 1149, 1148, 1181, 1227, 1320, 1463, 1593, 1843, 2872]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2420, 1694, 1497, 1370, 1253, 1200, 1157, 1148, 1145, 1142, 1177, 1195, 1275, 1377, 1530, 1767, 2699, 1938, 1652, 1456, 1324, 1227, 1189, 1156, 1130, 1131, 1141, 1155, 1204, 1262, 1359, 1505, 1708, 2466, 1815, 1588, 1401, 1263, 1204, 1157, 1119, 1114, 1112, 1118, 1128, 1172, 1214, 1311, 1447, 1626, 1937, 1755, 1531, 1362, 1237, 1175, 1139, 1104, 1099, 1096, 1103, 1130, 1147, 1196, 1271, 1398, 1575, 1826, 1692, 1487, 1321, 1219, 1180, 1122, 1094, 1076, 1079, 1105, 1110, 1149, 1186, 1246, 1383, 1539, 1787, 1680, 1465, 1294, 1210, 1144, 1110, 1087, 1064, 1071, 1079, 1101, 1130, 1166, 1240, 1345, 1518, 1714, 1660, 1434, 1273, 1192, 1126, 1101, 1051, 1064, 1051, 1070, 1082, 1121, 1168, 1220, 1312, 1491, 1680, 1594, 1398, 1270, 1170, 1113, 1085, 1061, 1043, 1043, 1052, 1080, 1109, 1165, 1207, 1295, 1454, 1667, 1586, 1403, 1273, 1184, 1124, 1096, 1051, 1041, 1024, 1047, 1074, 1097, 1144, 1196, 1300, 1448, 1672, 1619, 1403, 1263, 1196, 1128, 1089, 1050, 1043, 1035, 1048, 1081, 1111, 1158, 1210, 1309, 1473, 1658, 1631, 1424, 1277, 1200, 1122, 1088, 1058, 1042, 1044, 1051, 1075, 1108, 1158, 1216, 1308, 1476, 1665, 1655, 1455, 1285, 1186, 1124, 1103, 1077, 1058, 1053, 1058, 1081, 1114, 1150, 1217, 1324, 1494, 1715, 1693, 1460, 1313, 1210, 1141, 1100, 1074, 1076, 1071, 1067, 1089, 1123, 1176, 1221, 1338, 1531, 1715, 1778, 1519, 1335, 1225, 1165, 1123, 1101, 1100, 1097, 1082, 1104, 1130, 1188, 1258, 1384, 1557, 1759, 1826, 1583, 1367, 1266, 1196, 1159, 1113, 1126, 1110, 1098, 1131, 1159, 1207, 1300, 1437, 1625, 1861, 1916, 1619, 1431, 1283, 1221, 1167, 1144, 1137, 1132, 1125, 1147, 1178, 1236, 1336, 1459, 1690, 1923, 2041, 1689, 1487, 1351, 1240, 1205, 1154, 1149, 1156, 1149, 1174, 1205, 1282, 1392, 1540, 1768, 2699]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2347, 1678, 1469, 1329, 1252, 1192, 1145, 1125, 1126, 1125, 1152, 1181, 1252, 1357, 1514, 1737, 2837, 1922, 1644, 1425, 1309, 1216, 1183, 1138, 1131, 1134, 1131, 1154, 1188, 1250, 1358, 1495, 1713, 2539, 1801, 1558, 1384, 1279, 1201, 1156, 1127, 1107, 1102, 1115, 1130, 1173, 1220, 1290, 1425, 1649, 1902, 1733, 1488, 1349, 1223, 1165, 1134, 1087, 1079, 1079, 1096, 1113, 1148, 1174, 1258, 1387, 1574, 1796, 1698, 1476, 1303, 1210, 1158, 1115, 1074, 1064, 1082, 1085, 1110, 1134, 1167, 1247, 1360, 1525, 1760, 1634, 1433, 1280, 1191, 1140, 1098, 1072, 1059, 1063, 1071, 1094, 1121, 1168, 1230, 1343, 1500, 1720, 1649, 1415, 1259, 1184, 1119, 1093, 1060, 1054, 1051, 1062, 1074, 1110, 1164, 1218, 1328, 1473, 1693, 1605, 1404, 1254, 1165, 1112, 1075, 1051, 1033, 1037, 1044, 1056, 1095, 1143, 1195, 1311, 1465, 1641, 1589, 1385, 1252, 1153, 1122, 1071, 1042, 1031, 1034, 1041, 1065, 1104, 1128, 1190, 1295, 1444, 1671, 1620, 1420, 1259, 1181, 1127, 1079, 1043, 1024, 1035, 1045, 1074, 1091, 1145, 1201, 1300, 1461, 1634, 1649, 1424, 1272, 1185, 1129, 1083, 1053, 1038, 1039, 1043, 1072, 1095, 1143, 1211, 1305, 1467, 1680, 1634, 1440, 1266, 1176, 1128, 1089, 1051, 1049, 1049, 1046, 1073, 1098, 1150, 1208, 1323, 1488, 1670, 1699, 1461, 1299, 1202, 1133, 1098, 1071, 1072, 1067, 1060, 1076, 1115, 1159, 1233, 1336, 1508, 1733, 1757, 1505, 1344, 1228, 1151, 1109, 1097, 1089, 1078, 1080, 1091, 1128, 1187, 1260, 1376, 1555, 1797, 1820, 1550, 1378, 1258, 1178, 1143, 1113, 1116, 1088, 1094, 1105, 1154, 1205, 1291, 1435, 1620, 1879, 1890, 1631, 1411, 1276, 1202, 1154, 1133, 1128, 1118, 1126, 1136, 1174, 1222, 1333, 1463, 1675, 1939, 2019, 1680, 1471, 1341, 1258, 1197, 1163, 1166, 1130, 1131, 1162, 1188, 1268, 1377, 1530, 1744, 2837]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2239, 1610, 1397, 1291, 1201, 1157, 1145, 1115, 1101, 1108, 1155, 1172, 1255, 1331, 1495, 1735, 2699, 1793, 1581, 1400, 1281, 1184, 1155, 1134, 1126, 1138, 1167, 1167, 1202, 1255, 1364, 1505, 1703, 2458, 1771, 1531, 1332, 1224, 1172, 1125, 1121, 1105, 1105, 1127, 1122, 1174, 1210, 1294, 1408, 1625, 1877, 1629, 1482, 1281, 1214, 1161, 1132, 1121, 1094, 1064, 1086, 1131, 1129, 1223, 1266, 1392, 1568, 1784, 1639, 1432, 1255, 1210, 1154, 1099, 1089, 1073, 1074, 1083, 1107, 1132, 1175, 1273, 1343, 1510, 1699, 1576, 1398, 1239, 1176, 1140, 1101, 1062, 1071, 1072, 1080, 1110, 1119, 1170, 1233, 1348, 1498, 1690, 1547, 1378, 1228, 1173, 1120, 1074, 1068, 1063, 1048, 1050, 1084, 1101, 1157, 1233, 1298, 1439, 1613, 1551, 1370, 1221, 1154, 1112, 1091, 1056, 1031, 1035, 1052, 1077, 1094, 1152, 1211, 1304, 1456, 1612, 1516, 1359, 1240, 1156, 1116, 1081, 1049, 1036, 1031, 1045, 1055, 1109, 1141, 1206, 1289, 1439, 1612, 1555, 1376, 1241, 1160, 1110, 1063, 1053, 1035, 1039, 1040, 1082, 1094, 1146, 1207, 1294, 1449, 1590, 1552, 1389, 1237, 1166, 1135, 1087, 1044, 1024, 1027, 1046, 1060, 1104, 1158, 1209, 1303, 1462, 1646, 1569, 1387, 1263, 1186, 1120, 1073, 1049, 1045, 1041, 1048, 1089, 1103, 1142, 1201, 1310, 1460, 1631, 1597, 1410, 1282, 1192, 1136, 1078, 1069, 1062, 1049, 1038, 1092, 1103, 1159, 1226, 1322, 1496, 1673, 1694, 1442, 1296, 1204, 1138, 1102, 1111, 1090, 1088, 1076, 1088, 1125, 1187, 1250, 1335, 1538, 1720, 1769, 1516, 1336, 1230, 1162, 1120, 1111, 1092, 1087, 1092, 1102, 1148, 1197, 1280, 1408, 1577, 1804, 1841, 1554, 1319, 1234, 1168, 1117, 1119, 1111, 1105, 1102, 1129, 1161, 1199, 1335, 1432, 1637, 1871, 1894, 1546, 1421, 1311, 1204, 1161, 1146, 1125, 1120, 1144, 1143, 1185, 1253, 1383, 1483, 1727, 2699]
                                       }
                                   }, {
                                       "name":    "2560x1440_GRAY_0",
                                       "resolution":    "2560x1440",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    15
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "lumaDetect":    {
                           "luma_detect_en":    1,
                           "fixed_times":    0,
                           "mutation_threshold":    0.0002,
                           "mutation_threshold_level2":    1000
                       },
                       "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-07, 1.27247e-10]
                           }
                       },
                       "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":    0,
                               "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":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5]
                               }
                           },
                           "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.2176, 3.3586],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_74", "A_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.916, 2.9308],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_74", "CWF_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.8601, 1.9464],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_74", "D50_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [2.1522, 1.6162],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_74", "D65_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [2.309, 1.4594],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_74", "D75_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.9946, 4.0346],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_74", "HZ_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.5709, 2.9096],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_74", "TL84_100"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 100, 100]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [0.9632, -0.0233, 0.06, -0.3153, 1.1992, 0.116, -0.0064, -0.6371, 1.6435],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5697, -0.3261, -0.2437, -0.4297, 1.6013, -0.1716, -0.006, -0.7301, 1.736],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1073, -0.1501, 0.0428, -0.2188, 1.173, 0.0458, 0.1061, -0.2623, 1.1561],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7991, -0.6794, -0.1197, -0.3626, 1.4238, -0.0613, 0.0343, -0.4654, 1.4311],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.0545, -0.0378, -0.0167, -0.1776, 1.2328, -0.0552, 0.0644, -0.2753, 1.211],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.2, -0.3, 0.1, -0.3881, 1.6113, -0.2232, -0.0031, -0.4299, 1.433],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1955, -0.1072, -0.0883, -0.1682, 1.3399, -0.1717, 0.0739, -0.1475, 1.0736],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.2, -0.3, 0.1, -0.3491, 1.6089, -0.2597, -0.0025, -0.3815, 1.384],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1598, -0.0983, -0.0615, -0.1339, 1.2826, -0.1487, 0.0625, -0.1196, 1.0571],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.4, -0.4, 0, -0.2483, 1.5219, -0.2736, -0.0174, -0.3333, 1.3507],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1191, -0.0797, -0.0394, -0.5095, 1.3681, 0.1414, -0.547, -0.0619, 1.6089],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5539, -0.248, -0.3059, -0.5179, 1.6479, -0.13, -0.2536, -0.8038, 2.0574],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [0.9275, 0.0417, 0.0307, -0.2678, 1.2629, 0.0048, 0.0718, -0.2217, 1.1499],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5922, -0.4674, -0.1248, -0.3639, 1.5069, -0.143, 0.017, -0.4784, 1.4614],
                                       "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
                           }
                       },
                       "af":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_NOT_SET",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "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",
                                   "FullSteps":    9,
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptiveSteps":    9,
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "TrigThers":    0.075,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.02,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    50,
                                   "OutFocusPos":    30,
                                   "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,
                                   "FlatValue":    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
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0
                               },
                               "measiso_cfg":    [{
                                       "iso":    50,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    100,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    1600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    3200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    6400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    12800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    25600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    51200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    102400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    204800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }],
                               "zoomfocus_tbl":    {
                                   "tbl_len":    0,
                                   "focal_length":    [],
                                   "focal_length_len":    0,
                                   "zoom_pos":    [],
                                   "zoom_pos_len":    0,
                                   "focus_infpos":    [],
                                   "focus_infpos_len":    0,
                                   "focus_macropos":    [],
                                   "focus_macropos_len":    0
                               }
                           }
                       },
                       "thumbnails":    {
                           "param":    {
                               "thumbnail_configs":    [{
                                       "owner_cookies":    0,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0002",
                                       "width_intfactor":    2,
                                       "height_intfactor":    2,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    1,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0004",
                                       "width_intfactor":    4,
                                       "height_intfactor":    4,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    2,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\b",
                                       "width_intfactor":    8,
                                       "height_intfactor":    8,
                                       "buffer_count":    0
                                   }],
                               "thumbnail_configs_len":    3
                           }
                       },
                       "bayernr_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":    [329, 292, 258, 227, 176, 141, 124, 121, 127, 133, 137, 135, 127, 113, 94, 75]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [747, 638, 535, 436, 251, 141, 120, 135, 114, 187, 226, 237, 222, 181, 112, 100]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [835, 721, 614, 514, 336, 194, 120, 147, 207, 256, 284, 288, 267, 221, 148, 120]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [789, 703, 625, 553, 435, 354, 311, 301, 308, 318, 321, 312, 288, 249, 198, 147]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [761, 707, 658, 614, 542, 490, 454, 430, 414, 401, 386, 366, 341, 309, 273, 238]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [329, 292, 258, 227, 176, 141, 124, 121, 127, 133, 137, 135, 127, 113, 94, 75]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [747, 638, 535, 436, 251, 141, 120, 135, 114, 187, 226, 237, 222, 181, 112, 100]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [835, 721, 614, 514, 336, 194, 120, 147, 207, 256, 284, 288, 267, 221, 148, 120]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [789, 703, 625, 553, 435, 354, 311, 301, 308, 318, 321, 312, 288, 249, 198, 147]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [761, 707, 658, 614, 542, 490, 454, 430, 414, 401, 386, 366, 341, 309, 273, 238]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    15,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "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":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.88,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.9,
                                               "hi_clipwgt":    0.9,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.7,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.5,
                                               "hi_clipwgt":    0.5,
                                               "softwgt":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "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,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-0, 0, -0, 0.0228, 17.7731],
                                               "ynr_ci_l":    0.2646,
                                               "ynr_ci_h":    0.1864
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-0, 0, -0, 0.0432, 20.4729],
                                               "ynr_ci_l":    0.2669,
                                               "ynr_ci_h":    0.177
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-0, 0, -0, 0.0597, 28.7999],
                                               "ynr_ci_l":    0.2595,
                                               "ynr_ci_h":    0.1668
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-0, 0, -0, 0.0511, 55.0177],
                                               "ynr_ci_l":    0.2549,
                                               "ynr_ci_h":    0.1561
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-0, 0, -0.0001, 0.0586, 72.3208],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-0, 0, -0, 0.0228, 17.7731],
                                               "ynr_ci_l":    0.2646,
                                               "ynr_ci_h":    0.1864
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-0, 0, -0, 0.0432, 20.4729],
                                               "ynr_ci_l":    0.2669,
                                               "ynr_ci_h":    0.177
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-0, 0, -0, 0.0597, 28.7999],
                                               "ynr_ci_l":    0.2595,
                                               "ynr_ci_h":    0.1668
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-0, 0, -0, 0.0511, 55.0177],
                                               "ynr_ci_l":    0.2549,
                                               "ynr_ci_h":    0.1561
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-0, 0, -0.0001, 0.0586, 72.3208],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-0, 0, -0, 0.0299, 10.9382],
                                               "ynr_ci_l":    0.2672,
                                               "ynr_ci_h":    0.1577
                                           }],
                                       "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,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.1,
                                               "low_dist_adj":    8,
                                               "low_weight":    1,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.9,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    20,
                                               "high_weight":    1,
                                               "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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3, 3.5, 4]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    5,
                                               "low_bf_1":    5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.5,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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.05, 1.1, 1.1, 1.2, 1.4, 1.6, 1.8, 2, 2.2, 2.4, 2.8, 3.5]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.95,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    1.1,
                                               "low_bf_1":    0.5,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    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_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.1,
                                               "sharp_ratio":    15,
                                               "bf_gain":    2,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    14,
                                               "bf_gain":    3,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.3,
                                               "sharp_ratio":    13,
                                               "bf_gain":    3,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    4,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    11,
                                               "bf_gain":    4,
                                               "bf_ratio":    5,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    10,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    9,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 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.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "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_algos_len":    0
       }
   }
}