hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
{
   "sensor_calib":    {
       "resolution":    {
           "width":    1920,
           "height":    1080
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_NONLINEAR_DB",
           "GainRange":    [1, 2, 20, 20, 1, 0, 20, 2, 4, 10, 0, 1, 20, 40, 4, 8, 5, -20, 1, 40, 60, 8, 16, 2.5, -40, 1, 60, 80, 16, 32, 1.25, -60, 1, 80, 100, 32, 64, 0.625, -80, 1, 100, 120, 64, 128, 0.3125, -100, 1, 120, 140, 128, 256, 0.1563, -120, 1, 140, 160, 256, 512, 0.0781, -140, 1, 160, 180, 512, 1024, 0.0391, -160, 1, 180, 200],
           "GainRange_len":    70
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    29.51
           },
           "CISExtraAgainRange":    {
               "Min":    2.6,
               "Max":    76.72
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    125.89
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    1,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 2]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    2,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 6]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [222, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    2,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 6]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [222, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [2, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    1,
           "hdr_mode":    "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
           "line_mode":    "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
       },
       "CISDcgSet":    {
           "Linear":    {
               "support_en":    1,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    2.6,
               "sync_switch":    0,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           },
           "Hdr":    {
               "support_en":    1,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    2.6,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    0
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    1.8,
           "EFL":    2.9,
           "LensT":    90,
           "IRCutT":    90
       }
   },
   "main_scene":    [{
           "name":    "normal",
           "sub_scene":    [{
                   "name":    "day",
                   "scene_isp30":    {
                       "ae_calib":    {
                           "CommCtrl":    {
                               "Enable":    1,
                               "AecRunInterval":    0,
                               "AecOpType":    "RK_AIQ_OP_MODE_AUTO",
                               "HistStatsMode":    "CAM_HISTV2_MODE_Y",
                               "RawStatsMode":    "CAM_RAWSTATSV2_MODE_Y",
                               "YRangeMode":    "CAM_YRANGEV2_MODE_FULL",
                               "AecGridWeight":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.01,
                                       "GainValue":    1,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "SmoothEn":    1,
                                   "DyDampEn":    1,
                                   "DampOver":    0.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    15,
                                   "WhiteDelay":    20
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    1,
                                   "FpsValue":    0
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.8,
                                       "v_size":    0.8
                                   },
                                   "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.01, 0.01, 0.02, 0.03, 0.03],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 8, 15.5, 64],
                                   "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.096, 0.192, 0.576, 0.96, 1.344],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [45, 45, 40, 38, 33, 30],
                                   "DySetpoint_len":    6
                               },
                               "BackLightCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MeasArea":    "AECV2_MEASURE_AREA_AUTO",
                                   "OEROILowTh":    150,
                                   "LumaDistTh":    10,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "BacklitSetPoint":    {
                                       "ExpLevel":    [0.096, 0.192, 0.384, 0.576, 0.96, 1.344],
                                       "ExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
                                       "LowLightPdfTh_len":    6,
                                       "TargetLLLuma":    [25, 22, 20, 18, 15, 12],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "OverExpCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MaxWeight":    8,
                                   "HighLightTh":    150,
                                   "LowLightTh":    30,
                                   "OverExpSetPoint":    {
                                       "OEpdf":    [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
                                       "OEpdf_len":    6,
                                       "LowLightWeight":    [1, 1, 1, 1, 1, 1],
                                       "LowLightWeight_len":    6,
                                       "HighLightWeight":    [4, 3, 3, 3, 2, 2],
                                       "HighLightWeight_len":    6
                                   }
                               }
                           },
                           "HdrAeCtrl":    {
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "LumaDistTh":    10,
                               "InitExp":    {
                                   "InitTimeValue":    [0.0005, 0.003, 0.003],
                                   "InitGainValue":    [1, 1, 1],
                                   "InitIspDGainValue":    [1, 1, 1],
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "Frm0TimeDot":    [0, 0.003, 0.003, 0.003, 0.003, 0.003],
                                   "Frm0TimeDot_len":    6,
                                   "Frm0GainDot":    [1, 1, 4, 8, 15.5, 32],
                                   "Frm0GainDot_len":    6,
                                   "Frm0IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm0IspDGainDot_len":    6,
                                   "Frm1TimeDot":    [0, 0.02, 0.02, 0.02, 0.02, 0.03],
                                   "Frm1TimeDot_len":    6,
                                   "Frm1GainDot":    [1, 4, 16, 32, 64, 128],
                                   "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":    160,
                                   "LfrmModeExpTh":    0.62
                               },
                               "LframeCtrl":    {
                                   "OEROILowTh":    150,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "LfrmSetPoint":    {
                                       "LExpLevel":    [0, 0.0384, 0.1152, 0.192, 0.384, 0.768],
                                       "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.192, 0.384, 0.768, 1.92, 2.688, 3.84],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.006, 0.01, 0.03, 0.07, 0.1],
                                       "SExpLevel_len":    6,
                                       "SSetPoint":    [25, 22, 20, 18, 16, 15],
                                       "SSetPoint_len":    6,
                                       "TargetHLLuma":    [150, 140, 130, 120, 110, 100],
                                       "TargetHLLuma_len":    6
                                   }
                               }
                           },
                           "IrisCtrl":    {
                               "Enable":    0,
                               "IrisType":    "IRISV2_DC_TYPE",
                               "ManualEn":    0,
                               "ManualAttr":    {
                                   "PIrisGainValue":    1,
                                   "DCIrisHoldValue":    30
                               },
                               "InitAttr":    {
                                   "PIrisGainValue":    512,
                                   "DCIrisHoldValue":    100
                               },
                               "PIrisAttr":    {
                                   "TotalStep":    81,
                                   "EffcStep":    44,
                                   "ZeroIsMax":    1,
                                   "StepTable":    [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               },
                               "DCIrisAttr":    {
                                   "Kp":    0.5,
                                   "Ki":    0.2,
                                   "Kd":    0.3,
                                   "MinPwmDuty":    0,
                                   "MaxPwmDuty":    100,
                                   "OpenPwmDuty":    40,
                                   "ClosePwmDuty":    22
                               }
                           },
                           "SyncTest":    {
                               "Enable":    0,
                               "IntervalFrm":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [1.32703, 1, 1, 3.31432],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_AUTO",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    0,
                               "xyDetectionEnable":    0,
                               "yuvDetectionEnable":    0,
                               "lsUsedForYuvDet":    ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
                               "lsUsedForYuvDet_len":    7,
                               "blkStatisticsEnable":    1,
                               "downScaleMode":    "CALIB_AWB_DS_8X8",
                               "blkMeasureMode":    "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
                               "mainWindow":    {
                                   "mode":    "CALIB_AWB_WINDOW_CFG_FIXED",
                                   "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.374556, 0.375338, 0.250105],
                                   "rotationMat":    [-0.52139, 0.853319, 1.20072, 0.853319, 0.52139, 0.602424, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0292969, 0.134766, 0.0136719, 38.9375, -0.0839844, -0.00390625, 0.0683594, 137.562, 0.0488281, -0.0507812, 0.0488281, 106.812, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [244, 249, 228, 211]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1096, -985, 140, 65]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-40, 158, 121, 16]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-235, -40, 237, 80]
                                   }, {
                                       "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.32703, 1, 1, 3.31432],
                                       "uvRegion":    {
                                           "u":    [122.5, 46, 53.5, 122.5],
                                           "v":    [127.5, 114, 101, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.043241, 0.269704, 0.137002, -0.0709569],
                                           "big":    [-0.0365239, 0.269333, 0.205713, -0.156499]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 146.312, 106.875, 183.625, 95.1875, 107.438],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.88234, 1, 1, 2.88169],
                                       "uvRegion":    {
                                           "u":    [58.5, 63, 125.5, 123],
                                           "v":    [85, 76.5, 125, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.269704, 0.746667, -0.0709569, -0.174737],
                                           "big":    [0.250667, 0.762667, -0.0707288, -0.224003]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 142.5, 108.25, 188.438, 113.25, 99.5],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.90508, 1, 1, 1.97851],
                                       "uvRegion":    {
                                           "u":    [63, 77.5, 126.5, 126],
                                           "v":    [76.5, 48, 124, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.74937, 1.11205, 0.175891, -0.221691],
                                           "big":    [0.752687, 1.11696, 0.226317, -0.248106]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 140.25, 107.25, 190.312, 124.312, 106],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.20617, 1, 1, 1.70399],
                                       "uvRegion":    {
                                           "u":    [77.5, 85.5, 126.5, 126.5],
                                           "v":    [48, 31, 123, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [1.11696, 1.37, 0.116835, -0.165689],
                                           "big":    [1.11877, 1.37, 0.162757, -0.177666]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 138.125, 107.062, 191, 135.625, 106.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [2.29955, 1, 1, 1.58086],
                                       "uvRegion":    {
                                           "u":    [127, 126.5, 85.5, 95.5],
                                           "v":    [122, 123, 31.5, 23]
                                       },
                                       "xyRegion":    {
                                           "normal":    [1.37629, 1.52705, 0.10863, -0.132693],
                                           "big":    [1.37, 1.52733, 0.143597, -0.168426]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 137.062, 107.125, 191, 140.312, 107.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.11832, 1, 1, 3.63318],
                                       "uvRegion":    {
                                           "u":    [122, 46.5, 46, 122.5],
                                           "v":    [128.5, 134.5, 114.5, 127.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.284681, -0.043241, 0.0769974, -0.0831237],
                                           "big":    [-0.337556, -0.0365239, 0.101782, -0.16204]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 149.125, 106.125, 179.188, 85, 112],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.52744, 1, 1, 2.60334],
                                       "uvRegion":    {
                                           "u":    [122.5, 53.5, 59, 123],
                                           "v":    [125.5, 100.5, 85, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.272, 0.747928, 0.170131, -0.0721733],
                                           "big":    [0.273259, 0.749333, 0.235821, -0.0727816]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [0.3, 0.5, 1.2, 1.6, 2, 4],
                                           "lineVector":    [10, 143.812, 106.812, 187.188, 106.688, 106.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.88234, 1, 1, 2.88169],
                                       "defaultDayGainHigh":    [1.90508, 1, 1, 1.97851],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0, 0, 0, 0],
                                   "toleranceValue_len":    4
                               },
                               "runInterval":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "intervalValue":    [0, 0, 0, 0],
                                   "intervalValue_len":    4
                               },
                               "dampFactor":    {
                                   "dFStep":    0.05,
                                   "dFMin":    0.7,
                                   "dFMax":    0.9,
                                   "lvIIRsize":    4,
                                   "lvVarTh":    0.04
                               },
                               "wbGainAdjust":    {
                                   "enable":    0,
                                   "lutAll":    [{
                                           "lumaValue":    128,
                                           "ct_grid_num":    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.32703, 1, 1, 3.31432],
                               "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":    24.9298,
                                           "meanH":    40.1105
                                       }, {
                                           "index":    13,
                                           "meanC":    25.9446,
                                           "meanH":    -70.0917
                                       }, {
                                           "index":    5,
                                           "meanC":    12.9021,
                                           "meanH":    -65.9844
                                       }, {
                                           "index":    10,
                                           "meanC":    12.2567,
                                           "meanH":    -44.4133
                                       }, {
                                           "index":    14,
                                           "meanC":    15.251,
                                           "meanH":    159.265
                                       }, {
                                           "index":    16,
                                           "meanC":    31.0475,
                                           "meanH":    94.9178
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.32703,
                                           "BGain":    3.31432
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.90508,
                                           "BGain":    1.97851
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.52744,
                                           "BGain":    2.60334
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.877717, -0.479179, -2.75292],
                               "lineRgProjCCT":    [1, -0.000241257, 0.638007],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.1924, 1, 1, 1.4355],
                                   "laCalcFactor":    40
                               },
                               "remosaicCfg":    {
                                   "enable":    0,
                                   "applyInvWbGainEnable":    1,
                                   "sensorWbGain":    [1, 1, 1, 1]
                               },
                               "wbGainOffset":    {
                                   "enable":    0,
                                   "offset":    [0, 0, 0, 0]
                               }
                           }
                       },
                       "adrc_calib_V2":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalSetting":    {
                                   "LocalData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "LocalAutoEnable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalAutoEnable_len":    13,
                                       "LocalAutoWeit":    [0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477, 0.037477],
                                       "LocalAutoWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 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
                           }
                       },
                       "agamma_calib_V30":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 93, 128, 154, 175, 194, 211, 226, 240, 266, 289, 310, 329, 365, 396, 425, 451, 499, 543, 582, 618, 684, 744, 798, 848, 938, 1019, 1093, 1161, 1285, 1396, 1498, 1592, 1761, 1914, 2052, 2181, 2414, 2622, 2813, 2989, 3153, 3308, 3454, 3593, 3727, 3854, 3977, 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":    [238.75, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [238.75, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [238.875, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [238.875, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247],
                                   "B_Channel_len":    13
                               }
                           },
                           "Blc1TuningPara":    {
                               "enable":    0,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4096],
                               "curve_R":    [0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                               "curve_G":    [0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
                               "curve_B":    [0, 256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095]
                           }
                       },
                       "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_v30":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1.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_V2": 
                       {
                           "MergeTuningPara": 
                           {
                               "BaseFrm": "BASEFRAME_LONG",
                               "ByPassThr": 0,
                               "LongFrmModeData":
                               {
                                   "OECurve": 
                                   {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len": 13,
                                       "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "Smooth_len": 13,
                                       "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "Offset_len": 13
                                   },
                                   "MDCurve": 
                                   {
                                       "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "MoveCoef_len": 13,
                                       "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "LM_smooth_len": 13,
                                       "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                       "LM_offset_len": 13,
                                       "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "MS_smooth_len": 13,
                                       "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                       "MS_offset_len": 13
                                   },
                                   "OECurve_damp": 0.3,
                                   "MDCurveLM_damp": 0.3,
                                   "MDCurveMS_damp": 0.3    
                               },
                               "ShortFrmModeData":
                               {
                                   "OECurve": 
                                   {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len": 13,
                                       "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                       "Smooth_len": 13,
                                       "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "Offset_len": 13
                                   },
                                   "MDCurve": 
                                   {
                                       "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "MoveCoef_len": 13,
                                       "Coef":    [0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05],
                                       "Coef_len": 13,
                                       "ms_thd0":    [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
                                       "ms_thd0_len": 13,
                                       "lm_thd0":    [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
                                       "lm_thd0_len": 13
                                   },
                                   "OECurve_damp": 0.3,
                                   "MDCurve_damp": 0.3
                               }
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    0,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    1,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "1920x1080",
                                       "lsc_sect_size_x":    [120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120],
                                       "lsc_sect_size_y":    [67, 68, 67, 68, 67, 68, 67, 68, 67, 68, 67, 68, 67, 68, 67, 68]
                                   }, {
                                       "name":    "2688x1520",
                                       "lsc_sect_size_x":    [168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168],
                                       "lsc_sect_size_y":    [95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95]
                                   }],
                               "resolutionAll_len":    2
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [1.0869, 3.0841],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.6825, 2.7195],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.4454, 1.6941],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.8501, 1.5696],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.9489, 1.4545],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.9011, 3.6272],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.4345, 2.5143],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    7
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "1920x1080_A_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3460, 2859, 2486, 2169, 1890, 1719, 1587, 1496, 1452, 1451, 1498, 1576, 1721, 1897, 2149, 2506, 2902, 3243, 2745, 2348, 2030, 1789, 1607, 1468, 1399, 1360, 1365, 1398, 1477, 1609, 1790, 2039, 2370, 2785, 3067, 2616, 2235, 1916, 1691, 1510, 1380, 1301, 1273, 1269, 1305, 1385, 1514, 1685, 1920, 2246, 2638, 2959, 2492, 2119, 1808, 1598, 1425, 1309, 1231, 1194, 1197, 1232, 1315, 1428, 1603, 1845, 2140, 2510, 2864, 2437, 2048, 1751, 1534, 1364, 1242, 1168, 1132, 1129, 1166, 1241, 1364, 1536, 1751, 2056, 2436, 2770, 2362, 1986, 1691, 1473, 1314, 1198, 1117, 1083, 1091, 1122, 1201, 1319, 1480, 1703, 1999, 2374, 2743, 2301, 1935, 1653, 1431, 1272, 1161, 1090, 1053, 1054, 1094, 1163, 1277, 1427, 1660, 1935, 2315, 2707, 2269, 1899, 1630, 1405, 1257, 1140, 1069, 1032, 1036, 1076, 1138, 1255, 1405, 1635, 1912, 2262, 2657, 2249, 1878, 1608, 1396, 1239, 1128, 1058, 1024, 1032, 1065, 1133, 1243, 1403, 1607, 1893, 2271, 2694, 2251, 1882, 1612, 1398, 1247, 1129, 1059, 1032, 1036, 1068, 1135, 1244, 1402, 1618, 1892, 2290, 2657, 2278, 1913, 1625, 1417, 1258, 1150, 1072, 1038, 1047, 1082, 1151, 1259, 1420, 1635, 1918, 2272, 2737, 2299, 1935, 1657, 1446, 1282, 1175, 1103, 1069, 1072, 1109, 1182, 1291, 1449, 1668, 1957, 2348, 2790, 2362, 1994, 1709, 1491, 1333, 1216, 1144, 1107, 1112, 1146, 1217, 1337, 1491, 1711, 2022, 2405, 2849, 2427, 2055, 1766, 1551, 1387, 1267, 1193, 1164, 1162, 1193, 1265, 1387, 1560, 1787, 2079, 2490, 2954, 2534, 2154, 1864, 1628, 1453, 1337, 1261, 1227, 1227, 1270, 1335, 1465, 1629, 1859, 2179, 2573, 3081, 2642, 2254, 1951, 1714, 1550, 1425, 1341, 1309, 1305, 1342, 1423, 1549, 1720, 1978, 2289, 2681, 3255, 2794, 2407, 2063, 1834, 1645, 1521, 1445, 1402, 1396, 1437, 1524, 1649, 1840, 2089, 2412, 2808]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2985, 2467, 2143, 1890, 1698, 1571, 1467, 1402, 1369, 1376, 1400, 1469, 1576, 1725, 1920, 2174, 2481, 2760, 2341, 2048, 1809, 1629, 1483, 1391, 1327, 1300, 1302, 1324, 1394, 1496, 1637, 1823, 2069, 2389, 2623, 2252, 1963, 1728, 1550, 1408, 1315, 1250, 1224, 1230, 1257, 1327, 1414, 1559, 1742, 1985, 2261, 2532, 2148, 1881, 1654, 1489, 1347, 1246, 1186, 1162, 1163, 1199, 1262, 1361, 1485, 1668, 1910, 2205, 2449, 2094, 1830, 1594, 1421, 1298, 1205, 1143, 1117, 1114, 1148, 1210, 1310, 1440, 1611, 1850, 2107, 2374, 2057, 1775, 1555, 1387, 1255, 1165, 1103, 1073, 1082, 1111, 1166, 1268, 1395, 1570, 1794, 2092, 2311, 2017, 1735, 1524, 1352, 1227, 1128, 1070, 1049, 1051, 1084, 1140, 1235, 1362, 1541, 1759, 2040, 2315, 1992, 1715, 1500, 1337, 1213, 1115, 1056, 1032, 1036, 1069, 1130, 1216, 1348, 1512, 1730, 1990, 2276, 1973, 1702, 1483, 1319, 1198, 1109, 1049, 1026, 1028, 1064, 1118, 1209, 1341, 1500, 1723, 2004, 2317, 1981, 1710, 1493, 1329, 1203, 1115, 1058, 1024, 1034, 1059, 1117, 1216, 1344, 1507, 1723, 2009, 2318, 1992, 1710, 1511, 1344, 1214, 1125, 1064, 1041, 1043, 1072, 1133, 1224, 1357, 1513, 1744, 2018, 2335, 2012, 1731, 1537, 1369, 1238, 1150, 1092, 1059, 1067, 1091, 1155, 1249, 1381, 1548, 1771, 2044, 2372, 2062, 1796, 1564, 1397, 1271, 1185, 1120, 1094, 1093, 1124, 1191, 1285, 1415, 1587, 1811, 2089, 2441, 2108, 1827, 1608, 1446, 1322, 1225, 1165, 1142, 1140, 1170, 1236, 1322, 1463, 1622, 1879, 2169, 2530, 2188, 1910, 1681, 1512, 1370, 1284, 1222, 1194, 1197, 1225, 1283, 1384, 1518, 1686, 1943, 2224, 2645, 2291, 1990, 1746, 1582, 1452, 1353, 1293, 1257, 1257, 1289, 1353, 1453, 1588, 1769, 2013, 2332, 2801, 2350, 2120, 1840, 1661, 1523, 1438, 1363, 1338, 1337, 1360, 1430, 1532, 1676, 1869, 2112, 2437]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2941, 2452, 2132, 1908, 1709, 1554, 1460, 1381, 1360, 1368, 1394, 1466, 1573, 1719, 1915, 2164, 2516, 2802, 2346, 2038, 1808, 1608, 1476, 1385, 1315, 1284, 1290, 1318, 1383, 1484, 1626, 1820, 2069, 2373, 2611, 2242, 1967, 1724, 1540, 1394, 1305, 1244, 1214, 1218, 1255, 1318, 1409, 1557, 1727, 1995, 2283, 2544, 2175, 1871, 1654, 1470, 1342, 1243, 1182, 1152, 1160, 1186, 1258, 1349, 1492, 1670, 1894, 2216, 2438, 2116, 1832, 1600, 1423, 1295, 1200, 1137, 1107, 1109, 1144, 1207, 1299, 1438, 1613, 1842, 2125, 2385, 2072, 1773, 1555, 1386, 1249, 1160, 1098, 1068, 1072, 1105, 1172, 1266, 1395, 1564, 1798, 2090, 2374, 2030, 1747, 1526, 1352, 1223, 1131, 1073, 1042, 1044, 1079, 1138, 1237, 1366, 1531, 1767, 2049, 2355, 2012, 1717, 1505, 1331, 1207, 1118, 1054, 1027, 1028, 1064, 1128, 1219, 1347, 1520, 1746, 2020, 2340, 1991, 1709, 1493, 1324, 1196, 1108, 1046, 1024, 1029, 1061, 1115, 1206, 1338, 1508, 1731, 2024, 2352, 1993, 1716, 1496, 1332, 1197, 1111, 1054, 1026, 1026, 1057, 1120, 1211, 1339, 1505, 1732, 2018, 2346, 2006, 1719, 1510, 1343, 1213, 1124, 1060, 1042, 1041, 1068, 1130, 1222, 1359, 1537, 1748, 2043, 2370, 2035, 1749, 1539, 1368, 1234, 1154, 1078, 1060, 1061, 1093, 1153, 1251, 1373, 1556, 1785, 2087, 2428, 2072, 1793, 1566, 1398, 1277, 1177, 1125, 1094, 1098, 1123, 1182, 1286, 1420, 1594, 1832, 2105, 2463, 2132, 1838, 1614, 1441, 1316, 1225, 1161, 1133, 1133, 1168, 1230, 1322, 1466, 1633, 1883, 2159, 2564, 2213, 1916, 1675, 1507, 1380, 1277, 1220, 1181, 1194, 1220, 1280, 1381, 1518, 1703, 1942, 2249, 2663, 2304, 1994, 1748, 1570, 1444, 1342, 1283, 1247, 1248, 1282, 1346, 1447, 1581, 1771, 2013, 2324, 2860, 2382, 2085, 1845, 1666, 1534, 1424, 1358, 1318, 1331, 1357, 1418, 1527, 1660, 1868, 2113, 2455]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2858, 2359, 2070, 1859, 1675, 1514, 1448, 1373, 1360, 1353, 1388, 1455, 1579, 1710, 1862, 2132, 2439, 2623, 2230, 1983, 1752, 1594, 1461, 1362, 1320, 1288, 1291, 1332, 1385, 1477, 1615, 1804, 2039, 2293, 2552, 2155, 1914, 1681, 1522, 1387, 1306, 1245, 1213, 1225, 1258, 1329, 1412, 1539, 1722, 1942, 2205, 2396, 2110, 1812, 1623, 1465, 1333, 1242, 1191, 1165, 1164, 1199, 1276, 1353, 1490, 1645, 1867, 2132, 2359, 2056, 1782, 1583, 1412, 1295, 1190, 1140, 1110, 1110, 1153, 1219, 1309, 1437, 1610, 1812, 2046, 2280, 2012, 1732, 1524, 1377, 1255, 1162, 1105, 1070, 1076, 1109, 1177, 1271, 1399, 1559, 1775, 2002, 2246, 1960, 1705, 1501, 1351, 1221, 1136, 1072, 1052, 1051, 1086, 1146, 1241, 1376, 1531, 1737, 1992, 2222, 1957, 1684, 1469, 1338, 1213, 1121, 1056, 1032, 1042, 1072, 1129, 1220, 1353, 1512, 1729, 1954, 2230, 1932, 1670, 1483, 1313, 1202, 1112, 1048, 1024, 1032, 1062, 1133, 1208, 1339, 1503, 1710, 1964, 2201, 1939, 1668, 1488, 1326, 1204, 1116, 1061, 1031, 1032, 1064, 1133, 1227, 1350, 1522, 1724, 1948, 2267, 1964, 1698, 1505, 1341, 1224, 1130, 1075, 1042, 1047, 1074, 1141, 1236, 1366, 1526, 1737, 1976, 2301, 1973, 1732, 1529, 1363, 1239, 1151, 1093, 1067, 1076, 1101, 1158, 1260, 1388, 1539, 1742, 2019, 2332, 2015, 1767, 1551, 1406, 1275, 1185, 1132, 1103, 1099, 1138, 1194, 1299, 1411, 1577, 1777, 2053, 2369, 2088, 1793, 1589, 1441, 1323, 1230, 1181, 1151, 1155, 1185, 1240, 1329, 1469, 1634, 1845, 2088, 2479, 2143, 1856, 1656, 1512, 1379, 1286, 1224, 1204, 1204, 1235, 1298, 1408, 1529, 1684, 1905, 2139, 2612, 2234, 1951, 1729, 1559, 1443, 1345, 1297, 1266, 1271, 1295, 1357, 1456, 1579, 1749, 1996, 2267, 2736, 2341, 2067, 1806, 1656, 1520, 1419, 1362, 1342, 1338, 1385, 1439, 1545, 1691, 1850, 2103, 2359]
                                       }
                                   }, {
                                       "name":    "1920x1080_A_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2422, 2158, 1985, 1812, 1638, 1532, 1443, 1376, 1341, 1335, 1362, 1405, 1491, 1585, 1715, 1891, 2031, 2332, 2115, 1912, 1729, 1580, 1460, 1360, 1312, 1280, 1280, 1295, 1342, 1421, 1525, 1660, 1826, 2003, 2251, 2052, 1851, 1659, 1518, 1394, 1299, 1240, 1218, 1209, 1229, 1279, 1359, 1459, 1590, 1762, 1936, 2207, 1984, 1780, 1588, 1455, 1334, 1250, 1189, 1158, 1156, 1176, 1231, 1300, 1408, 1550, 1704, 1872, 2163, 1963, 1741, 1556, 1412, 1291, 1199, 1141, 1110, 1103, 1126, 1175, 1256, 1365, 1488, 1656, 1840, 2113, 1921, 1703, 1516, 1368, 1255, 1166, 1100, 1071, 1075, 1092, 1147, 1225, 1327, 1460, 1625, 1811, 2107, 1883, 1670, 1491, 1338, 1222, 1137, 1080, 1048, 1045, 1072, 1117, 1194, 1287, 1433, 1584, 1778, 2088, 1864, 1645, 1476, 1318, 1212, 1121, 1064, 1031, 1031, 1058, 1097, 1177, 1272, 1417, 1571, 1745, 2052, 1850, 1629, 1458, 1311, 1196, 1111, 1054, 1024, 1028, 1049, 1094, 1168, 1272, 1394, 1557, 1754, 2078, 1850, 1631, 1459, 1312, 1202, 1110, 1054, 1031, 1031, 1050, 1094, 1167, 1269, 1402, 1555, 1766, 2041, 1864, 1651, 1466, 1324, 1209, 1127, 1063, 1033, 1038, 1060, 1106, 1177, 1281, 1411, 1570, 1745, 2088, 1869, 1659, 1485, 1343, 1224, 1144, 1087, 1057, 1056, 1080, 1129, 1199, 1299, 1430, 1591, 1791, 2107, 1903, 1695, 1518, 1373, 1262, 1174, 1117, 1085, 1086, 1106, 1152, 1231, 1325, 1454, 1629, 1817, 2125, 1932, 1726, 1551, 1412, 1298, 1209, 1152, 1129, 1122, 1139, 1184, 1263, 1370, 1501, 1655, 1857, 2168, 1988, 1784, 1614, 1462, 1341, 1259, 1201, 1174, 1169, 1196, 1232, 1315, 1411, 1540, 1709, 1888, 2216, 2036, 1835, 1662, 1514, 1408, 1320, 1257, 1232, 1223, 1243, 1292, 1368, 1465, 1611, 1764, 1928, 2279, 2109, 1921, 1724, 1589, 1466, 1383, 1330, 1295, 1284, 1307, 1358, 1429, 1537, 1668, 1820, 1966]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2090, 1862, 1711, 1579, 1472, 1400, 1334, 1290, 1265, 1266, 1273, 1309, 1366, 1441, 1533, 1641, 1737, 1985, 1804, 1668, 1541, 1439, 1347, 1289, 1244, 1224, 1221, 1227, 1266, 1321, 1394, 1484, 1594, 1718, 1925, 1766, 1626, 1497, 1392, 1300, 1238, 1191, 1171, 1172, 1184, 1225, 1270, 1350, 1443, 1557, 1659, 1888, 1710, 1580, 1453, 1356, 1261, 1189, 1145, 1127, 1123, 1145, 1181, 1239, 1304, 1401, 1520, 1644, 1850, 1687, 1555, 1416, 1308, 1229, 1163, 1116, 1095, 1088, 1108, 1145, 1206, 1279, 1369, 1490, 1591, 1811, 1673, 1522, 1394, 1288, 1198, 1134, 1087, 1061, 1066, 1082, 1113, 1178, 1250, 1346, 1459, 1596, 1775, 1651, 1497, 1375, 1264, 1179, 1105, 1061, 1044, 1042, 1062, 1095, 1154, 1228, 1330, 1440, 1567, 1785, 1637, 1486, 1358, 1254, 1170, 1096, 1051, 1031, 1031, 1051, 1090, 1141, 1220, 1310, 1421, 1535, 1758, 1623, 1476, 1344, 1239, 1157, 1092, 1045, 1026, 1024, 1048, 1079, 1136, 1216, 1301, 1418, 1548, 1787, 1628, 1482, 1352, 1247, 1160, 1096, 1053, 1023, 1029, 1041, 1077, 1141, 1217, 1306, 1416, 1549, 1780, 1630, 1476, 1363, 1256, 1166, 1102, 1055, 1036, 1034, 1050, 1089, 1144, 1224, 1306, 1427, 1550, 1781, 1636, 1484, 1378, 1272, 1182, 1120, 1076, 1047, 1051, 1062, 1103, 1160, 1238, 1328, 1440, 1559, 1792, 1661, 1526, 1389, 1286, 1203, 1144, 1094, 1073, 1067, 1085, 1127, 1183, 1257, 1349, 1459, 1578, 1820, 1678, 1535, 1412, 1316, 1237, 1169, 1125, 1107, 1101, 1117, 1157, 1204, 1285, 1363, 1496, 1617, 1856, 1716, 1582, 1456, 1358, 1265, 1209, 1164, 1142, 1140, 1153, 1184, 1243, 1315, 1396, 1524, 1632, 1902, 1766, 1620, 1487, 1397, 1319, 1253, 1212, 1183, 1178, 1194, 1229, 1283, 1353, 1440, 1551, 1677, 1961, 1774, 1692, 1537, 1439, 1357, 1307, 1254, 1236, 1230, 1237, 1275, 1328, 1400, 1492, 1594, 1706]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2059, 1851, 1702, 1594, 1481, 1385, 1327, 1271, 1256, 1259, 1267, 1307, 1363, 1436, 1529, 1633, 1761, 2015, 1808, 1659, 1540, 1420, 1341, 1283, 1233, 1208, 1209, 1221, 1256, 1311, 1385, 1482, 1594, 1707, 1916, 1759, 1629, 1493, 1383, 1287, 1229, 1185, 1161, 1160, 1182, 1217, 1265, 1349, 1430, 1565, 1675, 1897, 1731, 1572, 1453, 1338, 1256, 1187, 1142, 1117, 1120, 1132, 1177, 1228, 1310, 1403, 1508, 1652, 1841, 1705, 1557, 1421, 1310, 1226, 1158, 1110, 1085, 1083, 1104, 1142, 1196, 1278, 1371, 1484, 1605, 1819, 1685, 1520, 1394, 1287, 1193, 1129, 1082, 1056, 1056, 1076, 1119, 1176, 1250, 1341, 1462, 1594, 1823, 1661, 1508, 1376, 1264, 1175, 1108, 1064, 1037, 1035, 1057, 1093, 1156, 1232, 1321, 1446, 1574, 1816, 1653, 1488, 1363, 1249, 1164, 1099, 1049, 1026, 1023, 1046, 1088, 1144, 1220, 1317, 1435, 1558, 1807, 1638, 1483, 1353, 1244, 1155, 1091, 1042, 1024, 1025, 1045, 1077, 1133, 1213, 1308, 1424, 1563, 1814, 1638, 1487, 1354, 1250, 1154, 1092, 1049, 1025, 1021, 1039, 1080, 1136, 1212, 1304, 1423, 1556, 1802, 1642, 1484, 1362, 1255, 1165, 1101, 1051, 1037, 1032, 1046, 1086, 1142, 1226, 1327, 1431, 1569, 1808, 1655, 1500, 1379, 1271, 1178, 1124, 1062, 1048, 1045, 1064, 1101, 1162, 1231, 1334, 1451, 1592, 1834, 1669, 1524, 1391, 1287, 1209, 1136, 1099, 1073, 1072, 1084, 1119, 1184, 1262, 1355, 1476, 1590, 1837, 1697, 1544, 1418, 1312, 1232, 1169, 1121, 1099, 1094, 1115, 1151, 1204, 1288, 1372, 1499, 1610, 1881, 1736, 1587, 1451, 1353, 1274, 1202, 1162, 1130, 1138, 1149, 1182, 1240, 1315, 1410, 1523, 1650, 1915, 1776, 1624, 1489, 1387, 1312, 1243, 1203, 1174, 1170, 1188, 1223, 1278, 1347, 1442, 1551, 1672, 2002, 1798, 1664, 1542, 1444, 1367, 1295, 1249, 1217, 1225, 1234, 1264, 1323, 1387, 1491, 1595, 1719]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2001, 1780, 1652, 1553, 1452, 1349, 1317, 1263, 1256, 1245, 1262, 1297, 1368, 1429, 1486, 1609, 1707, 1887, 1719, 1615, 1492, 1408, 1327, 1262, 1237, 1212, 1210, 1234, 1258, 1305, 1376, 1469, 1571, 1649, 1873, 1690, 1585, 1456, 1367, 1280, 1230, 1186, 1160, 1167, 1185, 1227, 1268, 1333, 1426, 1523, 1618, 1787, 1680, 1522, 1426, 1334, 1248, 1186, 1150, 1130, 1124, 1145, 1194, 1232, 1309, 1382, 1486, 1590, 1782, 1656, 1515, 1406, 1300, 1226, 1149, 1113, 1088, 1084, 1113, 1154, 1205, 1277, 1368, 1460, 1545, 1739, 1636, 1485, 1366, 1279, 1198, 1131, 1089, 1058, 1060, 1080, 1124, 1181, 1254, 1337, 1443, 1527, 1725, 1604, 1472, 1354, 1263, 1173, 1113, 1063, 1047, 1042, 1064, 1101, 1160, 1241, 1321, 1422, 1530, 1714, 1608, 1459, 1330, 1255, 1170, 1102, 1051, 1031, 1037, 1054, 1089, 1145, 1225, 1310, 1421, 1507, 1722, 1590, 1449, 1344, 1233, 1161, 1095, 1044, 1024, 1028, 1046, 1094, 1135, 1214, 1304, 1407, 1517, 1698, 1593, 1445, 1347, 1244, 1161, 1097, 1056, 1030, 1027, 1046, 1093, 1151, 1222, 1319, 1417, 1502, 1741, 1607, 1465, 1357, 1253, 1176, 1107, 1066, 1037, 1038, 1052, 1096, 1155, 1232, 1317, 1422, 1518, 1755, 1604, 1485, 1370, 1266, 1183, 1121, 1077, 1055, 1060, 1072, 1106, 1170, 1244, 1320, 1416, 1540, 1761, 1623, 1502, 1378, 1295, 1207, 1144, 1106, 1081, 1073, 1098, 1130, 1196, 1254, 1340, 1432, 1551, 1767, 1662, 1506, 1396, 1312, 1238, 1174, 1141, 1116, 1116, 1131, 1161, 1210, 1290, 1373, 1469, 1557, 1819, 1681, 1537, 1434, 1358, 1273, 1211, 1166, 1152, 1147, 1163, 1198, 1264, 1324, 1395, 1494, 1570, 1879, 1722, 1589, 1473, 1377, 1311, 1246, 1216, 1192, 1192, 1200, 1233, 1286, 1345, 1424, 1538, 1631, 1915, 1767, 1650, 1509, 1435, 1355, 1290, 1253, 1240, 1231, 1259, 1283, 1339, 1413, 1477, 1587, 1651]
                                       }
                                   }, {
                                       "name":    "1920x1080_D50_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3277, 2787, 2399, 2102, 1856, 1675, 1557, 1484, 1443, 1426, 1474, 1551, 1679, 1876, 2104, 2403, 2804, 3098, 2636, 2284, 1989, 1745, 1585, 1455, 1382, 1355, 1339, 1382, 1458, 1575, 1769, 1990, 2294, 2662, 2967, 2526, 2175, 1878, 1660, 1488, 1365, 1291, 1265, 1260, 1296, 1371, 1483, 1658, 1875, 2173, 2528, 2807, 2405, 2081, 1785, 1565, 1409, 1302, 1218, 1187, 1187, 1232, 1299, 1422, 1573, 1787, 2075, 2440, 2737, 2339, 1997, 1712, 1509, 1345, 1234, 1160, 1128, 1132, 1167, 1240, 1350, 1512, 1721, 1993, 2343, 2657, 2267, 1931, 1662, 1460, 1301, 1192, 1117, 1083, 1077, 1122, 1183, 1303, 1453, 1654, 1935, 2275, 2608, 2234, 1876, 1617, 1419, 1263, 1156, 1081, 1052, 1051, 1091, 1154, 1263, 1417, 1618, 1895, 2243, 2596, 2208, 1851, 1588, 1395, 1255, 1135, 1065, 1032, 1034, 1067, 1138, 1244, 1397, 1594, 1863, 2196, 2554, 2189, 1846, 1581, 1383, 1236, 1129, 1059, 1024, 1028, 1061, 1130, 1231, 1384, 1586, 1839, 2189, 2608, 2166, 1836, 1578, 1390, 1236, 1126, 1061, 1027, 1030, 1065, 1129, 1239, 1378, 1585, 1848, 2208, 2598, 2196, 1866, 1608, 1401, 1261, 1148, 1069, 1042, 1044, 1075, 1148, 1253, 1402, 1598, 1876, 2215, 2618, 2241, 1889, 1625, 1432, 1283, 1173, 1098, 1071, 1067, 1102, 1172, 1279, 1432, 1637, 1901, 2265, 2686, 2292, 1942, 1681, 1465, 1316, 1216, 1143, 1103, 1106, 1141, 1210, 1325, 1476, 1692, 1950, 2339, 2765, 2353, 2006, 1726, 1530, 1377, 1270, 1191, 1159, 1162, 1188, 1264, 1371, 1532, 1745, 2011, 2380, 2858, 2451, 2101, 1808, 1598, 1440, 1327, 1259, 1217, 1216, 1255, 1320, 1443, 1600, 1823, 2115, 2475, 2983, 2552, 2196, 1910, 1687, 1533, 1411, 1329, 1299, 1305, 1334, 1408, 1527, 1695, 1917, 2205, 2588, 3185, 2657, 2294, 2017, 1796, 1638, 1510, 1416, 1390, 1387, 1427, 1495, 1632, 1799, 2041, 2337, 2701]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2653, 2228, 1962, 1736, 1554, 1441, 1346, 1282, 1255, 1258, 1301, 1362, 1449, 1579, 1756, 1986, 2312, 2508, 2134, 1875, 1659, 1497, 1357, 1276, 1224, 1194, 1197, 1228, 1282, 1372, 1501, 1677, 1888, 2166, 2402, 2065, 1794, 1579, 1423, 1297, 1215, 1155, 1125, 1131, 1153, 1219, 1306, 1430, 1593, 1795, 2088, 2281, 1983, 1730, 1507, 1358, 1240, 1152, 1099, 1074, 1076, 1103, 1165, 1252, 1370, 1527, 1736, 2010, 2222, 1923, 1678, 1468, 1317, 1197, 1110, 1059, 1033, 1031, 1064, 1120, 1199, 1323, 1480, 1692, 1929, 2184, 1884, 1636, 1426, 1275, 1158, 1074, 1024, 1024, 1024, 1029, 1084, 1172, 1286, 1444, 1644, 1899, 2135, 1848, 1602, 1397, 1250, 1134, 1043, 1024, 1024, 1024, 1024, 1054, 1146, 1260, 1413, 1616, 1855, 2140, 1830, 1574, 1381, 1232, 1119, 1035, 1024, 1024, 1024, 1024, 1042, 1131, 1238, 1398, 1588, 1831, 2105, 1825, 1559, 1371, 1225, 1111, 1026, 1024, 1024, 1024, 1024, 1037, 1114, 1237, 1382, 1581, 1832, 2116, 1816, 1574, 1379, 1225, 1114, 1031, 1024, 1024, 1024, 1024, 1039, 1123, 1232, 1390, 1585, 1828, 2126, 1830, 1577, 1395, 1242, 1120, 1043, 1024, 1024, 1024, 1024, 1052, 1135, 1246, 1402, 1593, 1845, 2141, 1855, 1603, 1411, 1266, 1142, 1066, 1024, 1024, 1024, 1024, 1072, 1161, 1273, 1424, 1622, 1884, 2201, 1896, 1644, 1438, 1289, 1176, 1096, 1043, 1024, 1024, 1043, 1097, 1181, 1299, 1460, 1660, 1922, 2243, 1935, 1693, 1483, 1329, 1215, 1132, 1083, 1055, 1058, 1082, 1139, 1227, 1345, 1500, 1711, 1981, 2318, 2006, 1750, 1539, 1391, 1265, 1186, 1128, 1103, 1102, 1134, 1187, 1272, 1395, 1559, 1775, 2037, 2412, 2079, 1825, 1610, 1455, 1333, 1245, 1189, 1164, 1160, 1185, 1246, 1333, 1459, 1615, 1837, 2116, 2581, 2187, 1913, 1685, 1523, 1402, 1318, 1255, 1235, 1233, 1261, 1314, 1409, 1536, 1716, 1942, 2228]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2701, 2241, 1974, 1743, 1558, 1433, 1348, 1286, 1254, 1260, 1290, 1358, 1450, 1583, 1748, 1986, 2282, 2539, 2148, 1886, 1659, 1487, 1364, 1272, 1217, 1191, 1192, 1215, 1281, 1361, 1509, 1676, 1896, 2156, 2396, 2054, 1800, 1583, 1419, 1300, 1215, 1149, 1129, 1130, 1158, 1220, 1305, 1430, 1591, 1805, 2084, 2318, 1987, 1724, 1516, 1362, 1241, 1155, 1101, 1074, 1077, 1104, 1164, 1249, 1373, 1526, 1747, 2009, 2233, 1938, 1678, 1470, 1314, 1198, 1115, 1054, 1027, 1031, 1062, 1114, 1210, 1329, 1477, 1687, 1953, 2192, 1898, 1638, 1436, 1284, 1161, 1076, 1024, 1024, 1024, 1026, 1081, 1175, 1286, 1444, 1656, 1896, 2152, 1866, 1604, 1408, 1251, 1137, 1049, 1024, 1024, 1024, 1024, 1056, 1144, 1265, 1414, 1615, 1868, 2130, 1849, 1581, 1384, 1233, 1120, 1037, 1024, 1024, 1024, 1024, 1043, 1131, 1244, 1396, 1593, 1843, 2108, 1836, 1579, 1383, 1222, 1113, 1028, 1024, 1024, 1024, 1024, 1041, 1123, 1240, 1389, 1598, 1849, 2119, 1830, 1573, 1385, 1236, 1121, 1036, 1024, 1024, 1024, 1024, 1037, 1125, 1237, 1396, 1591, 1838, 2145, 1844, 1591, 1396, 1247, 1127, 1048, 1024, 1024, 1024, 1024, 1051, 1135, 1255, 1408, 1604, 1855, 2161, 1872, 1612, 1424, 1268, 1148, 1066, 1024, 1024, 1024, 1024, 1072, 1156, 1270, 1430, 1627, 1879, 2203, 1904, 1653, 1452, 1292, 1178, 1103, 1044, 1024, 1024, 1042, 1102, 1188, 1306, 1458, 1673, 1930, 2272, 1950, 1699, 1492, 1343, 1223, 1137, 1079, 1057, 1052, 1084, 1135, 1230, 1347, 1502, 1710, 1977, 2334, 2024, 1750, 1555, 1394, 1272, 1193, 1129, 1109, 1102, 1137, 1188, 1277, 1403, 1559, 1775, 2070, 2460, 2104, 1836, 1614, 1455, 1336, 1254, 1189, 1168, 1160, 1188, 1249, 1338, 1458, 1622, 1859, 2144, 2632, 2202, 1922, 1700, 1538, 1421, 1317, 1260, 1230, 1232, 1251, 1321, 1402, 1533, 1709, 1948, 2206]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2744, 2326, 2045, 1831, 1651, 1521, 1424, 1368, 1337, 1336, 1378, 1429, 1533, 1664, 1835, 2071, 2381, 2605, 2234, 1961, 1739, 1573, 1430, 1350, 1298, 1267, 1278, 1302, 1358, 1457, 1589, 1765, 1986, 2258, 2501, 2136, 1874, 1670, 1503, 1373, 1293, 1221, 1203, 1210, 1237, 1297, 1388, 1517, 1683, 1901, 2165, 2391, 2074, 1802, 1601, 1445, 1324, 1232, 1172, 1148, 1155, 1188, 1247, 1334, 1455, 1628, 1831, 2089, 2328, 2027, 1753, 1554, 1398, 1275, 1187, 1127, 1106, 1109, 1135, 1201, 1290, 1423, 1577, 1775, 2024, 2254, 1981, 1725, 1512, 1366, 1243, 1156, 1096, 1062, 1070, 1104, 1165, 1251, 1375, 1543, 1748, 1981, 2254, 1943, 1678, 1481, 1332, 1208, 1126, 1074, 1042, 1042, 1083, 1137, 1232, 1356, 1513, 1708, 1962, 2217, 1925, 1676, 1465, 1324, 1197, 1114, 1055, 1030, 1026, 1065, 1122, 1209, 1333, 1492, 1686, 1928, 2209, 1912, 1656, 1461, 1303, 1194, 1104, 1045, 1025, 1031, 1059, 1118, 1206, 1321, 1483, 1680, 1909, 2226, 1914, 1655, 1470, 1317, 1191, 1111, 1050, 1026, 1024, 1065, 1120, 1212, 1324, 1484, 1674, 1928, 2226, 1936, 1670, 1486, 1332, 1202, 1124, 1062, 1037, 1048, 1078, 1132, 1217, 1351, 1497, 1697, 1939, 2241, 1944, 1709, 1502, 1348, 1230, 1143, 1079, 1057, 1062, 1100, 1154, 1241, 1361, 1523, 1722, 1991, 2303, 1992, 1732, 1534, 1376, 1264, 1177, 1126, 1086, 1097, 1124, 1185, 1273, 1398, 1558, 1765, 2011, 2331, 2051, 1775, 1578, 1423, 1310, 1215, 1161, 1133, 1137, 1164, 1223, 1318, 1443, 1598, 1816, 2091, 2454, 2118, 1851, 1645, 1486, 1356, 1269, 1212, 1182, 1178, 1220, 1280, 1368, 1492, 1656, 1872, 2136, 2554, 2196, 1931, 1699, 1543, 1418, 1331, 1275, 1247, 1248, 1272, 1341, 1426, 1553, 1725, 1961, 2211, 2696, 2312, 2029, 1782, 1623, 1508, 1401, 1336, 1317, 1327, 1338, 1404, 1506, 1652, 1834, 2036, 2345]
                                       }
                                   }, {
                                       "name":    "1920x1080_D50_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2294, 2103, 1915, 1756, 1608, 1493, 1416, 1365, 1333, 1312, 1340, 1382, 1455, 1567, 1680, 1814, 1963, 2228, 2031, 1860, 1694, 1541, 1440, 1348, 1296, 1275, 1255, 1280, 1324, 1391, 1507, 1620, 1768, 1915, 2177, 1981, 1801, 1627, 1491, 1374, 1285, 1230, 1210, 1200, 1220, 1266, 1332, 1436, 1553, 1704, 1855, 2093, 1915, 1748, 1568, 1425, 1319, 1243, 1176, 1151, 1146, 1176, 1216, 1295, 1382, 1501, 1652, 1820, 2067, 1884, 1697, 1521, 1389, 1273, 1191, 1133, 1106, 1106, 1126, 1174, 1243, 1343, 1463, 1606, 1770, 2027, 1843, 1656, 1490, 1356, 1242, 1161, 1100, 1071, 1061, 1092, 1130, 1210, 1302, 1418, 1573, 1735, 2003, 1828, 1619, 1458, 1326, 1213, 1133, 1072, 1047, 1042, 1069, 1109, 1180, 1278, 1396, 1551, 1723, 2002, 1814, 1604, 1438, 1309, 1210, 1116, 1060, 1031, 1029, 1049, 1097, 1167, 1265, 1381, 1531, 1694, 1972, 1801, 1601, 1433, 1299, 1193, 1112, 1055, 1024, 1024, 1045, 1091, 1156, 1255, 1376, 1513, 1691, 2011, 1780, 1591, 1429, 1304, 1192, 1107, 1056, 1026, 1025, 1047, 1089, 1162, 1248, 1373, 1518, 1703, 1995, 1797, 1610, 1450, 1309, 1211, 1125, 1060, 1037, 1035, 1053, 1103, 1171, 1265, 1379, 1535, 1701, 1997, 1822, 1620, 1456, 1330, 1225, 1142, 1082, 1059, 1051, 1073, 1119, 1188, 1283, 1404, 1546, 1728, 2029, 1847, 1651, 1493, 1349, 1246, 1174, 1116, 1081, 1080, 1101, 1145, 1220, 1311, 1438, 1571, 1767, 2062, 1873, 1685, 1516, 1393, 1289, 1212, 1150, 1124, 1122, 1134, 1183, 1248, 1346, 1466, 1601, 1775, 2097, 1923, 1740, 1566, 1435, 1329, 1249, 1200, 1164, 1159, 1182, 1219, 1296, 1386, 1510, 1659, 1816, 2145, 1967, 1788, 1627, 1490, 1392, 1307, 1246, 1223, 1223, 1236, 1279, 1349, 1444, 1561, 1699, 1861, 2230, 2005, 1831, 1685, 1556, 1460, 1373, 1303, 1284, 1276, 1297, 1332, 1414, 1503, 1629, 1764, 1891]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1857, 1681, 1566, 1450, 1347, 1284, 1224, 1180, 1159, 1157, 1183, 1214, 1256, 1319, 1402, 1499, 1618, 1804, 1645, 1527, 1413, 1322, 1233, 1182, 1147, 1124, 1122, 1138, 1164, 1212, 1279, 1366, 1455, 1558, 1763, 1620, 1486, 1368, 1278, 1197, 1144, 1100, 1076, 1078, 1086, 1125, 1173, 1239, 1319, 1408, 1532, 1701, 1579, 1453, 1324, 1236, 1161, 1100, 1061, 1041, 1039, 1053, 1090, 1140, 1203, 1283, 1382, 1499, 1678, 1549, 1426, 1304, 1213, 1133, 1071, 1034, 1013, 1007, 1027, 1060, 1104, 1175, 1258, 1363, 1457, 1666, 1532, 1403, 1278, 1184, 1106, 1046, 1009, 1013, 1009, 1002, 1035, 1089, 1153, 1238, 1337, 1449, 1640, 1512, 1383, 1260, 1168, 1089, 1022, 1015, 1019, 1015, 1003, 1013, 1071, 1136, 1220, 1323, 1425, 1650, 1504, 1364, 1250, 1156, 1079, 1018, 1019, 1023, 1019, 1007, 1005, 1061, 1121, 1211, 1305, 1412, 1626, 1502, 1352, 1243, 1151, 1073, 1010, 1020, 1024, 1020, 1008, 1001, 1046, 1121, 1199, 1301, 1415, 1632, 1492, 1364, 1248, 1149, 1074, 1014, 1019, 1023, 1019, 1007, 1002, 1054, 1115, 1204, 1302, 1410, 1633, 1498, 1361, 1258, 1161, 1076, 1022, 1015, 1019, 1015, 1003, 1011, 1061, 1124, 1210, 1304, 1417, 1633, 1508, 1375, 1265, 1176, 1090, 1038, 1009, 1013, 1009, 997, 1024, 1078, 1141, 1221, 1319, 1437, 1662, 1527, 1397, 1278, 1187, 1113, 1058, 1019, 1004, 1000, 1007, 1038, 1087, 1154, 1241, 1337, 1452, 1673, 1540, 1422, 1303, 1210, 1137, 1081, 1046, 1023, 1022, 1033, 1066, 1117, 1181, 1260, 1362, 1477, 1701, 1573, 1449, 1333, 1249, 1168, 1117, 1075, 1055, 1050, 1068, 1096, 1142, 1208, 1291, 1392, 1495, 1735, 1602, 1486, 1371, 1285, 1211, 1153, 1115, 1096, 1087, 1098, 1132, 1177, 1243, 1315, 1416, 1522, 1807, 1651, 1527, 1408, 1320, 1250, 1198, 1155, 1141, 1134, 1147, 1171, 1221, 1283, 1370, 1466, 1560]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1891, 1691, 1576, 1456, 1350, 1277, 1226, 1183, 1158, 1159, 1173, 1210, 1257, 1323, 1395, 1499, 1597, 1826, 1655, 1536, 1413, 1313, 1239, 1178, 1141, 1121, 1117, 1126, 1164, 1202, 1285, 1365, 1461, 1551, 1758, 1611, 1491, 1371, 1274, 1200, 1144, 1095, 1080, 1077, 1090, 1126, 1172, 1239, 1318, 1416, 1529, 1729, 1582, 1448, 1332, 1240, 1162, 1103, 1063, 1041, 1040, 1054, 1089, 1137, 1206, 1282, 1391, 1498, 1687, 1561, 1426, 1306, 1210, 1134, 1076, 1029, 1007, 1007, 1025, 1054, 1114, 1181, 1255, 1359, 1475, 1672, 1543, 1405, 1287, 1193, 1109, 1048, 1009, 1013, 1009, 999, 1032, 1091, 1153, 1238, 1346, 1446, 1653, 1527, 1384, 1270, 1169, 1092, 1028, 1015, 1019, 1015, 1003, 1015, 1069, 1141, 1220, 1322, 1435, 1643, 1519, 1370, 1253, 1157, 1080, 1020, 1019, 1023, 1019, 1007, 1006, 1061, 1126, 1209, 1309, 1421, 1628, 1511, 1370, 1254, 1148, 1075, 1012, 1020, 1024, 1020, 1008, 1005, 1055, 1124, 1205, 1315, 1428, 1634, 1504, 1363, 1254, 1160, 1081, 1019, 1019, 1023, 1019, 1007, 1000, 1055, 1120, 1209, 1307, 1418, 1648, 1509, 1373, 1259, 1166, 1083, 1027, 1015, 1019, 1015, 1003, 1010, 1061, 1132, 1215, 1313, 1425, 1648, 1522, 1382, 1276, 1178, 1096, 1038, 1009, 1013, 1009, 997, 1024, 1074, 1138, 1226, 1323, 1433, 1664, 1534, 1405, 1290, 1190, 1115, 1065, 1020, 1004, 1000, 1006, 1043, 1094, 1160, 1239, 1348, 1458, 1694, 1552, 1427, 1310, 1223, 1145, 1085, 1042, 1025, 1016, 1035, 1062, 1120, 1183, 1262, 1361, 1474, 1713, 1588, 1449, 1347, 1252, 1174, 1123, 1076, 1061, 1050, 1071, 1097, 1147, 1215, 1291, 1392, 1519, 1769, 1621, 1495, 1375, 1285, 1213, 1162, 1115, 1099, 1087, 1101, 1134, 1182, 1242, 1321, 1433, 1542, 1842, 1662, 1534, 1420, 1333, 1267, 1197, 1159, 1136, 1134, 1137, 1177, 1215, 1281, 1364, 1470, 1544]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1921, 1755, 1632, 1530, 1431, 1356, 1295, 1259, 1235, 1229, 1253, 1274, 1329, 1390, 1465, 1563, 1667, 1874, 1722, 1597, 1481, 1389, 1299, 1251, 1217, 1192, 1198, 1206, 1233, 1287, 1354, 1437, 1530, 1624, 1835, 1675, 1552, 1446, 1350, 1268, 1217, 1163, 1151, 1153, 1165, 1197, 1246, 1314, 1394, 1491, 1589, 1783, 1651, 1514, 1406, 1316, 1239, 1176, 1132, 1113, 1116, 1134, 1167, 1215, 1278, 1368, 1458, 1558, 1758, 1633, 1490, 1381, 1287, 1207, 1146, 1101, 1084, 1083, 1096, 1137, 1188, 1264, 1340, 1430, 1529, 1719, 1611, 1479, 1355, 1269, 1187, 1126, 1080, 1050, 1054, 1075, 1112, 1162, 1232, 1323, 1421, 1511, 1731, 1590, 1448, 1336, 1245, 1161, 1103, 1065, 1037, 1033, 1061, 1092, 1152, 1223, 1306, 1398, 1507, 1710, 1582, 1452, 1326, 1242, 1154, 1095, 1050, 1029, 1021, 1047, 1082, 1134, 1207, 1293, 1385, 1487, 1706, 1573, 1437, 1324, 1224, 1153, 1087, 1041, 1025, 1027, 1043, 1079, 1133, 1197, 1286, 1382, 1474, 1717, 1573, 1434, 1331, 1236, 1148, 1092, 1045, 1025, 1019, 1047, 1080, 1137, 1199, 1286, 1375, 1487, 1710, 1585, 1441, 1340, 1245, 1155, 1101, 1053, 1032, 1039, 1056, 1088, 1137, 1219, 1292, 1389, 1489, 1709, 1581, 1466, 1346, 1252, 1174, 1113, 1063, 1045, 1046, 1071, 1102, 1153, 1220, 1306, 1400, 1519, 1740, 1605, 1472, 1363, 1267, 1196, 1136, 1100, 1065, 1071, 1085, 1122, 1172, 1242, 1324, 1422, 1519, 1738, 1633, 1491, 1386, 1296, 1226, 1160, 1121, 1099, 1098, 1111, 1145, 1200, 1267, 1342, 1446, 1559, 1801, 1661, 1533, 1425, 1334, 1252, 1195, 1155, 1131, 1122, 1149, 1182, 1228, 1292, 1372, 1468, 1567, 1837, 1692, 1572, 1447, 1363, 1288, 1233, 1195, 1174, 1170, 1178, 1218, 1260, 1323, 1405, 1511, 1590, 1887, 1745, 1620, 1489, 1407, 1344, 1274, 1229, 1217, 1221, 1217, 1251, 1305, 1380, 1464, 1537, 1642]
                                       }
                                   }, {
                                       "name":    "1920x1080_D65_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3334, 2738, 2373, 2091, 1826, 1681, 1576, 1478, 1451, 1449, 1467, 1547, 1675, 1844, 2073, 2409, 2775, 3077, 2614, 2254, 1990, 1757, 1580, 1466, 1375, 1348, 1352, 1383, 1452, 1569, 1742, 1965, 2283, 2648, 2982, 2518, 2144, 1849, 1654, 1488, 1377, 1292, 1260, 1260, 1298, 1371, 1484, 1667, 1854, 2150, 2479, 2835, 2409, 2049, 1774, 1573, 1418, 1296, 1227, 1190, 1194, 1225, 1305, 1418, 1569, 1794, 2076, 2441, 2702, 2327, 1982, 1709, 1501, 1343, 1240, 1168, 1128, 1140, 1170, 1242, 1344, 1510, 1715, 1979, 2350, 2648, 2279, 1928, 1667, 1442, 1296, 1196, 1122, 1094, 1097, 1127, 1194, 1300, 1457, 1667, 1918, 2247, 2609, 2189, 1873, 1610, 1414, 1267, 1159, 1091, 1054, 1069, 1103, 1161, 1256, 1415, 1630, 1859, 2223, 2581, 2186, 1844, 1587, 1385, 1247, 1133, 1078, 1038, 1046, 1082, 1144, 1255, 1410, 1594, 1871, 2209, 2572, 2169, 1835, 1580, 1373, 1237, 1134, 1066, 1024, 1036, 1070, 1134, 1248, 1387, 1575, 1821, 2193, 2595, 2186, 1844, 1588, 1387, 1246, 1142, 1069, 1037, 1033, 1071, 1141, 1245, 1391, 1592, 1849, 2186, 2595, 2189, 1842, 1597, 1418, 1257, 1149, 1091, 1055, 1054, 1087, 1159, 1273, 1406, 1601, 1854, 2209, 2633, 2209, 1908, 1617, 1439, 1284, 1177, 1102, 1072, 1073, 1117, 1180, 1283, 1436, 1630, 1911, 2240, 2653, 2279, 1931, 1679, 1472, 1317, 1219, 1152, 1106, 1109, 1137, 1217, 1328, 1488, 1673, 1968, 2320, 2713, 2338, 1979, 1738, 1525, 1379, 1269, 1203, 1165, 1166, 1195, 1278, 1385, 1531, 1746, 2015, 2369, 2819, 2433, 2094, 1798, 1601, 1438, 1344, 1259, 1225, 1225, 1262, 1325, 1449, 1604, 1821, 2094, 2483, 2922, 2501, 2166, 1883, 1691, 1534, 1414, 1336, 1289, 1289, 1338, 1407, 1520, 1703, 1906, 2196, 2591, 3165, 2672, 2335, 2026, 1787, 1622, 1507, 1429, 1389, 1376, 1438, 1504, 1631, 1785, 2046, 2331, 2682]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2849, 2398, 2112, 1877, 1692, 1539, 1445, 1382, 1356, 1352, 1391, 1453, 1547, 1696, 1897, 2124, 2472, 2730, 2321, 2036, 1788, 1598, 1462, 1373, 1319, 1290, 1285, 1320, 1376, 1474, 1624, 1818, 2052, 2354, 2535, 2223, 1926, 1709, 1526, 1394, 1301, 1240, 1210, 1217, 1245, 1306, 1407, 1544, 1722, 1951, 2241, 2474, 2129, 1857, 1637, 1459, 1338, 1240, 1174, 1151, 1162, 1188, 1253, 1344, 1470, 1656, 1873, 2169, 2386, 2085, 1797, 1578, 1407, 1288, 1198, 1135, 1105, 1105, 1138, 1194, 1301, 1425, 1594, 1816, 2094, 2362, 2031, 1747, 1536, 1381, 1248, 1156, 1100, 1074, 1074, 1101, 1159, 1265, 1382, 1559, 1777, 2030, 2329, 1974, 1713, 1510, 1354, 1224, 1126, 1070, 1042, 1047, 1075, 1135, 1229, 1356, 1527, 1737, 1994, 2293, 1980, 1708, 1485, 1331, 1206, 1117, 1050, 1026, 1035, 1062, 1119, 1216, 1336, 1501, 1712, 1986, 2280, 1954, 1680, 1484, 1313, 1192, 1103, 1048, 1024, 1031, 1062, 1119, 1200, 1332, 1481, 1713, 1999, 2274, 1954, 1685, 1487, 1325, 1202, 1110, 1050, 1026, 1027, 1063, 1111, 1212, 1332, 1499, 1708, 1986, 2295, 1968, 1694, 1486, 1338, 1206, 1125, 1064, 1042, 1040, 1073, 1133, 1218, 1350, 1512, 1732, 1982, 2321, 1998, 1737, 1515, 1365, 1226, 1143, 1087, 1059, 1063, 1091, 1153, 1242, 1371, 1547, 1749, 2030, 2375, 2038, 1769, 1556, 1394, 1262, 1172, 1121, 1091, 1090, 1119, 1184, 1281, 1400, 1577, 1795, 2068, 2425, 2099, 1806, 1597, 1430, 1306, 1221, 1161, 1126, 1142, 1157, 1233, 1326, 1453, 1617, 1841, 2141, 2511, 2170, 1877, 1666, 1494, 1364, 1272, 1215, 1188, 1180, 1219, 1268, 1374, 1504, 1681, 1907, 2190, 2615, 2243, 1973, 1733, 1564, 1433, 1338, 1282, 1253, 1251, 1274, 1340, 1435, 1575, 1752, 1992, 2299, 2784, 2338, 2060, 1822, 1644, 1529, 1419, 1349, 1328, 1338, 1351, 1407, 1516, 1642, 1818, 2085, 2384]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2859, 2410, 2107, 1854, 1681, 1537, 1449, 1384, 1351, 1352, 1386, 1456, 1564, 1695, 1901, 2134, 2481, 2778, 2321, 2016, 1771, 1604, 1460, 1359, 1307, 1281, 1282, 1311, 1384, 1476, 1622, 1800, 2041, 2356, 2597, 2236, 1937, 1704, 1531, 1398, 1297, 1239, 1214, 1215, 1242, 1308, 1402, 1544, 1719, 1946, 2274, 2486, 2142, 1860, 1637, 1461, 1336, 1245, 1185, 1148, 1157, 1196, 1251, 1356, 1468, 1661, 1873, 2172, 2405, 2087, 1797, 1577, 1413, 1289, 1199, 1135, 1102, 1105, 1136, 1198, 1294, 1430, 1594, 1827, 2097, 2365, 2024, 1764, 1537, 1381, 1254, 1153, 1102, 1078, 1067, 1106, 1160, 1259, 1388, 1554, 1779, 2049, 2315, 2006, 1730, 1510, 1353, 1221, 1136, 1070, 1042, 1045, 1083, 1145, 1230, 1368, 1528, 1745, 2030, 2315, 1986, 1701, 1495, 1331, 1203, 1115, 1051, 1029, 1034, 1067, 1119, 1219, 1335, 1507, 1721, 1994, 2295, 1977, 1696, 1484, 1317, 1200, 1108, 1051, 1024, 1031, 1058, 1119, 1204, 1339, 1491, 1715, 1971, 2293, 1958, 1700, 1490, 1325, 1204, 1108, 1052, 1026, 1028, 1062, 1117, 1212, 1330, 1500, 1709, 1973, 2303, 1971, 1711, 1505, 1332, 1213, 1127, 1062, 1039, 1048, 1076, 1138, 1223, 1343, 1516, 1733, 2015, 2325, 2003, 1739, 1521, 1362, 1228, 1148, 1088, 1065, 1061, 1092, 1152, 1242, 1371, 1532, 1755, 2047, 2373, 2052, 1779, 1565, 1393, 1271, 1179, 1117, 1087, 1091, 1118, 1180, 1284, 1399, 1567, 1793, 2068, 2423, 2112, 1835, 1603, 1432, 1311, 1223, 1151, 1133, 1133, 1168, 1228, 1319, 1458, 1624, 1859, 2151, 2545, 2194, 1886, 1664, 1498, 1371, 1274, 1219, 1183, 1196, 1216, 1282, 1377, 1513, 1685, 1912, 2225, 2620, 2262, 1967, 1743, 1563, 1433, 1343, 1279, 1251, 1249, 1285, 1338, 1439, 1563, 1751, 1989, 2291, 2787, 2363, 2079, 1818, 1655, 1510, 1411, 1351, 1325, 1321, 1360, 1414, 1516, 1655, 1840, 2105, 2412]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2751, 2338, 2043, 1796, 1623, 1498, 1428, 1366, 1334, 1312, 1365, 1421, 1514, 1661, 1855, 2088, 2391, 2628, 2255, 1969, 1738, 1566, 1444, 1335, 1292, 1260, 1266, 1298, 1356, 1461, 1600, 1776, 1988, 2270, 2478, 2141, 1891, 1664, 1494, 1375, 1280, 1228, 1196, 1199, 1233, 1304, 1384, 1514, 1678, 1910, 2210, 2408, 2078, 1798, 1608, 1450, 1317, 1223, 1169, 1144, 1151, 1184, 1248, 1330, 1462, 1637, 1835, 2096, 2316, 2024, 1757, 1562, 1398, 1266, 1186, 1130, 1102, 1112, 1137, 1191, 1288, 1408, 1575, 1774, 2026, 2273, 1986, 1725, 1517, 1358, 1234, 1143, 1094, 1070, 1066, 1101, 1157, 1246, 1375, 1541, 1741, 1993, 2199, 1938, 1688, 1491, 1328, 1213, 1118, 1067, 1046, 1044, 1082, 1135, 1229, 1346, 1497, 1718, 1947, 2216, 1936, 1674, 1471, 1314, 1197, 1118, 1057, 1024, 1031, 1058, 1119, 1208, 1314, 1483, 1678, 1927, 2234, 1918, 1656, 1465, 1315, 1188, 1104, 1047, 1026, 1026, 1062, 1117, 1203, 1327, 1488, 1673, 1965, 2258, 1905, 1661, 1467, 1316, 1198, 1109, 1054, 1024, 1025, 1058, 1120, 1207, 1320, 1487, 1689, 1927, 2234, 1910, 1676, 1479, 1327, 1200, 1122, 1060, 1038, 1042, 1073, 1132, 1215, 1339, 1502, 1699, 1960, 2282, 1949, 1699, 1502, 1348, 1226, 1139, 1082, 1058, 1058, 1097, 1150, 1247, 1359, 1524, 1718, 1990, 2341, 1979, 1743, 1527, 1378, 1257, 1178, 1118, 1091, 1091, 1130, 1180, 1272, 1394, 1559, 1768, 2016, 2329, 2043, 1774, 1572, 1427, 1302, 1220, 1160, 1130, 1129, 1160, 1215, 1308, 1432, 1600, 1804, 2048, 2425, 2122, 1845, 1629, 1480, 1346, 1263, 1210, 1181, 1187, 1213, 1265, 1368, 1487, 1655, 1876, 2152, 2564, 2205, 1916, 1706, 1538, 1409, 1328, 1265, 1245, 1247, 1270, 1326, 1439, 1559, 1710, 1956, 2222, 2653, 2319, 2028, 1780, 1629, 1466, 1408, 1339, 1323, 1323, 1327, 1403, 1492, 1632, 1812, 2053, 2294]
                                       }
                                   }, {
                                       "name":    "1920x1080_D65_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2334, 2066, 1894, 1747, 1582, 1498, 1433, 1360, 1340, 1333, 1334, 1379, 1452, 1541, 1655, 1818, 1943, 2213, 2014, 1835, 1695, 1552, 1435, 1358, 1289, 1269, 1267, 1281, 1319, 1386, 1484, 1600, 1759, 1905, 2188, 1975, 1776, 1601, 1485, 1374, 1297, 1231, 1205, 1200, 1222, 1266, 1333, 1444, 1536, 1686, 1819, 2114, 1918, 1721, 1558, 1432, 1327, 1237, 1185, 1154, 1153, 1169, 1221, 1291, 1378, 1507, 1653, 1820, 2041, 1875, 1685, 1518, 1382, 1271, 1197, 1141, 1106, 1113, 1129, 1176, 1237, 1341, 1458, 1594, 1775, 2020, 1853, 1653, 1494, 1339, 1237, 1165, 1105, 1082, 1081, 1097, 1140, 1208, 1306, 1430, 1560, 1714, 2004, 1792, 1617, 1452, 1322, 1217, 1135, 1081, 1049, 1060, 1081, 1115, 1174, 1276, 1407, 1522, 1707, 1991, 1796, 1598, 1437, 1299, 1202, 1114, 1072, 1037, 1041, 1064, 1103, 1177, 1277, 1381, 1537, 1704, 1986, 1785, 1592, 1432, 1290, 1194, 1116, 1062, 1024, 1032, 1053, 1095, 1172, 1257, 1366, 1498, 1694, 2001, 1796, 1598, 1438, 1301, 1202, 1123, 1064, 1036, 1028, 1053, 1100, 1168, 1259, 1379, 1519, 1686, 1993, 1792, 1590, 1440, 1325, 1208, 1126, 1081, 1050, 1045, 1065, 1113, 1190, 1268, 1382, 1517, 1697, 2008, 1796, 1636, 1449, 1337, 1226, 1146, 1086, 1060, 1057, 1088, 1127, 1192, 1287, 1398, 1554, 1709, 2004, 1836, 1641, 1492, 1355, 1247, 1177, 1125, 1084, 1083, 1098, 1152, 1223, 1322, 1422, 1585, 1752, 2023, 1861, 1663, 1527, 1388, 1291, 1211, 1162, 1130, 1126, 1141, 1196, 1261, 1345, 1467, 1604, 1767, 2069, 1908, 1734, 1557, 1438, 1328, 1266, 1200, 1172, 1167, 1188, 1223, 1301, 1389, 1508, 1643, 1822, 2102, 1927, 1764, 1604, 1494, 1393, 1310, 1252, 1213, 1208, 1240, 1278, 1343, 1451, 1552, 1692, 1864, 2216, 2017, 1864, 1693, 1549, 1446, 1370, 1315, 1283, 1266, 1307, 1340, 1413, 1491, 1633, 1759, 1877]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1994, 1810, 1686, 1568, 1466, 1372, 1314, 1272, 1253, 1244, 1265, 1295, 1341, 1417, 1514, 1603, 1730, 1964, 1789, 1658, 1523, 1411, 1328, 1272, 1237, 1214, 1205, 1223, 1250, 1302, 1383, 1480, 1581, 1693, 1860, 1744, 1595, 1480, 1370, 1287, 1225, 1181, 1157, 1160, 1172, 1206, 1263, 1337, 1426, 1530, 1644, 1845, 1695, 1560, 1438, 1328, 1252, 1184, 1134, 1116, 1122, 1134, 1173, 1224, 1291, 1391, 1491, 1617, 1802, 1680, 1527, 1402, 1296, 1219, 1156, 1109, 1083, 1079, 1098, 1130, 1198, 1266, 1355, 1463, 1582, 1802, 1651, 1498, 1377, 1283, 1192, 1126, 1084, 1062, 1058, 1072, 1107, 1175, 1239, 1337, 1445, 1548, 1789, 1616, 1478, 1362, 1266, 1176, 1103, 1061, 1037, 1038, 1053, 1090, 1149, 1223, 1318, 1422, 1532, 1768, 1627, 1480, 1344, 1249, 1163, 1098, 1045, 1025, 1030, 1044, 1079, 1141, 1210, 1300, 1407, 1532, 1761, 1608, 1457, 1345, 1233, 1151, 1086, 1044, 1024, 1027, 1046, 1080, 1127, 1207, 1285, 1409, 1544, 1754, 1606, 1460, 1346, 1243, 1159, 1092, 1045, 1025, 1022, 1045, 1071, 1137, 1206, 1299, 1403, 1532, 1763, 1611, 1462, 1340, 1251, 1159, 1102, 1055, 1037, 1031, 1051, 1089, 1138, 1218, 1305, 1418, 1522, 1770, 1625, 1490, 1358, 1268, 1171, 1113, 1071, 1047, 1047, 1062, 1101, 1154, 1229, 1327, 1422, 1548, 1794, 1642, 1503, 1382, 1284, 1195, 1131, 1095, 1070, 1065, 1080, 1121, 1179, 1244, 1340, 1446, 1562, 1808, 1671, 1517, 1403, 1302, 1222, 1166, 1121, 1092, 1103, 1104, 1154, 1207, 1276, 1358, 1466, 1597, 1843, 1702, 1555, 1443, 1341, 1259, 1198, 1158, 1136, 1124, 1148, 1171, 1234, 1303, 1392, 1496, 1607, 1881, 1729, 1607, 1476, 1381, 1302, 1240, 1202, 1179, 1173, 1180, 1217, 1268, 1342, 1427, 1535, 1654, 1949, 1764, 1644, 1522, 1425, 1363, 1290, 1241, 1227, 1231, 1228, 1254, 1314, 1372, 1451, 1574, 1669]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2001, 1819, 1682, 1549, 1457, 1370, 1317, 1273, 1248, 1244, 1260, 1298, 1355, 1416, 1518, 1611, 1737, 1998, 1789, 1642, 1509, 1417, 1326, 1259, 1225, 1206, 1202, 1215, 1257, 1304, 1382, 1466, 1573, 1695, 1906, 1754, 1604, 1476, 1375, 1291, 1221, 1180, 1161, 1158, 1169, 1208, 1259, 1337, 1424, 1526, 1669, 1854, 1705, 1563, 1438, 1330, 1250, 1188, 1145, 1113, 1117, 1142, 1171, 1235, 1289, 1395, 1491, 1620, 1817, 1681, 1527, 1401, 1301, 1220, 1157, 1109, 1080, 1079, 1097, 1134, 1191, 1270, 1355, 1472, 1584, 1804, 1646, 1513, 1378, 1283, 1197, 1123, 1086, 1066, 1051, 1077, 1108, 1169, 1244, 1333, 1447, 1563, 1778, 1642, 1493, 1362, 1265, 1173, 1113, 1061, 1037, 1036, 1061, 1100, 1150, 1234, 1319, 1428, 1559, 1785, 1632, 1474, 1354, 1249, 1160, 1096, 1046, 1028, 1029, 1049, 1079, 1144, 1209, 1306, 1414, 1538, 1772, 1627, 1471, 1345, 1237, 1159, 1091, 1047, 1024, 1027, 1042, 1080, 1131, 1214, 1293, 1411, 1522, 1768, 1609, 1473, 1349, 1243, 1161, 1090, 1047, 1025, 1023, 1044, 1077, 1137, 1204, 1300, 1404, 1522, 1769, 1613, 1477, 1357, 1245, 1165, 1104, 1053, 1034, 1039, 1054, 1093, 1143, 1211, 1308, 1418, 1548, 1773, 1629, 1491, 1363, 1265, 1172, 1118, 1072, 1053, 1045, 1063, 1100, 1154, 1229, 1314, 1427, 1561, 1792, 1653, 1512, 1390, 1283, 1203, 1138, 1091, 1066, 1066, 1079, 1117, 1182, 1243, 1332, 1444, 1562, 1807, 1681, 1542, 1408, 1304, 1227, 1167, 1112, 1099, 1094, 1115, 1149, 1201, 1281, 1364, 1480, 1604, 1867, 1721, 1562, 1441, 1345, 1266, 1200, 1161, 1132, 1140, 1145, 1184, 1236, 1310, 1396, 1500, 1633, 1884, 1743, 1602, 1485, 1381, 1302, 1244, 1199, 1177, 1171, 1190, 1215, 1271, 1331, 1426, 1533, 1648, 1951, 1783, 1660, 1519, 1434, 1346, 1283, 1243, 1224, 1215, 1237, 1260, 1314, 1383, 1469, 1589, 1688]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1926, 1764, 1631, 1501, 1407, 1335, 1298, 1257, 1232, 1207, 1241, 1267, 1312, 1388, 1481, 1576, 1674, 1890, 1738, 1603, 1480, 1383, 1312, 1237, 1211, 1186, 1187, 1203, 1232, 1290, 1363, 1446, 1532, 1633, 1818, 1679, 1566, 1441, 1341, 1269, 1205, 1170, 1144, 1142, 1161, 1204, 1243, 1311, 1390, 1498, 1622, 1796, 1654, 1511, 1412, 1320, 1233, 1167, 1129, 1109, 1112, 1130, 1168, 1211, 1284, 1375, 1461, 1563, 1749, 1631, 1493, 1388, 1287, 1198, 1145, 1104, 1080, 1086, 1098, 1127, 1186, 1251, 1339, 1429, 1530, 1734, 1615, 1479, 1360, 1261, 1178, 1113, 1078, 1058, 1050, 1072, 1105, 1157, 1232, 1322, 1416, 1520, 1689, 1586, 1457, 1345, 1241, 1165, 1095, 1058, 1041, 1035, 1060, 1090, 1149, 1214, 1292, 1406, 1495, 1709, 1591, 1450, 1332, 1233, 1154, 1099, 1052, 1023, 1026, 1040, 1079, 1133, 1190, 1285, 1379, 1486, 1725, 1578, 1437, 1328, 1235, 1147, 1087, 1043, 1026, 1022, 1046, 1078, 1130, 1203, 1291, 1376, 1518, 1741, 1565, 1439, 1328, 1235, 1155, 1091, 1049, 1023, 1020, 1040, 1080, 1132, 1195, 1288, 1388, 1486, 1716, 1563, 1447, 1334, 1240, 1153, 1099, 1051, 1033, 1033, 1051, 1088, 1136, 1208, 1296, 1391, 1505, 1741, 1585, 1457, 1346, 1252, 1171, 1109, 1066, 1046, 1042, 1068, 1098, 1158, 1218, 1307, 1397, 1518, 1768, 1594, 1481, 1357, 1269, 1190, 1137, 1092, 1070, 1066, 1091, 1117, 1171, 1238, 1325, 1424, 1523, 1737, 1626, 1490, 1381, 1299, 1219, 1165, 1120, 1096, 1090, 1107, 1137, 1191, 1258, 1344, 1436, 1527, 1779, 1664, 1528, 1411, 1329, 1243, 1189, 1153, 1130, 1131, 1142, 1168, 1228, 1288, 1371, 1472, 1579, 1844, 1699, 1560, 1453, 1358, 1280, 1230, 1186, 1172, 1169, 1177, 1204, 1271, 1328, 1392, 1507, 1598, 1857, 1750, 1619, 1487, 1412, 1307, 1280, 1232, 1222, 1217, 1207, 1250, 1293, 1364, 1446, 1549, 1606]
                                       }
                                   }, {
                                       "name":    "1920x1080_D75_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3185, 2693, 2329, 2067, 1823, 1662, 1528, 1457, 1419, 1422, 1451, 1536, 1654, 1831, 2057, 2356, 2720, 3028, 2572, 2225, 1942, 1716, 1557, 1441, 1373, 1341, 1347, 1365, 1433, 1556, 1732, 1945, 2241, 2627, 2908, 2435, 2105, 1838, 1632, 1470, 1355, 1277, 1252, 1250, 1288, 1371, 1474, 1635, 1852, 2103, 2492, 2791, 2346, 2044, 1751, 1553, 1404, 1285, 1218, 1189, 1192, 1219, 1291, 1400, 1556, 1767, 2023, 2388, 2715, 2270, 1952, 1701, 1499, 1330, 1221, 1155, 1121, 1126, 1155, 1229, 1342, 1489, 1701, 1964, 2279, 2618, 2213, 1899, 1638, 1427, 1290, 1189, 1106, 1078, 1087, 1118, 1185, 1302, 1448, 1630, 1892, 2213, 2539, 2201, 1855, 1585, 1397, 1261, 1142, 1084, 1047, 1048, 1091, 1156, 1258, 1407, 1602, 1852, 2171, 2547, 2174, 1815, 1565, 1379, 1239, 1129, 1062, 1035, 1026, 1067, 1141, 1243, 1390, 1579, 1833, 2171, 2503, 2134, 1806, 1553, 1366, 1222, 1131, 1047, 1024, 1026, 1056, 1121, 1226, 1374, 1548, 1825, 2159, 2503, 2139, 1802, 1556, 1371, 1227, 1125, 1051, 1029, 1027, 1059, 1127, 1233, 1376, 1568, 1821, 2125, 2531, 2139, 1835, 1594, 1395, 1241, 1143, 1076, 1046, 1036, 1076, 1147, 1240, 1384, 1580, 1833, 2156, 2614, 2171, 1850, 1612, 1409, 1268, 1162, 1100, 1067, 1063, 1104, 1170, 1274, 1416, 1617, 1885, 2207, 2653, 2225, 1896, 1655, 1449, 1305, 1200, 1139, 1102, 1108, 1138, 1209, 1308, 1462, 1657, 1924, 2270, 2697, 2289, 1959, 1708, 1502, 1363, 1262, 1189, 1153, 1165, 1185, 1260, 1366, 1522, 1714, 1983, 2325, 2777, 2398, 2031, 1784, 1579, 1419, 1319, 1252, 1211, 1216, 1247, 1315, 1430, 1573, 1800, 2073, 2388, 2913, 2484, 2142, 1865, 1657, 1512, 1390, 1325, 1289, 1291, 1333, 1401, 1502, 1659, 1887, 2162, 2515, 3057, 2661, 2241, 1978, 1761, 1601, 1500, 1408, 1376, 1371, 1418, 1484, 1590, 1792, 1991, 2276, 2679]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2859, 2389, 2136, 1873, 1687, 1550, 1469, 1404, 1364, 1360, 1404, 1474, 1567, 1702, 1902, 2135, 2456, 2725, 2320, 2039, 1782, 1609, 1473, 1372, 1323, 1288, 1291, 1328, 1380, 1483, 1630, 1805, 2049, 2376, 2582, 2224, 1950, 1715, 1528, 1406, 1314, 1250, 1222, 1223, 1249, 1323, 1416, 1551, 1727, 1949, 2243, 2456, 2134, 1868, 1640, 1471, 1338, 1252, 1187, 1165, 1167, 1198, 1259, 1352, 1495, 1656, 1878, 2168, 2428, 2091, 1810, 1595, 1416, 1294, 1206, 1141, 1121, 1115, 1149, 1212, 1305, 1431, 1603, 1820, 2112, 2360, 2051, 1765, 1546, 1388, 1258, 1160, 1106, 1071, 1082, 1110, 1179, 1267, 1392, 1566, 1773, 2062, 2315, 1995, 1722, 1522, 1358, 1228, 1136, 1078, 1052, 1051, 1090, 1143, 1241, 1364, 1543, 1738, 2027, 2329, 1993, 1715, 1495, 1326, 1212, 1119, 1057, 1035, 1037, 1067, 1129, 1226, 1349, 1507, 1728, 1985, 2273, 1970, 1699, 1491, 1330, 1206, 1112, 1050, 1024, 1029, 1072, 1123, 1214, 1333, 1511, 1712, 1974, 2298, 1977, 1707, 1490, 1330, 1202, 1117, 1061, 1029, 1031, 1064, 1126, 1216, 1350, 1502, 1720, 1986, 2327, 1977, 1717, 1516, 1349, 1220, 1135, 1072, 1047, 1047, 1081, 1133, 1229, 1352, 1522, 1717, 2008, 2339, 1999, 1738, 1542, 1370, 1245, 1149, 1088, 1064, 1065, 1101, 1161, 1256, 1379, 1549, 1759, 2047, 2394, 2043, 1780, 1568, 1402, 1280, 1188, 1126, 1098, 1097, 1130, 1195, 1285, 1419, 1577, 1809, 2089, 2430, 2096, 1828, 1603, 1443, 1319, 1230, 1164, 1140, 1143, 1179, 1237, 1324, 1461, 1630, 1850, 2138, 2495, 2160, 1898, 1671, 1497, 1368, 1284, 1225, 1196, 1190, 1227, 1287, 1378, 1519, 1691, 1919, 2224, 2612, 2269, 1977, 1746, 1570, 1440, 1348, 1291, 1259, 1259, 1282, 1347, 1444, 1578, 1758, 1998, 2299, 2749, 2349, 2057, 1821, 1667, 1525, 1423, 1365, 1334, 1321, 1366, 1423, 1511, 1653, 1852, 2089, 2394]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2899, 2409, 2126, 1873, 1681, 1557, 1463, 1392, 1361, 1359, 1400, 1459, 1563, 1700, 1892, 2137, 2469, 2725, 2318, 2036, 1784, 1610, 1474, 1375, 1315, 1280, 1289, 1318, 1390, 1476, 1621, 1801, 2051, 2351, 2590, 2218, 1951, 1708, 1533, 1398, 1316, 1250, 1220, 1223, 1256, 1315, 1411, 1545, 1723, 1946, 2253, 2491, 2145, 1868, 1638, 1479, 1341, 1252, 1187, 1163, 1161, 1197, 1256, 1347, 1477, 1652, 1893, 2181, 2418, 2092, 1817, 1594, 1425, 1294, 1204, 1143, 1109, 1121, 1146, 1210, 1303, 1436, 1603, 1817, 2103, 2356, 2051, 1756, 1547, 1381, 1258, 1161, 1103, 1076, 1080, 1107, 1168, 1268, 1396, 1557, 1782, 2047, 2347, 2005, 1735, 1514, 1354, 1223, 1130, 1082, 1047, 1049, 1088, 1149, 1235, 1371, 1528, 1745, 2015, 2304, 1984, 1716, 1492, 1332, 1212, 1114, 1059, 1031, 1035, 1068, 1132, 1221, 1351, 1517, 1721, 2005, 2274, 1964, 1701, 1492, 1330, 1209, 1118, 1055, 1024, 1034, 1064, 1123, 1211, 1339, 1501, 1720, 1981, 2279, 1967, 1704, 1496, 1334, 1206, 1121, 1056, 1038, 1029, 1069, 1130, 1218, 1342, 1511, 1713, 1968, 2309, 1984, 1714, 1508, 1344, 1217, 1127, 1066, 1041, 1046, 1079, 1137, 1230, 1356, 1516, 1735, 2014, 2325, 2028, 1742, 1529, 1367, 1241, 1156, 1091, 1065, 1065, 1097, 1161, 1250, 1375, 1545, 1753, 2037, 2356, 2061, 1774, 1570, 1403, 1274, 1187, 1128, 1099, 1102, 1130, 1192, 1286, 1412, 1588, 1804, 2074, 2446, 2121, 1828, 1607, 1447, 1320, 1234, 1169, 1145, 1145, 1171, 1235, 1321, 1458, 1628, 1838, 2133, 2544, 2179, 1902, 1675, 1505, 1372, 1284, 1231, 1193, 1195, 1230, 1283, 1382, 1514, 1681, 1921, 2213, 2649, 2276, 1979, 1742, 1574, 1448, 1345, 1289, 1266, 1256, 1284, 1346, 1444, 1574, 1751, 1996, 2296, 2796, 2367, 2072, 1846, 1672, 1525, 1418, 1359, 1332, 1338, 1360, 1421, 1513, 1684, 1858, 2103, 2390]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2767, 2350, 2036, 1813, 1641, 1508, 1439, 1362, 1337, 1318, 1367, 1421, 1549, 1673, 1843, 2080, 2402, 2616, 2235, 1946, 1750, 1566, 1441, 1358, 1301, 1271, 1277, 1305, 1368, 1460, 1589, 1754, 1995, 2275, 2480, 2152, 1886, 1661, 1512, 1377, 1295, 1232, 1214, 1214, 1237, 1308, 1387, 1524, 1685, 1906, 2155, 2379, 2084, 1813, 1602, 1445, 1325, 1233, 1179, 1147, 1162, 1191, 1255, 1339, 1472, 1623, 1847, 2102, 2320, 2023, 1750, 1558, 1399, 1279, 1190, 1130, 1114, 1111, 1143, 1198, 1297, 1421, 1588, 1784, 2025, 2280, 1982, 1731, 1520, 1369, 1244, 1156, 1096, 1074, 1078, 1112, 1167, 1260, 1376, 1534, 1745, 2002, 2217, 1958, 1694, 1486, 1339, 1217, 1130, 1070, 1050, 1046, 1078, 1146, 1228, 1349, 1509, 1711, 1915, 2194, 1922, 1672, 1468, 1319, 1198, 1118, 1061, 1032, 1035, 1067, 1129, 1212, 1325, 1489, 1679, 1935, 2201, 1908, 1668, 1462, 1313, 1197, 1107, 1047, 1024, 1030, 1060, 1123, 1211, 1327, 1493, 1684, 1925, 2212, 1915, 1648, 1473, 1321, 1199, 1115, 1059, 1028, 1032, 1065, 1119, 1212, 1334, 1495, 1688, 1922, 2228, 1923, 1675, 1479, 1335, 1208, 1124, 1064, 1039, 1043, 1076, 1133, 1224, 1344, 1509, 1690, 1960, 2249, 1966, 1705, 1512, 1353, 1233, 1147, 1089, 1058, 1064, 1101, 1153, 1244, 1363, 1532, 1733, 1993, 2325, 1993, 1743, 1534, 1382, 1264, 1174, 1118, 1096, 1098, 1123, 1189, 1275, 1402, 1560, 1761, 2031, 2347, 2038, 1793, 1580, 1422, 1304, 1220, 1166, 1137, 1140, 1171, 1217, 1323, 1447, 1599, 1825, 2096, 2449, 2110, 1862, 1638, 1474, 1352, 1272, 1214, 1189, 1182, 1220, 1272, 1369, 1501, 1650, 1885, 2155, 2536, 2199, 1929, 1712, 1546, 1429, 1335, 1269, 1247, 1243, 1269, 1330, 1431, 1550, 1722, 1951, 2247, 2698, 2285, 2025, 1796, 1625, 1500, 1395, 1337, 1314, 1319, 1352, 1415, 1509, 1634, 1802, 2042, 2371]
                                       }
                                   }, {
                                       "name":    "1920x1080_D75_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2230, 2032, 1859, 1727, 1580, 1481, 1389, 1341, 1311, 1308, 1319, 1369, 1433, 1530, 1642, 1778, 1904, 2178, 1982, 1812, 1654, 1516, 1414, 1335, 1287, 1262, 1263, 1265, 1302, 1374, 1475, 1584, 1727, 1889, 2134, 1910, 1743, 1592, 1465, 1357, 1276, 1217, 1198, 1191, 1213, 1266, 1324, 1416, 1534, 1650, 1829, 2081, 1868, 1717, 1538, 1414, 1314, 1227, 1176, 1153, 1151, 1164, 1208, 1275, 1367, 1484, 1610, 1781, 2051, 1829, 1659, 1511, 1380, 1259, 1179, 1128, 1099, 1100, 1115, 1163, 1236, 1323, 1446, 1582, 1721, 1997, 1799, 1629, 1468, 1325, 1232, 1158, 1090, 1066, 1071, 1089, 1131, 1209, 1298, 1398, 1538, 1688, 1950, 1801, 1601, 1430, 1306, 1211, 1119, 1074, 1042, 1039, 1069, 1111, 1176, 1269, 1383, 1516, 1667, 1964, 1786, 1572, 1417, 1294, 1195, 1110, 1057, 1034, 1021, 1049, 1100, 1166, 1258, 1368, 1506, 1674, 1933, 1756, 1567, 1408, 1283, 1180, 1114, 1043, 1024, 1022, 1040, 1082, 1152, 1246, 1343, 1502, 1667, 1930, 1758, 1561, 1409, 1286, 1183, 1106, 1046, 1028, 1022, 1041, 1087, 1157, 1246, 1358, 1496, 1639, 1944, 1751, 1584, 1438, 1304, 1192, 1120, 1067, 1041, 1027, 1054, 1102, 1159, 1248, 1364, 1500, 1656, 1994, 1765, 1587, 1445, 1309, 1211, 1131, 1084, 1055, 1047, 1075, 1117, 1183, 1269, 1387, 1533, 1683, 2004, 1793, 1611, 1470, 1334, 1235, 1158, 1112, 1080, 1082, 1098, 1144, 1204, 1299, 1408, 1550, 1715, 2011, 1822, 1646, 1500, 1367, 1276, 1205, 1148, 1118, 1125, 1131, 1179, 1244, 1337, 1440, 1579, 1734, 2038, 1881, 1682, 1545, 1418, 1310, 1242, 1193, 1158, 1159, 1174, 1214, 1284, 1362, 1491, 1626, 1752, 2095, 1914, 1744, 1589, 1464, 1373, 1288, 1242, 1213, 1210, 1235, 1273, 1327, 1413, 1537, 1666, 1809, 2140, 2008, 1789, 1653, 1526, 1427, 1364, 1295, 1271, 1261, 1289, 1323, 1378, 1497, 1589, 1718, 1875]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2001, 1803, 1705, 1565, 1462, 1381, 1336, 1292, 1260, 1251, 1277, 1314, 1358, 1422, 1518, 1611, 1719, 1960, 1788, 1660, 1518, 1421, 1338, 1271, 1240, 1212, 1210, 1230, 1253, 1310, 1388, 1470, 1579, 1709, 1895, 1744, 1615, 1485, 1372, 1298, 1237, 1191, 1169, 1165, 1176, 1221, 1271, 1343, 1430, 1529, 1646, 1831, 1699, 1569, 1440, 1339, 1252, 1195, 1146, 1130, 1127, 1144, 1178, 1231, 1313, 1391, 1495, 1617, 1834, 1685, 1538, 1417, 1304, 1225, 1164, 1114, 1099, 1089, 1109, 1147, 1202, 1271, 1362, 1466, 1595, 1800, 1668, 1514, 1386, 1289, 1201, 1129, 1090, 1059, 1066, 1081, 1126, 1177, 1248, 1343, 1442, 1573, 1778, 1633, 1486, 1373, 1269, 1180, 1113, 1069, 1047, 1042, 1068, 1098, 1160, 1230, 1332, 1422, 1557, 1796, 1638, 1486, 1354, 1244, 1169, 1100, 1052, 1034, 1032, 1049, 1089, 1150, 1221, 1306, 1420, 1531, 1755, 1621, 1474, 1352, 1249, 1164, 1095, 1046, 1024, 1025, 1055, 1084, 1140, 1208, 1311, 1409, 1525, 1772, 1624, 1479, 1349, 1248, 1159, 1098, 1056, 1028, 1026, 1046, 1086, 1141, 1222, 1301, 1413, 1532, 1787, 1618, 1482, 1367, 1261, 1172, 1112, 1063, 1042, 1038, 1059, 1089, 1149, 1219, 1314, 1405, 1542, 1784, 1625, 1490, 1382, 1273, 1189, 1119, 1072, 1052, 1049, 1072, 1109, 1167, 1236, 1328, 1430, 1561, 1808, 1646, 1513, 1393, 1291, 1212, 1147, 1100, 1077, 1071, 1091, 1131, 1183, 1261, 1340, 1457, 1578, 1812, 1669, 1536, 1408, 1314, 1235, 1174, 1124, 1105, 1104, 1125, 1158, 1205, 1283, 1369, 1473, 1594, 1831, 1694, 1572, 1447, 1344, 1263, 1209, 1167, 1144, 1134, 1155, 1188, 1237, 1316, 1401, 1505, 1632, 1879, 1749, 1610, 1487, 1387, 1308, 1249, 1210, 1185, 1180, 1188, 1223, 1275, 1344, 1431, 1540, 1654, 1924, 1773, 1642, 1521, 1445, 1359, 1294, 1256, 1232, 1215, 1242, 1268, 1309, 1381, 1478, 1577, 1676]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2029, 1818, 1697, 1565, 1457, 1388, 1330, 1281, 1257, 1250, 1273, 1300, 1355, 1420, 1510, 1613, 1728, 1960, 1786, 1658, 1520, 1422, 1339, 1274, 1233, 1205, 1208, 1221, 1263, 1304, 1381, 1466, 1581, 1691, 1900, 1740, 1616, 1479, 1377, 1291, 1239, 1191, 1167, 1165, 1183, 1214, 1267, 1338, 1427, 1526, 1653, 1858, 1708, 1569, 1439, 1347, 1255, 1195, 1146, 1128, 1121, 1143, 1176, 1226, 1297, 1388, 1507, 1626, 1826, 1685, 1544, 1416, 1312, 1225, 1162, 1116, 1087, 1095, 1106, 1145, 1200, 1276, 1362, 1464, 1588, 1797, 1668, 1506, 1387, 1283, 1201, 1130, 1087, 1064, 1064, 1078, 1115, 1178, 1251, 1335, 1449, 1561, 1803, 1641, 1497, 1366, 1266, 1175, 1107, 1073, 1042, 1040, 1066, 1104, 1154, 1237, 1319, 1428, 1548, 1777, 1630, 1487, 1351, 1250, 1169, 1095, 1054, 1030, 1030, 1050, 1092, 1146, 1223, 1314, 1414, 1546, 1756, 1616, 1476, 1352, 1249, 1167, 1101, 1051, 1024, 1030, 1048, 1084, 1138, 1214, 1302, 1415, 1530, 1758, 1616, 1476, 1354, 1252, 1163, 1102, 1051, 1037, 1024, 1051, 1090, 1143, 1215, 1309, 1408, 1518, 1773, 1624, 1479, 1360, 1256, 1169, 1104, 1057, 1036, 1037, 1057, 1092, 1150, 1223, 1308, 1420, 1547, 1773, 1649, 1494, 1370, 1270, 1185, 1126, 1075, 1053, 1049, 1068, 1109, 1161, 1232, 1325, 1425, 1554, 1780, 1660, 1508, 1395, 1292, 1206, 1146, 1102, 1078, 1076, 1091, 1128, 1184, 1254, 1350, 1453, 1567, 1824, 1688, 1536, 1411, 1317, 1235, 1178, 1129, 1110, 1106, 1118, 1156, 1203, 1281, 1368, 1463, 1591, 1867, 1709, 1575, 1451, 1351, 1267, 1209, 1173, 1141, 1139, 1158, 1184, 1241, 1311, 1392, 1507, 1624, 1905, 1754, 1611, 1484, 1390, 1315, 1246, 1208, 1192, 1177, 1190, 1223, 1275, 1341, 1426, 1538, 1651, 1957, 1786, 1654, 1542, 1449, 1359, 1289, 1250, 1230, 1231, 1237, 1267, 1311, 1407, 1483, 1587, 1673]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1937, 1774, 1625, 1515, 1422, 1344, 1308, 1253, 1235, 1213, 1243, 1267, 1342, 1398, 1471, 1570, 1681, 1882, 1722, 1585, 1491, 1383, 1309, 1258, 1220, 1196, 1197, 1209, 1243, 1290, 1354, 1428, 1537, 1636, 1820, 1688, 1562, 1439, 1358, 1271, 1219, 1174, 1161, 1157, 1165, 1208, 1245, 1320, 1396, 1495, 1581, 1774, 1659, 1523, 1407, 1316, 1240, 1177, 1139, 1112, 1122, 1137, 1175, 1219, 1293, 1363, 1470, 1567, 1752, 1630, 1487, 1384, 1288, 1211, 1149, 1104, 1092, 1085, 1103, 1134, 1194, 1262, 1350, 1437, 1530, 1739, 1612, 1484, 1362, 1272, 1188, 1126, 1080, 1062, 1062, 1083, 1114, 1170, 1233, 1316, 1419, 1527, 1703, 1603, 1462, 1340, 1252, 1169, 1107, 1061, 1045, 1037, 1056, 1101, 1148, 1217, 1302, 1400, 1471, 1692, 1579, 1449, 1329, 1237, 1155, 1099, 1056, 1031, 1030, 1049, 1089, 1137, 1200, 1290, 1380, 1492, 1700, 1570, 1447, 1325, 1233, 1156, 1090, 1043, 1024, 1026, 1044, 1084, 1138, 1203, 1295, 1385, 1487, 1706, 1573, 1428, 1334, 1239, 1156, 1096, 1054, 1027, 1027, 1047, 1079, 1137, 1208, 1295, 1387, 1482, 1711, 1574, 1446, 1334, 1248, 1161, 1101, 1055, 1034, 1034, 1054, 1089, 1144, 1212, 1302, 1383, 1505, 1715, 1599, 1462, 1355, 1257, 1177, 1117, 1073, 1046, 1048, 1072, 1101, 1155, 1222, 1314, 1409, 1520, 1756, 1606, 1481, 1363, 1272, 1196, 1133, 1092, 1075, 1072, 1084, 1125, 1174, 1246, 1326, 1419, 1534, 1750, 1622, 1506, 1388, 1295, 1221, 1165, 1126, 1102, 1101, 1118, 1139, 1204, 1271, 1343, 1453, 1563, 1797, 1655, 1542, 1419, 1324, 1248, 1198, 1157, 1137, 1126, 1149, 1174, 1229, 1300, 1367, 1479, 1581, 1824, 1695, 1571, 1458, 1366, 1298, 1237, 1190, 1174, 1165, 1176, 1208, 1264, 1320, 1402, 1503, 1616, 1889, 1724, 1617, 1501, 1408, 1337, 1268, 1230, 1214, 1214, 1229, 1261, 1308, 1365, 1438, 1541, 1660]
                                       }
                                   }, {
                                       "name":    "1920x1080_CWF_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3103, 2590, 2243, 2021, 1750, 1640, 1487, 1419, 1419, 1391, 1422, 1474, 1608, 1764, 1995, 2271, 2532, 3006, 2435, 2145, 1863, 1676, 1509, 1409, 1345, 1309, 1313, 1344, 1405, 1508, 1669, 1903, 2141, 2510, 2683, 2323, 2031, 1794, 1582, 1430, 1342, 1261, 1242, 1226, 1269, 1332, 1434, 1583, 1797, 2052, 2361, 2620, 2268, 1942, 1707, 1500, 1362, 1279, 1209, 1170, 1166, 1203, 1273, 1369, 1516, 1704, 1953, 2312, 2557, 2199, 1851, 1634, 1462, 1314, 1203, 1144, 1118, 1122, 1155, 1208, 1306, 1458, 1637, 1891, 2178, 2529, 2152, 1861, 1588, 1409, 1269, 1183, 1109, 1081, 1084, 1110, 1174, 1274, 1412, 1591, 1816, 2130, 2455, 2092, 1800, 1561, 1384, 1244, 1143, 1086, 1046, 1051, 1086, 1143, 1254, 1387, 1547, 1806, 2125, 2397, 2079, 1784, 1532, 1365, 1221, 1127, 1052, 1039, 1040, 1080, 1117, 1224, 1358, 1540, 1798, 2081, 2391, 2050, 1732, 1518, 1352, 1226, 1117, 1064, 1030, 1036, 1057, 1119, 1209, 1341, 1528, 1772, 2079, 2408, 2044, 1770, 1508, 1359, 1216, 1125, 1062, 1024, 1027, 1061, 1127, 1212, 1361, 1530, 1783, 2050, 2429, 2044, 1775, 1553, 1365, 1217, 1135, 1067, 1050, 1042, 1086, 1139, 1241, 1363, 1544, 1762, 2079, 2443, 2114, 1800, 1570, 1388, 1258, 1155, 1085, 1063, 1063, 1103, 1157, 1251, 1385, 1587, 1829, 2192, 2485, 2152, 1831, 1605, 1439, 1292, 1202, 1128, 1096, 1101, 1136, 1185, 1286, 1440, 1593, 1848, 2178, 2519, 2166, 1887, 1656, 1479, 1345, 1253, 1174, 1131, 1148, 1171, 1242, 1336, 1458, 1648, 1909, 2211, 2662, 2281, 1978, 1731, 1542, 1397, 1309, 1242, 1197, 1193, 1232, 1294, 1405, 1528, 1725, 1984, 2347, 2771, 2389, 2054, 1829, 1601, 1478, 1363, 1300, 1267, 1255, 1283, 1372, 1469, 1605, 1787, 2090, 2389, 2992, 2464, 2187, 1914, 1704, 1568, 1477, 1387, 1353, 1340, 1375, 1423, 1578, 1715, 1938, 2206, 2492]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2894, 2395, 2136, 1882, 1677, 1549, 1455, 1392, 1360, 1361, 1407, 1443, 1541, 1690, 1913, 2120, 2478, 2691, 2286, 2033, 1798, 1604, 1462, 1376, 1304, 1280, 1280, 1308, 1371, 1479, 1608, 1783, 2027, 2320, 2554, 2229, 1926, 1701, 1530, 1386, 1301, 1239, 1205, 1201, 1234, 1308, 1402, 1551, 1709, 1938, 2260, 2528, 2120, 1863, 1632, 1455, 1326, 1242, 1180, 1152, 1155, 1183, 1254, 1346, 1481, 1659, 1857, 2195, 2393, 2046, 1779, 1571, 1412, 1283, 1188, 1125, 1100, 1111, 1134, 1185, 1294, 1424, 1593, 1813, 2089, 2363, 2019, 1756, 1528, 1382, 1235, 1150, 1103, 1075, 1073, 1104, 1163, 1257, 1382, 1553, 1776, 2039, 2331, 1984, 1729, 1507, 1344, 1225, 1130, 1075, 1051, 1051, 1083, 1135, 1220, 1350, 1535, 1744, 2015, 2266, 2003, 1695, 1493, 1332, 1211, 1112, 1056, 1029, 1032, 1069, 1128, 1217, 1340, 1518, 1722, 1996, 2247, 1966, 1696, 1497, 1320, 1199, 1103, 1045, 1024, 1026, 1059, 1112, 1198, 1336, 1489, 1691, 1997, 2287, 1965, 1689, 1483, 1329, 1212, 1107, 1059, 1033, 1027, 1067, 1122, 1203, 1327, 1501, 1721, 1955, 2320, 1958, 1700, 1485, 1326, 1210, 1121, 1070, 1045, 1044, 1065, 1133, 1218, 1337, 1507, 1711, 2011, 2312, 1984, 1725, 1511, 1359, 1219, 1136, 1078, 1056, 1054, 1092, 1146, 1237, 1358, 1536, 1744, 2022, 2323, 1996, 1746, 1558, 1382, 1254, 1173, 1114, 1081, 1081, 1111, 1181, 1265, 1399, 1571, 1779, 2072, 2436, 2076, 1799, 1605, 1433, 1305, 1217, 1163, 1129, 1129, 1158, 1224, 1312, 1437, 1607, 1852, 2137, 2460, 2161, 1874, 1661, 1492, 1367, 1274, 1207, 1171, 1174, 1221, 1271, 1372, 1491, 1674, 1900, 2229, 2605, 2247, 1958, 1733, 1560, 1427, 1352, 1283, 1257, 1240, 1276, 1336, 1438, 1568, 1752, 1988, 2262, 2752, 2341, 2056, 1821, 1626, 1520, 1412, 1339, 1324, 1341, 1362, 1429, 1517, 1660, 1815, 2080, 2425]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2830, 2439, 2129, 1896, 1674, 1543, 1425, 1390, 1353, 1354, 1397, 1452, 1551, 1691, 1879, 2112, 2467, 2737, 2345, 2045, 1776, 1600, 1465, 1373, 1311, 1270, 1274, 1302, 1367, 1465, 1604, 1791, 2040, 2297, 2573, 2238, 1948, 1693, 1523, 1382, 1289, 1240, 1200, 1209, 1244, 1299, 1391, 1518, 1701, 1959, 2221, 2480, 2141, 1844, 1620, 1441, 1325, 1230, 1178, 1139, 1143, 1181, 1250, 1343, 1484, 1639, 1869, 2164, 2399, 2091, 1786, 1593, 1410, 1290, 1190, 1120, 1105, 1107, 1132, 1204, 1288, 1408, 1589, 1800, 2112, 2384, 2030, 1779, 1537, 1380, 1248, 1165, 1088, 1065, 1069, 1091, 1150, 1257, 1386, 1557, 1772, 2040, 2329, 1999, 1737, 1504, 1351, 1219, 1121, 1069, 1048, 1043, 1074, 1138, 1223, 1348, 1532, 1739, 2021, 2350, 1990, 1707, 1486, 1326, 1203, 1108, 1056, 1024, 1031, 1058, 1115, 1214, 1325, 1506, 1719, 1996, 2280, 1975, 1686, 1505, 1319, 1199, 1111, 1039, 1028, 1033, 1066, 1117, 1205, 1333, 1491, 1705, 1988, 2288, 1959, 1703, 1487, 1323, 1203, 1108, 1051, 1024, 1025, 1062, 1119, 1213, 1327, 1497, 1702, 1964, 2290, 2000, 1696, 1514, 1333, 1211, 1118, 1059, 1038, 1040, 1057, 1126, 1213, 1326, 1516, 1734, 2049, 2299, 2010, 1740, 1533, 1359, 1225, 1143, 1083, 1053, 1053, 1085, 1148, 1233, 1371, 1546, 1771, 2004, 2386, 2062, 1766, 1556, 1378, 1259, 1179, 1117, 1089, 1090, 1108, 1173, 1267, 1399, 1577, 1788, 2053, 2462, 2093, 1830, 1589, 1428, 1307, 1216, 1156, 1120, 1123, 1157, 1220, 1309, 1437, 1613, 1851, 2137, 2487, 2175, 1893, 1658, 1484, 1369, 1267, 1217, 1176, 1179, 1220, 1263, 1356, 1500, 1679, 1906, 2202, 2611, 2259, 1973, 1732, 1560, 1423, 1342, 1272, 1244, 1239, 1278, 1328, 1439, 1551, 1743, 2000, 2296, 2737, 2343, 2067, 1813, 1638, 1521, 1420, 1354, 1310, 1337, 1355, 1409, 1503, 1638, 1826, 2109, 2398]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2762, 2339, 2008, 1800, 1636, 1493, 1420, 1365, 1347, 1317, 1389, 1401, 1477, 1691, 1845, 2096, 2444, 2601, 2218, 1943, 1723, 1562, 1447, 1340, 1287, 1249, 1264, 1302, 1335, 1457, 1580, 1755, 1992, 2292, 2420, 2113, 1856, 1680, 1504, 1353, 1274, 1216, 1188, 1199, 1255, 1282, 1381, 1498, 1702, 1882, 2191, 2339, 2078, 1800, 1592, 1420, 1295, 1226, 1150, 1147, 1139, 1184, 1245, 1328, 1448, 1621, 1800, 2106, 2275, 2048, 1735, 1572, 1383, 1273, 1196, 1116, 1094, 1098, 1132, 1184, 1270, 1427, 1580, 1780, 2041, 2317, 1999, 1719, 1508, 1362, 1239, 1145, 1093, 1063, 1079, 1121, 1166, 1241, 1386, 1537, 1726, 1949, 2283, 1949, 1702, 1490, 1330, 1222, 1131, 1083, 1052, 1055, 1084, 1142, 1248, 1356, 1508, 1702, 1949, 2234, 1934, 1693, 1453, 1303, 1209, 1117, 1070, 1032, 1038, 1075, 1130, 1228, 1334, 1502, 1686, 1974, 2207, 1899, 1657, 1465, 1308, 1197, 1124, 1049, 1044, 1035, 1060, 1121, 1221, 1324, 1470, 1684, 1910, 2267, 1922, 1684, 1498, 1309, 1196, 1110, 1051, 1028, 1030, 1056, 1132, 1211, 1320, 1481, 1707, 1943, 2218, 1931, 1651, 1469, 1308, 1200, 1119, 1062, 1024, 1039, 1071, 1118, 1215, 1325, 1495, 1698, 1955, 2238, 1961, 1680, 1518, 1340, 1236, 1127, 1071, 1054, 1065, 1085, 1149, 1234, 1363, 1508, 1723, 1928, 2330, 2002, 1738, 1539, 1365, 1258, 1162, 1095, 1083, 1097, 1120, 1185, 1249, 1377, 1545, 1770, 2002, 2347, 2025, 1782, 1584, 1409, 1291, 1205, 1156, 1121, 1124, 1138, 1208, 1297, 1428, 1586, 1808, 2075, 2458, 2106, 1832, 1623, 1481, 1338, 1258, 1205, 1183, 1177, 1201, 1276, 1365, 1476, 1657, 1873, 2071, 2527, 2226, 1958, 1675, 1535, 1415, 1314, 1273, 1239, 1244, 1265, 1321, 1440, 1541, 1745, 1964, 2226, 2774, 2283, 2005, 1829, 1623, 1479, 1409, 1330, 1320, 1338, 1343, 1417, 1517, 1642, 1785, 2058, 2356]
                                       }
                                   }, {
                                       "name":    "1920x1080_CWF_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2172, 1955, 1791, 1689, 1517, 1462, 1352, 1306, 1311, 1280, 1293, 1314, 1394, 1474, 1593, 1714, 1772, 2162, 1876, 1747, 1587, 1480, 1371, 1305, 1261, 1232, 1231, 1245, 1276, 1332, 1422, 1550, 1650, 1805, 1969, 1822, 1682, 1554, 1421, 1320, 1264, 1201, 1188, 1168, 1195, 1230, 1288, 1371, 1488, 1610, 1732, 1954, 1805, 1631, 1499, 1366, 1275, 1221, 1168, 1134, 1126, 1148, 1191, 1246, 1332, 1432, 1555, 1724, 1931, 1772, 1573, 1452, 1346, 1244, 1161, 1117, 1096, 1096, 1115, 1143, 1203, 1295, 1391, 1523, 1645, 1929, 1750, 1596, 1423, 1309, 1212, 1152, 1093, 1069, 1068, 1081, 1121, 1183, 1266, 1364, 1477, 1625, 1886, 1712, 1554, 1408, 1294, 1195, 1120, 1076, 1041, 1042, 1064, 1098, 1172, 1251, 1335, 1478, 1632, 1849, 1708, 1546, 1387, 1281, 1177, 1108, 1047, 1038, 1035, 1062, 1077, 1148, 1229, 1334, 1477, 1605, 1847, 1687, 1502, 1376, 1270, 1184, 1100, 1060, 1030, 1032, 1041, 1080, 1136, 1216, 1326, 1458, 1606, 1857, 1679, 1533, 1365, 1275, 1173, 1106, 1057, 1023, 1022, 1043, 1087, 1137, 1232, 1326, 1465, 1581, 1866, 1673, 1532, 1401, 1276, 1169, 1112, 1058, 1045, 1033, 1064, 1094, 1160, 1229, 1333, 1442, 1597, 1863, 1719, 1544, 1407, 1289, 1201, 1125, 1069, 1051, 1047, 1074, 1105, 1162, 1241, 1361, 1487, 1672, 1877, 1734, 1556, 1426, 1325, 1223, 1160, 1102, 1075, 1075, 1097, 1122, 1184, 1279, 1354, 1489, 1645, 1878, 1724, 1585, 1455, 1347, 1259, 1196, 1134, 1097, 1109, 1118, 1162, 1216, 1281, 1384, 1520, 1649, 1953, 1789, 1638, 1499, 1385, 1290, 1233, 1183, 1145, 1137, 1160, 1195, 1262, 1323, 1429, 1556, 1722, 1993, 1841, 1672, 1558, 1414, 1342, 1263, 1219, 1192, 1177, 1189, 1246, 1298, 1367, 1455, 1611, 1718, 2094, 1860, 1746, 1599, 1477, 1398, 1343, 1276, 1250, 1233, 1250, 1268, 1368, 1433, 1547, 1665, 1744]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2026, 1808, 1705, 1572, 1453, 1381, 1323, 1281, 1256, 1252, 1279, 1286, 1335, 1412, 1527, 1600, 1735, 1935, 1762, 1655, 1532, 1417, 1328, 1275, 1222, 1205, 1200, 1212, 1245, 1306, 1370, 1452, 1562, 1669, 1874, 1748, 1595, 1473, 1374, 1280, 1225, 1180, 1153, 1144, 1162, 1208, 1259, 1343, 1415, 1520, 1658, 1885, 1688, 1565, 1433, 1325, 1241, 1186, 1140, 1117, 1116, 1129, 1174, 1225, 1301, 1394, 1478, 1637, 1808, 1648, 1512, 1396, 1300, 1214, 1147, 1099, 1079, 1085, 1095, 1122, 1191, 1265, 1354, 1461, 1578, 1802, 1642, 1506, 1370, 1284, 1179, 1120, 1087, 1063, 1057, 1075, 1110, 1168, 1239, 1332, 1444, 1555, 1790, 1624, 1492, 1359, 1256, 1177, 1107, 1066, 1046, 1042, 1061, 1090, 1140, 1218, 1325, 1427, 1548, 1748, 1646, 1469, 1352, 1250, 1168, 1093, 1051, 1028, 1027, 1051, 1088, 1142, 1213, 1315, 1415, 1539, 1735, 1618, 1471, 1357, 1240, 1158, 1086, 1041, 1024, 1022, 1043, 1074, 1125, 1211, 1292, 1391, 1542, 1764, 1615, 1463, 1343, 1247, 1169, 1089, 1054, 1032, 1022, 1049, 1082, 1129, 1201, 1300, 1414, 1508, 1782, 1603, 1467, 1339, 1239, 1162, 1098, 1061, 1040, 1035, 1043, 1089, 1138, 1206, 1301, 1400, 1545, 1764, 1613, 1479, 1354, 1262, 1164, 1106, 1062, 1044, 1038, 1063, 1094, 1149, 1217, 1317, 1418, 1542, 1755, 1608, 1484, 1384, 1272, 1187, 1132, 1088, 1060, 1056, 1072, 1118, 1165, 1243, 1335, 1433, 1565, 1817, 1653, 1511, 1410, 1305, 1221, 1162, 1123, 1095, 1090, 1105, 1146, 1194, 1262, 1350, 1474, 1594, 1805, 1695, 1552, 1439, 1340, 1262, 1200, 1150, 1120, 1119, 1150, 1173, 1232, 1291, 1386, 1490, 1636, 1874, 1732, 1594, 1476, 1378, 1296, 1253, 1203, 1183, 1162, 1182, 1213, 1270, 1336, 1427, 1532, 1627, 1926, 1767, 1641, 1521, 1409, 1355, 1284, 1232, 1223, 1234, 1238, 1274, 1315, 1387, 1449, 1570, 1698]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1981, 1841, 1700, 1584, 1451, 1375, 1296, 1279, 1250, 1246, 1270, 1294, 1344, 1413, 1500, 1594, 1727, 1969, 1807, 1665, 1513, 1413, 1331, 1272, 1229, 1195, 1194, 1206, 1242, 1294, 1366, 1458, 1572, 1652, 1888, 1755, 1613, 1466, 1368, 1276, 1214, 1181, 1148, 1152, 1171, 1199, 1249, 1315, 1409, 1537, 1630, 1849, 1704, 1549, 1423, 1312, 1240, 1174, 1138, 1104, 1104, 1127, 1170, 1223, 1303, 1377, 1488, 1614, 1812, 1685, 1518, 1415, 1298, 1221, 1149, 1094, 1083, 1081, 1093, 1140, 1186, 1251, 1350, 1450, 1595, 1818, 1651, 1526, 1378, 1282, 1192, 1134, 1072, 1053, 1053, 1062, 1098, 1168, 1242, 1335, 1441, 1556, 1789, 1636, 1499, 1357, 1263, 1171, 1098, 1060, 1043, 1034, 1052, 1093, 1143, 1216, 1322, 1423, 1552, 1812, 1635, 1479, 1345, 1244, 1160, 1090, 1051, 1023, 1026, 1040, 1075, 1139, 1200, 1305, 1412, 1539, 1761, 1625, 1463, 1364, 1239, 1158, 1094, 1035, 1028, 1029, 1050, 1078, 1132, 1208, 1293, 1403, 1535, 1765, 1610, 1475, 1346, 1241, 1160, 1090, 1046, 1023, 1020, 1044, 1079, 1138, 1201, 1297, 1398, 1515, 1759, 1637, 1464, 1366, 1246, 1163, 1095, 1050, 1033, 1031, 1036, 1082, 1134, 1196, 1308, 1419, 1574, 1754, 1634, 1492, 1374, 1262, 1170, 1113, 1067, 1041, 1037, 1056, 1096, 1145, 1229, 1326, 1440, 1529, 1802, 1661, 1501, 1382, 1269, 1192, 1138, 1091, 1068, 1065, 1070, 1110, 1167, 1243, 1340, 1440, 1551, 1836, 1666, 1537, 1396, 1300, 1223, 1161, 1117, 1086, 1085, 1104, 1142, 1192, 1262, 1355, 1474, 1594, 1825, 1706, 1568, 1436, 1333, 1264, 1193, 1160, 1125, 1123, 1149, 1166, 1218, 1299, 1391, 1495, 1616, 1878, 1741, 1607, 1475, 1378, 1292, 1243, 1192, 1171, 1162, 1184, 1206, 1271, 1321, 1419, 1541, 1651, 1916, 1768, 1650, 1515, 1420, 1356, 1291, 1246, 1210, 1230, 1232, 1256, 1303, 1369, 1458, 1592, 1679]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1933, 1765, 1603, 1504, 1418, 1331, 1291, 1256, 1244, 1212, 1263, 1249, 1280, 1413, 1473, 1582, 1711, 1871, 1709, 1582, 1468, 1380, 1314, 1241, 1207, 1176, 1185, 1206, 1213, 1287, 1346, 1429, 1535, 1648, 1776, 1657, 1537, 1455, 1350, 1249, 1200, 1159, 1136, 1142, 1182, 1184, 1240, 1297, 1410, 1476, 1608, 1744, 1654, 1512, 1398, 1293, 1212, 1170, 1111, 1112, 1100, 1130, 1165, 1209, 1272, 1362, 1433, 1570, 1718, 1650, 1475, 1397, 1273, 1205, 1154, 1090, 1073, 1072, 1093, 1121, 1169, 1268, 1343, 1434, 1542, 1767, 1625, 1474, 1352, 1265, 1183, 1115, 1077, 1051, 1063, 1091, 1113, 1153, 1242, 1318, 1403, 1487, 1754, 1595, 1469, 1344, 1243, 1174, 1108, 1073, 1047, 1046, 1062, 1097, 1166, 1223, 1302, 1393, 1497, 1723, 1589, 1467, 1315, 1222, 1166, 1098, 1065, 1031, 1033, 1057, 1090, 1152, 1208, 1301, 1385, 1522, 1704, 1562, 1437, 1328, 1229, 1156, 1107, 1045, 1044, 1031, 1044, 1082, 1147, 1200, 1275, 1385, 1475, 1748, 1579, 1459, 1356, 1228, 1153, 1092, 1046, 1027, 1025, 1038, 1092, 1136, 1195, 1283, 1403, 1499, 1704, 1580, 1425, 1325, 1223, 1153, 1096, 1053, 1019, 1030, 1049, 1074, 1136, 1195, 1290, 1390, 1502, 1707, 1594, 1441, 1361, 1245, 1180, 1097, 1055, 1042, 1049, 1056, 1097, 1146, 1222, 1293, 1401, 1471, 1760, 1613, 1477, 1367, 1257, 1191, 1122, 1069, 1062, 1071, 1081, 1122, 1150, 1223, 1313, 1426, 1512, 1750, 1612, 1497, 1391, 1283, 1208, 1150, 1117, 1087, 1086, 1086, 1131, 1181, 1254, 1332, 1439, 1547, 1804, 1652, 1517, 1406, 1330, 1235, 1185, 1148, 1132, 1121, 1131, 1178, 1226, 1278, 1372, 1469, 1520, 1818, 1715, 1594, 1427, 1356, 1285, 1217, 1193, 1166, 1166, 1172, 1200, 1272, 1313, 1421, 1514, 1601, 1942, 1723, 1601, 1528, 1407, 1318, 1281, 1224, 1219, 1231, 1221, 1263, 1315, 1372, 1425, 1553, 1649]
                                       }
                                   }, {
                                       "name":    "1920x1080_TL84_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2967, 2533, 2205, 1910, 1740, 1544, 1483, 1413, 1389, 1399, 1401, 1470, 1581, 1730, 1911, 2237, 2522, 2814, 2369, 2072, 1819, 1640, 1509, 1397, 1329, 1294, 1293, 1316, 1392, 1487, 1617, 1849, 2095, 2433, 2598, 2267, 1961, 1760, 1544, 1419, 1314, 1259, 1216, 1216, 1239, 1317, 1399, 1542, 1725, 1989, 2276, 2561, 2181, 1871, 1677, 1486, 1362, 1256, 1190, 1157, 1165, 1189, 1258, 1343, 1465, 1673, 1919, 2279, 2503, 2158, 1802, 1594, 1429, 1306, 1195, 1138, 1099, 1104, 1142, 1197, 1280, 1409, 1595, 1838, 2160, 2418, 2069, 1787, 1565, 1403, 1256, 1166, 1105, 1075, 1073, 1099, 1155, 1249, 1359, 1572, 1797, 2049, 2347, 2054, 1736, 1543, 1367, 1233, 1138, 1074, 1043, 1035, 1078, 1131, 1231, 1343, 1537, 1759, 2050, 2352, 2013, 1740, 1521, 1344, 1216, 1128, 1055, 1034, 1041, 1060, 1120, 1201, 1321, 1512, 1751, 2029, 2317, 2010, 1717, 1506, 1340, 1206, 1110, 1053, 1028, 1029, 1055, 1106, 1190, 1345, 1498, 1729, 2050, 2347, 2003, 1704, 1530, 1349, 1224, 1134, 1060, 1024, 1035, 1051, 1106, 1195, 1326, 1501, 1724, 2033, 2326, 2005, 1716, 1516, 1360, 1224, 1129, 1062, 1039, 1031, 1058, 1120, 1206, 1341, 1509, 1776, 2043, 2338, 2043, 1733, 1554, 1370, 1226, 1138, 1104, 1060, 1067, 1079, 1137, 1239, 1363, 1534, 1760, 2104, 2376, 2082, 1786, 1578, 1404, 1266, 1185, 1124, 1080, 1084, 1104, 1173, 1263, 1380, 1572, 1836, 2131, 2413, 2112, 1832, 1603, 1447, 1324, 1224, 1161, 1121, 1130, 1155, 1211, 1298, 1436, 1615, 1860, 2150, 2598, 2218, 1907, 1672, 1505, 1355, 1281, 1215, 1189, 1172, 1209, 1254, 1357, 1500, 1712, 1946, 2283, 2690, 2292, 2008, 1750, 1578, 1440, 1356, 1274, 1251, 1238, 1276, 1343, 1416, 1574, 1779, 2034, 2321, 2930, 2415, 2112, 1829, 1675, 1525, 1423, 1363, 1318, 1333, 1356, 1410, 1512, 1678, 1910, 2141, 2527]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3023, 2416, 2103, 1899, 1696, 1548, 1454, 1391, 1362, 1386, 1404, 1463, 1572, 1723, 1926, 2155, 2446, 2707, 2310, 2045, 1779, 1627, 1474, 1389, 1322, 1291, 1290, 1325, 1389, 1471, 1632, 1816, 2067, 2365, 2567, 2194, 1942, 1703, 1539, 1407, 1311, 1250, 1222, 1225, 1244, 1316, 1410, 1541, 1736, 1952, 2268, 2455, 2137, 1867, 1636, 1463, 1340, 1236, 1188, 1158, 1165, 1190, 1253, 1355, 1482, 1657, 1852, 2178, 2378, 2076, 1804, 1590, 1426, 1286, 1208, 1139, 1114, 1114, 1138, 1211, 1297, 1420, 1587, 1805, 2064, 2365, 2037, 1738, 1522, 1381, 1253, 1161, 1095, 1082, 1076, 1102, 1167, 1255, 1393, 1563, 1771, 2054, 2294, 1985, 1749, 1508, 1355, 1224, 1137, 1079, 1053, 1055, 1085, 1137, 1232, 1368, 1532, 1751, 2002, 2299, 1986, 1719, 1495, 1338, 1218, 1124, 1066, 1039, 1041, 1080, 1134, 1217, 1346, 1497, 1729, 1983, 2265, 1983, 1709, 1499, 1330, 1213, 1117, 1067, 1024, 1043, 1069, 1123, 1214, 1340, 1500, 1720, 1980, 2288, 1965, 1697, 1508, 1326, 1209, 1125, 1066, 1039, 1041, 1070, 1133, 1214, 1342, 1495, 1711, 2017, 2289, 1973, 1692, 1507, 1348, 1212, 1133, 1076, 1058, 1047, 1074, 1129, 1221, 1359, 1524, 1741, 1987, 2321, 2000, 1732, 1525, 1368, 1232, 1153, 1096, 1065, 1072, 1096, 1170, 1244, 1362, 1541, 1768, 2031, 2331, 2040, 1753, 1555, 1392, 1267, 1185, 1120, 1089, 1096, 1128, 1187, 1278, 1404, 1575, 1795, 2072, 2428, 2066, 1821, 1598, 1442, 1309, 1228, 1161, 1135, 1135, 1166, 1221, 1313, 1452, 1622, 1848, 2136, 2509, 2166, 1885, 1672, 1491, 1376, 1265, 1213, 1194, 1192, 1218, 1274, 1376, 1507, 1684, 1907, 2195, 2627, 2259, 1967, 1726, 1558, 1426, 1332, 1283, 1253, 1257, 1276, 1340, 1436, 1572, 1763, 1997, 2291, 2839, 2399, 2049, 1828, 1655, 1546, 1445, 1356, 1331, 1326, 1364, 1423, 1551, 1658, 1854, 2096, 2378]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2911, 2408, 2124, 1887, 1667, 1566, 1457, 1355, 1347, 1349, 1377, 1470, 1542, 1722, 1881, 2169, 2546, 2777, 2323, 2031, 1777, 1599, 1458, 1353, 1307, 1274, 1277, 1301, 1365, 1463, 1617, 1800, 2039, 2351, 2614, 2213, 1914, 1697, 1501, 1404, 1283, 1225, 1209, 1216, 1235, 1298, 1389, 1537, 1704, 1949, 2213, 2458, 2160, 1859, 1605, 1457, 1319, 1243, 1170, 1149, 1145, 1176, 1238, 1334, 1452, 1635, 1875, 2180, 2413, 2087, 1806, 1571, 1399, 1281, 1175, 1124, 1098, 1097, 1122, 1188, 1289, 1421, 1587, 1785, 2046, 2362, 2026, 1745, 1540, 1374, 1249, 1151, 1085, 1067, 1060, 1101, 1160, 1246, 1364, 1542, 1768, 2052, 2299, 2008, 1715, 1495, 1339, 1220, 1125, 1067, 1044, 1046, 1077, 1136, 1220, 1356, 1529, 1747, 2037, 2289, 1976, 1719, 1486, 1323, 1206, 1112, 1049, 1029, 1032, 1059, 1121, 1216, 1342, 1516, 1731, 1998, 2288, 1964, 1698, 1502, 1328, 1199, 1105, 1050, 1024, 1041, 1066, 1118, 1204, 1342, 1497, 1733, 1982, 2291, 1975, 1673, 1490, 1314, 1213, 1114, 1054, 1034, 1026, 1074, 1123, 1203, 1335, 1510, 1717, 2003, 2283, 1987, 1701, 1512, 1341, 1200, 1126, 1059, 1040, 1039, 1069, 1123, 1216, 1353, 1525, 1727, 1993, 2313, 2014, 1726, 1524, 1355, 1234, 1147, 1076, 1061, 1058, 1090, 1144, 1242, 1357, 1521, 1740, 2039, 2360, 2060, 1757, 1545, 1382, 1261, 1177, 1120, 1081, 1089, 1114, 1168, 1269, 1391, 1556, 1797, 2081, 2381, 2105, 1813, 1583, 1421, 1300, 1215, 1153, 1118, 1123, 1160, 1215, 1313, 1440, 1626, 1834, 2152, 2495, 2178, 1864, 1652, 1498, 1356, 1258, 1205, 1175, 1176, 1204, 1275, 1357, 1489, 1676, 1897, 2210, 2645, 2244, 1958, 1734, 1545, 1426, 1343, 1264, 1247, 1248, 1280, 1334, 1440, 1561, 1747, 1996, 2272, 2815, 2406, 2088, 1821, 1644, 1515, 1397, 1349, 1317, 1320, 1342, 1413, 1506, 1645, 1855, 2101, 2386]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2759, 2309, 2037, 1829, 1632, 1484, 1396, 1330, 1326, 1327, 1344, 1441, 1496, 1677, 1812, 2101, 2289, 2649, 2191, 1922, 1718, 1545, 1435, 1333, 1279, 1255, 1267, 1283, 1337, 1443, 1576, 1752, 1982, 2247, 2431, 2152, 1845, 1638, 1489, 1361, 1275, 1224, 1202, 1196, 1224, 1280, 1361, 1517, 1669, 1887, 2095, 2388, 2018, 1800, 1576, 1406, 1301, 1213, 1154, 1132, 1141, 1176, 1232, 1330, 1446, 1599, 1834, 2091, 2305, 2003, 1725, 1532, 1373, 1273, 1169, 1118, 1082, 1090, 1125, 1177, 1285, 1399, 1569, 1743, 2012, 2209, 1968, 1712, 1478, 1357, 1229, 1132, 1081, 1064, 1051, 1097, 1149, 1239, 1376, 1527, 1723, 1956, 2270, 1968, 1690, 1466, 1324, 1199, 1113, 1053, 1040, 1050, 1067, 1127, 1218, 1348, 1488, 1697, 1976, 2184, 1930, 1671, 1432, 1295, 1204, 1117, 1056, 1034, 1024, 1056, 1116, 1209, 1321, 1486, 1686, 1939, 2209, 1930, 1663, 1470, 1326, 1190, 1107, 1036, 1026, 1034, 1071, 1120, 1203, 1327, 1494, 1640, 1892, 2206, 1914, 1665, 1460, 1312, 1197, 1112, 1044, 1033, 1026, 1062, 1111, 1196, 1317, 1475, 1682, 1919, 2187, 1925, 1671, 1455, 1310, 1200, 1127, 1057, 1027, 1040, 1073, 1129, 1223, 1331, 1496, 1673, 1968, 2250, 1942, 1686, 1496, 1329, 1237, 1136, 1072, 1040, 1055, 1080, 1140, 1216, 1346, 1505, 1699, 1922, 2371, 1968, 1712, 1531, 1380, 1257, 1152, 1113, 1077, 1069, 1113, 1169, 1272, 1380, 1534, 1755, 2000, 2362, 2049, 1773, 1558, 1410, 1308, 1191, 1126, 1110, 1113, 1140, 1196, 1291, 1415, 1569, 1807, 2132, 2392, 2053, 1827, 1632, 1475, 1346, 1248, 1196, 1173, 1169, 1196, 1254, 1342, 1494, 1640, 1858, 2163, 2524, 2159, 1889, 1716, 1527, 1402, 1308, 1272, 1233, 1233, 1255, 1330, 1407, 1529, 1718, 1942, 2180, 2681, 2325, 1976, 1771, 1606, 1486, 1399, 1337, 1273, 1331, 1334, 1399, 1491, 1620, 1860, 2059, 2309]
                                       }
                                   }, {
                                       "name":    "1920x1080_TL84_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2077, 1912, 1760, 1596, 1508, 1376, 1348, 1300, 1283, 1287, 1274, 1310, 1370, 1445, 1526, 1688, 1765, 2024, 1826, 1687, 1549, 1449, 1371, 1294, 1246, 1218, 1212, 1219, 1264, 1313, 1377, 1506, 1614, 1750, 1906, 1778, 1624, 1524, 1386, 1310, 1237, 1200, 1163, 1159, 1167, 1216, 1256, 1336, 1429, 1560, 1670, 1910, 1736, 1572, 1473, 1353, 1275, 1199, 1149, 1122, 1125, 1135, 1177, 1223, 1287, 1405, 1528, 1699, 1891, 1739, 1532, 1416, 1316, 1236, 1153, 1111, 1078, 1078, 1102, 1133, 1179, 1252, 1356, 1481, 1632, 1844, 1682, 1532, 1403, 1303, 1199, 1135, 1089, 1063, 1057, 1070, 1103, 1160, 1218, 1348, 1461, 1563, 1803, 1681, 1498, 1392, 1278, 1185, 1115, 1065, 1038, 1026, 1056, 1087, 1151, 1211, 1327, 1440, 1575, 1814, 1654, 1508, 1377, 1261, 1173, 1109, 1050, 1033, 1036, 1042, 1080, 1127, 1196, 1310, 1439, 1565, 1789, 1654, 1489, 1365, 1259, 1164, 1093, 1049, 1028, 1025, 1039, 1068, 1118, 1219, 1299, 1423, 1583, 1810, 1646, 1476, 1385, 1266, 1180, 1115, 1055, 1023, 1030, 1033, 1067, 1121, 1201, 1300, 1417, 1568, 1787, 1641, 1481, 1367, 1271, 1176, 1106, 1053, 1034, 1022, 1037, 1076, 1127, 1210, 1302, 1454, 1569, 1783, 1661, 1486, 1393, 1273, 1171, 1108, 1088, 1048, 1051, 1051, 1086, 1151, 1222, 1316, 1431, 1605, 1795, 1677, 1518, 1402, 1293, 1198, 1144, 1098, 1059, 1059, 1066, 1110, 1163, 1226, 1336, 1479, 1610, 1799, 1681, 1539, 1408, 1317, 1239, 1168, 1121, 1087, 1091, 1103, 1133, 1182, 1261, 1357, 1481, 1603, 1906, 1740, 1579, 1448, 1351, 1251, 1206, 1158, 1137, 1117, 1138, 1158, 1218, 1299, 1418, 1526, 1675, 1935, 1766, 1635, 1491, 1394, 1308, 1256, 1194, 1177, 1161, 1182, 1220, 1251, 1341, 1449, 1567, 1669, 2051, 1823, 1686, 1528, 1452, 1359, 1294, 1254, 1217, 1226, 1233, 1257, 1310, 1402, 1525, 1616, 1769]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2116, 1823, 1679, 1587, 1470, 1380, 1322, 1280, 1258, 1275, 1277, 1304, 1362, 1440, 1537, 1626, 1712, 1947, 1780, 1665, 1515, 1437, 1339, 1287, 1239, 1215, 1209, 1228, 1262, 1299, 1390, 1479, 1593, 1701, 1884, 1721, 1608, 1475, 1382, 1299, 1234, 1191, 1169, 1167, 1171, 1215, 1266, 1335, 1438, 1531, 1664, 1831, 1701, 1568, 1437, 1332, 1254, 1180, 1147, 1123, 1125, 1136, 1173, 1234, 1302, 1392, 1474, 1624, 1796, 1672, 1533, 1413, 1313, 1217, 1166, 1112, 1092, 1088, 1098, 1146, 1194, 1262, 1349, 1454, 1559, 1804, 1656, 1490, 1364, 1283, 1196, 1130, 1079, 1070, 1060, 1073, 1114, 1166, 1249, 1340, 1440, 1567, 1762, 1625, 1510, 1360, 1266, 1176, 1114, 1070, 1048, 1046, 1063, 1092, 1152, 1234, 1322, 1433, 1538, 1773, 1632, 1489, 1354, 1255, 1175, 1105, 1061, 1038, 1036, 1062, 1094, 1142, 1219, 1297, 1421, 1529, 1749, 1631, 1483, 1359, 1249, 1171, 1100, 1063, 1024, 1039, 1052, 1084, 1140, 1215, 1301, 1415, 1529, 1765, 1615, 1470, 1365, 1244, 1166, 1106, 1061, 1038, 1036, 1052, 1093, 1139, 1215, 1295, 1406, 1556, 1758, 1615, 1460, 1359, 1260, 1164, 1110, 1067, 1053, 1038, 1052, 1085, 1141, 1226, 1315, 1425, 1526, 1770, 1626, 1485, 1367, 1271, 1176, 1123, 1080, 1053, 1056, 1067, 1117, 1155, 1221, 1322, 1438, 1549, 1761, 1643, 1490, 1381, 1282, 1199, 1144, 1094, 1068, 1070, 1089, 1124, 1177, 1247, 1339, 1446, 1565, 1811, 1645, 1530, 1404, 1313, 1225, 1172, 1121, 1101, 1096, 1113, 1143, 1195, 1275, 1363, 1471, 1593, 1841, 1699, 1561, 1448, 1339, 1270, 1191, 1156, 1142, 1136, 1147, 1176, 1236, 1305, 1395, 1496, 1611, 1889, 1741, 1602, 1470, 1376, 1295, 1234, 1203, 1179, 1178, 1182, 1217, 1268, 1339, 1436, 1539, 1648, 1987, 1811, 1636, 1527, 1434, 1378, 1314, 1248, 1229, 1220, 1240, 1268, 1344, 1385, 1480, 1582, 1665]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2038, 1817, 1696, 1577, 1445, 1396, 1325, 1247, 1244, 1241, 1252, 1310, 1336, 1439, 1502, 1637, 1782, 1997, 1790, 1654, 1514, 1412, 1324, 1253, 1225, 1199, 1197, 1205, 1240, 1292, 1377, 1466, 1571, 1691, 1918, 1736, 1585, 1470, 1348, 1296, 1208, 1167, 1156, 1159, 1163, 1198, 1247, 1331, 1411, 1529, 1624, 1833, 1719, 1562, 1410, 1326, 1235, 1187, 1130, 1114, 1106, 1123, 1159, 1215, 1275, 1374, 1493, 1626, 1823, 1681, 1535, 1396, 1288, 1212, 1134, 1098, 1077, 1071, 1083, 1124, 1187, 1262, 1349, 1438, 1545, 1802, 1647, 1496, 1380, 1276, 1193, 1121, 1069, 1055, 1044, 1072, 1108, 1157, 1223, 1322, 1438, 1565, 1766, 1643, 1480, 1348, 1252, 1172, 1102, 1058, 1039, 1037, 1055, 1091, 1140, 1223, 1320, 1430, 1565, 1765, 1624, 1489, 1345, 1241, 1163, 1093, 1044, 1028, 1027, 1041, 1081, 1141, 1215, 1313, 1422, 1541, 1767, 1616, 1473, 1362, 1247, 1158, 1088, 1046, 1024, 1037, 1050, 1079, 1131, 1217, 1299, 1426, 1531, 1767, 1623, 1449, 1349, 1233, 1170, 1095, 1049, 1033, 1021, 1056, 1083, 1129, 1209, 1308, 1411, 1545, 1754, 1626, 1468, 1364, 1253, 1153, 1103, 1050, 1035, 1030, 1047, 1079, 1137, 1220, 1316, 1413, 1531, 1764, 1638, 1480, 1366, 1259, 1178, 1117, 1060, 1049, 1042, 1061, 1092, 1154, 1216, 1304, 1415, 1555, 1783, 1660, 1493, 1373, 1272, 1194, 1136, 1094, 1060, 1064, 1075, 1106, 1168, 1236, 1322, 1448, 1572, 1776, 1676, 1523, 1390, 1294, 1217, 1160, 1114, 1084, 1085, 1107, 1137, 1195, 1265, 1366, 1460, 1605, 1831, 1708, 1544, 1431, 1345, 1252, 1185, 1148, 1124, 1120, 1134, 1177, 1218, 1290, 1388, 1488, 1622, 1902, 1729, 1594, 1477, 1365, 1295, 1244, 1185, 1174, 1170, 1186, 1212, 1272, 1330, 1423, 1538, 1634, 1971, 1816, 1667, 1521, 1425, 1350, 1270, 1241, 1217, 1214, 1220, 1259, 1305, 1374, 1481, 1586, 1670]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1931, 1743, 1626, 1528, 1414, 1323, 1269, 1224, 1225, 1221, 1222, 1284, 1296, 1401, 1446, 1586, 1602, 1905, 1688, 1565, 1463, 1365, 1303, 1235, 1199, 1181, 1188, 1189, 1214, 1275, 1342, 1427, 1527, 1616, 1784, 1688, 1528, 1419, 1337, 1256, 1201, 1166, 1150, 1140, 1153, 1182, 1222, 1314, 1382, 1480, 1537, 1781, 1606, 1512, 1384, 1280, 1218, 1158, 1115, 1098, 1102, 1123, 1153, 1211, 1270, 1343, 1460, 1559, 1741, 1614, 1466, 1361, 1264, 1205, 1128, 1092, 1061, 1065, 1086, 1114, 1183, 1243, 1333, 1404, 1520, 1685, 1600, 1468, 1325, 1260, 1173, 1102, 1065, 1052, 1035, 1068, 1097, 1151, 1233, 1310, 1401, 1492, 1744, 1611, 1459, 1322, 1237, 1152, 1090, 1044, 1035, 1041, 1045, 1083, 1138, 1216, 1284, 1389, 1518, 1684, 1586, 1448, 1296, 1215, 1161, 1098, 1051, 1033, 1019, 1038, 1076, 1134, 1196, 1287, 1385, 1495, 1706, 1588, 1443, 1333, 1246, 1149, 1090, 1032, 1026, 1030, 1054, 1081, 1130, 1203, 1296, 1349, 1461, 1701, 1573, 1443, 1322, 1231, 1154, 1093, 1039, 1032, 1021, 1044, 1071, 1122, 1192, 1278, 1382, 1480, 1680, 1576, 1442, 1312, 1224, 1153, 1104, 1048, 1022, 1031, 1051, 1085, 1143, 1200, 1291, 1369, 1512, 1716, 1579, 1446, 1341, 1234, 1181, 1106, 1056, 1029, 1039, 1052, 1088, 1129, 1206, 1291, 1381, 1466, 1791, 1585, 1455, 1360, 1271, 1190, 1112, 1087, 1056, 1044, 1074, 1106, 1171, 1226, 1304, 1414, 1511, 1761, 1631, 1490, 1368, 1284, 1224, 1137, 1088, 1076, 1075, 1088, 1119, 1175, 1243, 1318, 1438, 1590, 1755, 1610, 1513, 1414, 1324, 1243, 1175, 1140, 1122, 1114, 1126, 1158, 1205, 1294, 1358, 1457, 1587, 1815, 1664, 1538, 1462, 1349, 1273, 1212, 1192, 1160, 1156, 1163, 1208, 1243, 1302, 1399, 1497, 1568, 1877, 1755, 1577, 1480, 1392, 1324, 1272, 1230, 1176, 1225, 1213, 1247, 1292, 1354, 1485, 1554, 1616]
                                       }
                                   }, {
                                       "name":    "1920x1080_HZ_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3526, 2953, 2496, 2187, 1944, 1728, 1611, 1506, 1485, 1464, 1512, 1608, 1746, 1934, 2212, 2574, 3023, 3297, 2801, 2407, 2061, 1821, 1624, 1497, 1411, 1373, 1380, 1419, 1499, 1624, 1824, 2077, 2416, 2799, 3190, 2703, 2287, 1960, 1713, 1526, 1393, 1311, 1280, 1279, 1325, 1404, 1525, 1718, 1949, 2280, 2691, 2969, 2583, 2164, 1851, 1610, 1445, 1321, 1239, 1199, 1208, 1245, 1332, 1454, 1626, 1867, 2163, 2551, 2917, 2466, 2081, 1776, 1553, 1382, 1247, 1171, 1142, 1138, 1177, 1251, 1380, 1556, 1774, 2087, 2485, 2803, 2398, 2028, 1711, 1490, 1325, 1207, 1133, 1086, 1089, 1131, 1212, 1321, 1489, 1717, 2033, 2410, 2795, 2361, 1957, 1663, 1444, 1283, 1169, 1086, 1052, 1055, 1096, 1169, 1293, 1442, 1675, 1971, 2363, 2741, 2316, 1936, 1645, 1425, 1266, 1146, 1067, 1038, 1034, 1076, 1146, 1274, 1434, 1648, 1939, 2323, 2743, 2290, 1908, 1627, 1417, 1253, 1135, 1055, 1029, 1024, 1066, 1139, 1253, 1411, 1641, 1932, 2293, 2731, 2286, 1915, 1638, 1418, 1257, 1142, 1058, 1025, 1029, 1066, 1142, 1262, 1421, 1639, 1943, 2326, 2729, 2315, 1943, 1659, 1431, 1263, 1152, 1076, 1039, 1051, 1084, 1158, 1271, 1434, 1658, 1952, 2337, 2775, 2346, 1959, 1686, 1458, 1299, 1178, 1112, 1069, 1075, 1115, 1187, 1304, 1478, 1696, 1994, 2398, 2821, 2412, 2030, 1735, 1507, 1343, 1235, 1151, 1109, 1121, 1154, 1226, 1351, 1513, 1735, 2065, 2485, 2917, 2469, 2089, 1793, 1563, 1409, 1281, 1207, 1170, 1169, 1204, 1284, 1405, 1572, 1814, 2120, 2482, 3018, 2581, 2195, 1875, 1648, 1481, 1347, 1271, 1231, 1233, 1278, 1354, 1468, 1648, 1899, 2212, 2616, 3159, 2682, 2294, 1975, 1748, 1578, 1441, 1359, 1321, 1323, 1356, 1442, 1567, 1753, 1999, 2325, 2729, 3342, 2832, 2430, 2092, 1857, 1679, 1550, 1465, 1416, 1413, 1469, 1552, 1677, 1885, 2146, 2483, 2880]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2946, 2493, 2184, 1923, 1725, 1579, 1482, 1425, 1386, 1384, 1425, 1482, 1598, 1760, 1958, 2205, 2486, 2812, 2380, 2079, 1831, 1646, 1500, 1403, 1341, 1306, 1319, 1337, 1407, 1507, 1664, 1854, 2102, 2439, 2651, 2279, 1972, 1749, 1562, 1425, 1322, 1263, 1237, 1240, 1264, 1343, 1434, 1574, 1767, 1994, 2306, 2543, 2194, 1908, 1666, 1492, 1362, 1267, 1202, 1169, 1175, 1206, 1270, 1360, 1509, 1696, 1924, 2197, 2467, 2126, 1842, 1609, 1434, 1306, 1206, 1155, 1126, 1118, 1159, 1220, 1314, 1451, 1630, 1868, 2175, 2429, 2087, 1778, 1573, 1398, 1259, 1173, 1110, 1078, 1076, 1110, 1177, 1271, 1414, 1586, 1817, 2097, 2369, 2043, 1754, 1540, 1368, 1239, 1133, 1080, 1049, 1048, 1087, 1149, 1243, 1367, 1557, 1763, 2053, 2326, 2013, 1725, 1515, 1347, 1219, 1125, 1061, 1030, 1028, 1067, 1130, 1222, 1363, 1527, 1744, 2051, 2322, 2001, 1722, 1496, 1325, 1211, 1116, 1050, 1024, 1027, 1061, 1118, 1219, 1340, 1522, 1734, 2018, 2342, 2004, 1713, 1512, 1339, 1209, 1121, 1055, 1024, 1030, 1063, 1120, 1224, 1349, 1523, 1743, 2035, 2325, 2010, 1732, 1520, 1351, 1223, 1131, 1070, 1038, 1037, 1073, 1141, 1233, 1359, 1546, 1747, 2067, 2364, 2049, 1754, 1552, 1371, 1236, 1152, 1089, 1062, 1062, 1101, 1159, 1254, 1382, 1549, 1792, 2071, 2407, 2074, 1801, 1582, 1411, 1283, 1187, 1124, 1102, 1104, 1132, 1196, 1297, 1424, 1604, 1832, 2124, 2467, 2140, 1863, 1634, 1464, 1331, 1240, 1172, 1152, 1152, 1167, 1238, 1346, 1473, 1660, 1893, 2194, 2561, 2214, 1931, 1698, 1519, 1393, 1296, 1229, 1201, 1201, 1233, 1296, 1398, 1538, 1708, 1960, 2263, 2661, 2300, 2009, 1771, 1591, 1460, 1366, 1308, 1273, 1267, 1302, 1366, 1459, 1607, 1779, 2043, 2379, 2884, 2427, 2147, 1848, 1685, 1543, 1440, 1374, 1356, 1348, 1383, 1439, 1541, 1688, 1905, 2148, 2456]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3034, 2475, 2176, 1908, 1720, 1575, 1482, 1414, 1391, 1385, 1413, 1492, 1592, 1757, 1940, 2216, 2594, 2806, 2397, 2078, 1828, 1647, 1499, 1396, 1328, 1314, 1300, 1336, 1411, 1516, 1662, 1863, 2126, 2449, 2693, 2289, 1993, 1742, 1564, 1416, 1332, 1271, 1234, 1244, 1263, 1335, 1444, 1576, 1765, 2031, 2332, 2590, 2225, 1924, 1682, 1506, 1359, 1262, 1198, 1169, 1169, 1210, 1272, 1377, 1513, 1688, 1930, 2261, 2474, 2155, 1861, 1627, 1442, 1314, 1212, 1147, 1110, 1117, 1152, 1224, 1334, 1455, 1647, 1869, 2162, 2439, 2110, 1811, 1584, 1409, 1272, 1167, 1106, 1069, 1082, 1116, 1183, 1283, 1417, 1586, 1830, 2112, 2405, 2074, 1779, 1530, 1371, 1234, 1142, 1083, 1045, 1043, 1085, 1156, 1250, 1388, 1563, 1789, 2082, 2385, 2058, 1741, 1522, 1351, 1222, 1128, 1062, 1031, 1035, 1075, 1128, 1230, 1363, 1539, 1778, 2071, 2348, 2036, 1752, 1520, 1347, 1223, 1120, 1047, 1027, 1033, 1066, 1126, 1220, 1355, 1529, 1766, 2034, 2362, 2026, 1740, 1519, 1347, 1218, 1122, 1055, 1030, 1024, 1067, 1131, 1220, 1360, 1528, 1758, 2048, 2377, 2052, 1750, 1534, 1358, 1236, 1132, 1065, 1039, 1046, 1078, 1141, 1230, 1375, 1553, 1791, 2082, 2441, 2088, 1791, 1555, 1387, 1252, 1163, 1092, 1066, 1062, 1103, 1169, 1263, 1398, 1574, 1804, 2121, 2420, 2102, 1833, 1609, 1415, 1295, 1199, 1130, 1097, 1100, 1129, 1202, 1303, 1430, 1624, 1845, 2157, 2520, 2169, 1890, 1652, 1465, 1335, 1236, 1179, 1153, 1148, 1184, 1240, 1343, 1478, 1659, 1908, 2191, 2610, 2242, 1939, 1714, 1534, 1397, 1306, 1232, 1200, 1211, 1231, 1295, 1400, 1553, 1728, 1986, 2297, 2697, 2339, 2034, 1780, 1606, 1461, 1361, 1297, 1269, 1272, 1300, 1367, 1476, 1609, 1805, 2068, 2392, 2897, 2467, 2146, 1892, 1710, 1555, 1440, 1380, 1353, 1342, 1385, 1452, 1568, 1689, 1906, 2169, 2508]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2863, 2415, 2079, 1894, 1693, 1555, 1480, 1425, 1390, 1417, 1440, 1535, 1618, 1758, 1948, 2169, 2458, 2649, 2266, 2030, 1798, 1632, 1504, 1423, 1338, 1336, 1334, 1362, 1415, 1543, 1690, 1836, 2097, 2373, 2550, 2224, 1936, 1717, 1540, 1447, 1347, 1294, 1254, 1262, 1292, 1370, 1474, 1586, 1765, 2001, 2198, 2446, 2144, 1853, 1660, 1499, 1388, 1280, 1209, 1203, 1211, 1229, 1303, 1409, 1550, 1699, 1905, 2234, 2385, 2061, 1815, 1607, 1467, 1317, 1231, 1178, 1131, 1145, 1184, 1245, 1362, 1487, 1638, 1879, 2088, 2310, 2013, 1771, 1540, 1425, 1296, 1197, 1121, 1072, 1110, 1133, 1212, 1319, 1423, 1624, 1815, 2079, 2321, 2009, 1742, 1538, 1386, 1270, 1156, 1096, 1059, 1067, 1104, 1190, 1287, 1400, 1578, 1765, 1976, 2272, 1964, 1729, 1518, 1358, 1250, 1145, 1079, 1038, 1043, 1091, 1168, 1262, 1372, 1555, 1755, 2009, 2293, 1984, 1723, 1511, 1362, 1237, 1139, 1066, 1024, 1044, 1077, 1159, 1270, 1388, 1550, 1765, 2017, 2245, 1964, 1705, 1525, 1362, 1252, 1144, 1062, 1028, 1040, 1086, 1154, 1258, 1394, 1547, 1771, 1980, 2316, 1968, 1752, 1550, 1378, 1249, 1163, 1084, 1066, 1065, 1092, 1172, 1280, 1409, 1552, 1742, 2022, 2327, 2005, 1748, 1578, 1394, 1282, 1199, 1120, 1075, 1089, 1136, 1199, 1307, 1419, 1573, 1804, 2052, 2355, 2052, 1794, 1599, 1425, 1317, 1234, 1168, 1121, 1129, 1176, 1240, 1314, 1469, 1626, 1846, 2093, 2409, 2079, 1815, 1675, 1494, 1358, 1267, 1212, 1176, 1188, 1218, 1291, 1380, 1516, 1687, 1879, 2188, 2536, 2169, 1928, 1717, 1550, 1413, 1328, 1268, 1226, 1239, 1280, 1336, 1423, 1565, 1720, 1960, 2229, 2577, 2261, 1996, 1781, 1632, 1499, 1390, 1330, 1321, 1307, 1332, 1411, 1501, 1666, 1791, 2030, 2310, 2748, 2409, 2070, 1868, 1729, 1543, 1465, 1400, 1392, 1390, 1413, 1492, 1581, 1739, 1913, 2130, 2523]
                                       }
                                   }, {
                                       "name":    "1920x1080_HZ_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2468, 2229, 1992, 1827, 1685, 1540, 1465, 1386, 1372, 1347, 1375, 1433, 1513, 1616, 1766, 1943, 2116, 2371, 2159, 1960, 1756, 1608, 1475, 1387, 1323, 1292, 1294, 1315, 1362, 1434, 1554, 1691, 1862, 2013, 2341, 2120, 1894, 1698, 1538, 1409, 1312, 1249, 1224, 1219, 1248, 1296, 1369, 1488, 1614, 1788, 1975, 2214, 2056, 1818, 1626, 1466, 1352, 1261, 1197, 1163, 1167, 1188, 1247, 1324, 1428, 1568, 1722, 1902, 2203, 1987, 1769, 1578, 1430, 1308, 1204, 1144, 1120, 1111, 1136, 1184, 1271, 1382, 1508, 1681, 1877, 2138, 1950, 1739, 1534, 1384, 1265, 1175, 1116, 1074, 1073, 1101, 1157, 1227, 1335, 1472, 1653, 1838, 2147, 1932, 1689, 1500, 1350, 1233, 1145, 1076, 1047, 1046, 1074, 1123, 1209, 1301, 1446, 1613, 1815, 2114, 1903, 1677, 1489, 1337, 1221, 1127, 1062, 1037, 1029, 1058, 1105, 1195, 1298, 1428, 1593, 1792, 2118, 1884, 1655, 1475, 1331, 1210, 1117, 1051, 1029, 1020, 1050, 1100, 1177, 1279, 1424, 1590, 1771, 2106, 1878, 1659, 1483, 1330, 1212, 1123, 1053, 1024, 1024, 1048, 1101, 1184, 1287, 1420, 1597, 1794, 2096, 1895, 1677, 1496, 1338, 1213, 1129, 1067, 1034, 1042, 1062, 1113, 1188, 1293, 1431, 1598, 1795, 2117, 1908, 1680, 1511, 1354, 1240, 1147, 1095, 1057, 1059, 1086, 1133, 1211, 1325, 1454, 1621, 1829, 2131, 1943, 1725, 1541, 1388, 1271, 1192, 1124, 1087, 1095, 1114, 1160, 1244, 1344, 1475, 1664, 1877, 2175, 1965, 1755, 1575, 1423, 1319, 1223, 1166, 1134, 1129, 1149, 1202, 1279, 1381, 1524, 1688, 1851, 2215, 2025, 1818, 1624, 1480, 1367, 1268, 1211, 1177, 1175, 1203, 1250, 1318, 1427, 1573, 1735, 1920, 2272, 2067, 1868, 1682, 1544, 1433, 1335, 1274, 1243, 1240, 1256, 1310, 1384, 1493, 1628, 1792, 1963, 2339, 2137, 1940, 1748, 1609, 1496, 1409, 1348, 1308, 1300, 1336, 1383, 1453, 1575, 1713, 1874, 2016]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2062, 1881, 1743, 1607, 1495, 1407, 1347, 1311, 1280, 1273, 1296, 1321, 1385, 1471, 1563, 1664, 1740, 2022, 1834, 1693, 1560, 1454, 1362, 1300, 1257, 1229, 1237, 1239, 1278, 1331, 1417, 1510, 1620, 1754, 1945, 1788, 1633, 1515, 1403, 1316, 1245, 1203, 1183, 1181, 1190, 1240, 1288, 1363, 1463, 1564, 1692, 1896, 1747, 1603, 1463, 1358, 1275, 1209, 1161, 1133, 1135, 1151, 1189, 1238, 1325, 1425, 1532, 1638, 1863, 1713, 1566, 1429, 1320, 1236, 1164, 1128, 1104, 1092, 1119, 1155, 1210, 1289, 1385, 1505, 1643, 1853, 1697, 1525, 1410, 1299, 1202, 1142, 1093, 1066, 1060, 1081, 1124, 1181, 1267, 1360, 1477, 1600, 1820, 1672, 1514, 1389, 1279, 1190, 1110, 1071, 1044, 1039, 1065, 1104, 1162, 1233, 1344, 1443, 1577, 1794, 1654, 1495, 1372, 1264, 1175, 1106, 1056, 1029, 1023, 1049, 1090, 1146, 1234, 1323, 1433, 1582, 1793, 1646, 1494, 1356, 1245, 1169, 1099, 1046, 1024, 1023, 1045, 1079, 1145, 1215, 1320, 1427, 1559, 1806, 1647, 1484, 1369, 1256, 1166, 1102, 1050, 1023, 1025, 1045, 1080, 1148, 1221, 1319, 1432, 1570, 1786, 1645, 1495, 1371, 1263, 1175, 1108, 1061, 1033, 1028, 1051, 1096, 1152, 1226, 1334, 1430, 1588, 1803, 1666, 1504, 1391, 1273, 1180, 1122, 1073, 1050, 1046, 1072, 1107, 1165, 1239, 1328, 1457, 1580, 1818, 1671, 1531, 1405, 1299, 1214, 1146, 1098, 1080, 1078, 1093, 1132, 1194, 1265, 1363, 1476, 1604, 1840, 1704, 1565, 1435, 1333, 1246, 1184, 1132, 1117, 1113, 1114, 1159, 1225, 1294, 1395, 1507, 1636, 1879, 1737, 1599, 1471, 1364, 1286, 1220, 1171, 1149, 1144, 1161, 1196, 1255, 1332, 1415, 1537, 1661, 1914, 1772, 1636, 1509, 1405, 1326, 1266, 1226, 1198, 1188, 1206, 1241, 1289, 1369, 1449, 1574, 1711, 2019, 1832, 1714, 1544, 1460, 1375, 1309, 1264, 1253, 1240, 1257, 1283, 1335, 1410, 1521, 1621, 1719]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2124, 1868, 1737, 1594, 1491, 1404, 1347, 1301, 1285, 1274, 1285, 1330, 1380, 1468, 1549, 1672, 1816, 2018, 1847, 1692, 1557, 1455, 1362, 1293, 1245, 1237, 1219, 1238, 1282, 1339, 1416, 1517, 1638, 1761, 1976, 1795, 1651, 1509, 1404, 1307, 1254, 1211, 1180, 1185, 1189, 1232, 1297, 1365, 1462, 1593, 1711, 1931, 1771, 1616, 1477, 1371, 1272, 1205, 1157, 1133, 1129, 1155, 1191, 1254, 1329, 1418, 1536, 1686, 1869, 1736, 1582, 1445, 1328, 1244, 1170, 1120, 1088, 1091, 1112, 1159, 1228, 1293, 1400, 1506, 1633, 1860, 1716, 1553, 1420, 1309, 1214, 1136, 1090, 1057, 1066, 1087, 1130, 1192, 1270, 1360, 1488, 1611, 1847, 1697, 1535, 1380, 1281, 1186, 1119, 1073, 1040, 1034, 1063, 1111, 1168, 1252, 1349, 1464, 1599, 1839, 1691, 1508, 1378, 1267, 1178, 1109, 1057, 1030, 1030, 1057, 1088, 1154, 1234, 1333, 1461, 1597, 1813, 1675, 1520, 1378, 1265, 1181, 1103, 1043, 1027, 1029, 1050, 1087, 1146, 1228, 1326, 1453, 1571, 1822, 1665, 1508, 1375, 1264, 1175, 1103, 1050, 1029, 1019, 1049, 1091, 1145, 1231, 1324, 1444, 1580, 1826, 1679, 1510, 1384, 1269, 1187, 1109, 1056, 1034, 1037, 1056, 1096, 1150, 1240, 1340, 1466, 1599, 1862, 1698, 1536, 1394, 1288, 1195, 1132, 1076, 1054, 1046, 1074, 1116, 1173, 1253, 1350, 1467, 1618, 1828, 1693, 1558, 1429, 1303, 1226, 1157, 1104, 1076, 1074, 1090, 1138, 1200, 1270, 1380, 1486, 1629, 1879, 1727, 1588, 1451, 1334, 1250, 1180, 1139, 1118, 1109, 1130, 1161, 1223, 1298, 1394, 1519, 1634, 1915, 1759, 1606, 1485, 1377, 1290, 1230, 1174, 1148, 1154, 1159, 1196, 1257, 1345, 1431, 1558, 1685, 1940, 1803, 1656, 1516, 1419, 1327, 1261, 1216, 1194, 1192, 1204, 1242, 1304, 1371, 1470, 1594, 1720, 2028, 1862, 1713, 1581, 1482, 1386, 1309, 1270, 1250, 1235, 1259, 1294, 1359, 1411, 1522, 1637, 1756]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2004, 1823, 1660, 1582, 1467, 1386, 1346, 1311, 1284, 1304, 1309, 1368, 1402, 1469, 1555, 1637, 1721, 1905, 1746, 1653, 1532, 1442, 1366, 1318, 1254, 1257, 1251, 1262, 1285, 1363, 1440, 1495, 1616, 1707, 1871, 1744, 1603, 1487, 1383, 1336, 1268, 1233, 1199, 1202, 1217, 1265, 1324, 1374, 1462, 1570, 1613, 1824, 1707, 1557, 1458, 1365, 1299, 1222, 1168, 1166, 1170, 1173, 1220, 1283, 1361, 1427, 1516, 1666, 1801, 1660, 1543, 1428, 1351, 1247, 1188, 1151, 1109, 1118, 1143, 1178, 1254, 1321, 1392, 1514, 1577, 1762, 1637, 1519, 1380, 1324, 1237, 1165, 1104, 1060, 1093, 1103, 1157, 1225, 1275, 1393, 1476, 1586, 1783, 1644, 1503, 1387, 1295, 1220, 1133, 1086, 1054, 1058, 1082, 1143, 1203, 1263, 1362, 1445, 1518, 1752, 1614, 1498, 1374, 1274, 1205, 1126, 1073, 1037, 1038, 1073, 1126, 1184, 1242, 1347, 1442, 1549, 1771, 1632, 1495, 1370, 1279, 1194, 1121, 1062, 1024, 1040, 1060, 1119, 1193, 1258, 1345, 1452, 1558, 1731, 1614, 1477, 1381, 1278, 1207, 1125, 1057, 1027, 1035, 1068, 1113, 1180, 1262, 1340, 1455, 1527, 1779, 1611, 1512, 1398, 1288, 1200, 1139, 1074, 1061, 1056, 1070, 1126, 1196, 1271, 1339, 1426, 1553, 1775, 1630, 1499, 1414, 1295, 1224, 1167, 1103, 1063, 1073, 1106, 1145, 1214, 1272, 1349, 1467, 1565, 1779, 1653, 1525, 1421, 1312, 1247, 1191, 1141, 1099, 1103, 1135, 1174, 1210, 1305, 1382, 1487, 1581, 1796, 1655, 1525, 1471, 1360, 1271, 1209, 1171, 1140, 1147, 1163, 1208, 1256, 1332, 1417, 1496, 1632, 1861, 1701, 1597, 1487, 1392, 1304, 1250, 1208, 1173, 1180, 1205, 1233, 1278, 1355, 1425, 1537, 1636, 1853, 1742, 1625, 1517, 1442, 1362, 1288, 1247, 1243, 1225, 1234, 1282, 1326, 1419, 1458, 1564, 1661, 1924, 1818, 1652, 1561, 1498, 1375, 1332, 1288, 1286, 1279, 1285, 1330, 1370, 1453, 1527, 1608, 1766]
                                       }
                                   }, {
                                       "name":    "2688x1520_A_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3005, 2199, 1823, 1616, 1466, 1375, 1314, 1275, 1251, 1278, 1311, 1365, 1484, 1625, 1829, 2223, 3051, 2658, 2007, 1709, 1518, 1388, 1297, 1225, 1194, 1184, 1201, 1230, 1309, 1391, 1526, 1728, 2041, 2682, 2411, 1869, 1608, 1431, 1311, 1223, 1161, 1128, 1114, 1133, 1170, 1228, 1323, 1444, 1629, 1905, 2441, 2240, 1775, 1549, 1375, 1256, 1177, 1120, 1081, 1070, 1087, 1126, 1184, 1278, 1391, 1561, 1812, 2283, 2167, 1733, 1518, 1362, 1248, 1161, 1097, 1058, 1044, 1066, 1105, 1159, 1248, 1378, 1526, 1769, 2167, 2121, 1718, 1510, 1359, 1241, 1152, 1087, 1045, 1035, 1053, 1097, 1166, 1246, 1362, 1522, 1754, 2143, 2091, 1738, 1526, 1356, 1241, 1159, 1091, 1045, 1028, 1042, 1089, 1161, 1259, 1375, 1533, 1769, 2143, 2106, 1738, 1522, 1368, 1246, 1159, 1091, 1045, 1028, 1047, 1095, 1166, 1262, 1381, 1541, 1785, 2151, 2084, 1743, 1522, 1372, 1246, 1154, 1089, 1045, 1024, 1045, 1099, 1166, 1264, 1378, 1537, 1769, 2151, 2113, 1733, 1514, 1365, 1248, 1159, 1089, 1038, 1024, 1047, 1087, 1166, 1267, 1384, 1537, 1775, 2128, 2113, 1723, 1514, 1362, 1243, 1152, 1085, 1045, 1028, 1042, 1087, 1161, 1256, 1372, 1537, 1775, 2128, 2136, 1738, 1514, 1365, 1241, 1154, 1089, 1049, 1036, 1053, 1097, 1161, 1251, 1375, 1533, 1780, 2159, 2167, 1743, 1529, 1365, 1251, 1157, 1099, 1064, 1051, 1066, 1109, 1170, 1264, 1381, 1541, 1796, 2207, 2257, 1796, 1561, 1391, 1270, 1194, 1126, 1095, 1078, 1089, 1137, 1198, 1292, 1407, 1578, 1834, 2300, 2431, 1886, 1629, 1448, 1326, 1241, 1177, 1141, 1128, 1137, 1180, 1251, 1341, 1462, 1643, 1935, 2492, 2694, 2062, 1749, 1537, 1404, 1317, 1251, 1213, 1201, 1213, 1254, 1320, 1424, 1557, 1754, 2091, 2756, 3051, 2265, 1875, 1657, 1506, 1394, 1329, 1297, 1292, 1297, 1338, 1397, 1506, 1661, 1898, 2300, 3131]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2821, 2073, 1744, 1545, 1421, 1334, 1277, 1246, 1236, 1250, 1290, 1360, 1432, 1571, 1761, 2102, 2885, 2521, 1892, 1625, 1454, 1338, 1265, 1210, 1178, 1162, 1176, 1220, 1271, 1355, 1471, 1657, 1941, 2521, 2265, 1769, 1530, 1375, 1275, 1195, 1141, 1119, 1104, 1121, 1153, 1206, 1286, 1400, 1565, 1820, 2306, 2108, 1682, 1473, 1327, 1232, 1153, 1098, 1070, 1066, 1075, 1113, 1162, 1248, 1350, 1506, 1736, 2150, 2018, 1653, 1454, 1311, 1212, 1138, 1089, 1045, 1035, 1058, 1090, 1151, 1234, 1336, 1488, 1690, 2056, 1992, 1642, 1437, 1313, 1210, 1139, 1079, 1039, 1028, 1042, 1087, 1146, 1236, 1334, 1473, 1686, 2034, 1971, 1639, 1459, 1320, 1220, 1136, 1079, 1042, 1025, 1048, 1092, 1155, 1234, 1345, 1488, 1694, 2034, 1976, 1657, 1462, 1329, 1222, 1143, 1082, 1047, 1024, 1045, 1095, 1155, 1244, 1353, 1497, 1705, 2034, 1992, 1657, 1456, 1327, 1228, 1151, 1084, 1042, 1024, 1039, 1095, 1158, 1246, 1355, 1497, 1705, 2045, 1981, 1653, 1459, 1320, 1224, 1138, 1079, 1039, 1021, 1042, 1090, 1153, 1238, 1353, 1500, 1701, 2029, 1997, 1639, 1454, 1320, 1216, 1141, 1078, 1042, 1027, 1044, 1090, 1155, 1234, 1343, 1488, 1698, 2040, 2013, 1646, 1445, 1315, 1208, 1141, 1084, 1045, 1030, 1052, 1089, 1150, 1230, 1338, 1488, 1698, 2040, 2029, 1657, 1454, 1317, 1216, 1144, 1093, 1058, 1047, 1060, 1097, 1151, 1240, 1343, 1491, 1717, 2090, 2125, 1694, 1485, 1343, 1236, 1158, 1114, 1081, 1064, 1082, 1118, 1175, 1254, 1362, 1524, 1744, 2168, 2306, 1781, 1549, 1385, 1280, 1210, 1157, 1127, 1119, 1129, 1166, 1222, 1306, 1418, 1581, 1842, 2342, 2538, 1946, 1657, 1482, 1362, 1280, 1228, 1195, 1176, 1197, 1236, 1295, 1377, 1509, 1686, 1986, 2616, 2896, 2137, 1785, 1591, 1440, 1350, 1308, 1267, 1260, 1271, 1315, 1372, 1468, 1601, 1802, 2180, 2964]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2901, 2084, 1738, 1573, 1408, 1338, 1282, 1245, 1238, 1249, 1293, 1348, 1448, 1579, 1778, 2125, 2912, 2534, 1898, 1623, 1461, 1336, 1267, 1211, 1181, 1166, 1177, 1215, 1278, 1367, 1478, 1669, 1941, 2551, 2270, 1762, 1541, 1385, 1269, 1196, 1145, 1114, 1109, 1117, 1154, 1207, 1293, 1408, 1576, 1812, 2319, 2102, 1688, 1478, 1329, 1221, 1156, 1101, 1073, 1064, 1076, 1107, 1170, 1253, 1353, 1514, 1726, 2173, 2024, 1655, 1456, 1313, 1211, 1145, 1084, 1051, 1037, 1052, 1096, 1154, 1232, 1336, 1490, 1699, 2084, 1992, 1644, 1453, 1315, 1213, 1134, 1081, 1044, 1027, 1042, 1085, 1151, 1228, 1336, 1481, 1695, 2040, 1987, 1651, 1461, 1324, 1219, 1145, 1082, 1042, 1028, 1045, 1090, 1156, 1242, 1348, 1493, 1703, 2040, 1987, 1662, 1473, 1334, 1226, 1145, 1084, 1044, 1025, 1049, 1093, 1158, 1247, 1360, 1499, 1714, 2045, 1992, 1673, 1470, 1336, 1226, 1152, 1088, 1039, 1024, 1045, 1090, 1165, 1249, 1355, 1505, 1710, 2029, 1982, 1669, 1464, 1327, 1226, 1139, 1082, 1038, 1027, 1046, 1095, 1158, 1242, 1350, 1496, 1707, 2024, 1987, 1644, 1459, 1320, 1219, 1142, 1076, 1038, 1020, 1046, 1090, 1151, 1240, 1353, 1496, 1703, 2040, 2008, 1651, 1450, 1315, 1215, 1140, 1078, 1048, 1030, 1052, 1090, 1147, 1232, 1345, 1487, 1707, 2051, 2045, 1655, 1464, 1318, 1223, 1145, 1095, 1057, 1045, 1058, 1101, 1158, 1238, 1348, 1505, 1714, 2084, 2119, 1699, 1493, 1343, 1238, 1163, 1114, 1079, 1068, 1084, 1117, 1170, 1251, 1362, 1523, 1746, 2167, 2284, 1787, 1560, 1395, 1291, 1209, 1156, 1129, 1110, 1125, 1161, 1221, 1304, 1431, 1586, 1829, 2362, 2518, 1936, 1662, 1484, 1360, 1276, 1225, 1192, 1181, 1190, 1232, 1291, 1372, 1499, 1684, 1982, 2649, 2890, 2131, 1778, 1583, 1450, 1355, 1306, 1265, 1255, 1269, 1309, 1367, 1467, 1606, 1821, 2180, 2980]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2658, 1958, 1691, 1519, 1378, 1305, 1254, 1207, 1200, 1227, 1240, 1313, 1395, 1529, 1704, 2029, 2722, 2325, 1800, 1583, 1422, 1305, 1233, 1181, 1145, 1151, 1163, 1194, 1240, 1337, 1459, 1606, 1860, 2375, 2067, 1691, 1488, 1345, 1254, 1175, 1127, 1105, 1094, 1100, 1139, 1194, 1268, 1378, 1540, 1744, 2232, 1976, 1629, 1450, 1313, 1207, 1139, 1089, 1053, 1053, 1063, 1100, 1151, 1240, 1337, 1478, 1666, 2086, 1892, 1595, 1422, 1298, 1200, 1133, 1084, 1043, 1033, 1053, 1094, 1151, 1213, 1337, 1478, 1654, 2011, 1924, 1595, 1431, 1290, 1200, 1127, 1078, 1043, 1024, 1043, 1089, 1145, 1213, 1345, 1459, 1641, 1976, 1876, 1606, 1450, 1313, 1220, 1133, 1073, 1033, 1029, 1048, 1094, 1163, 1233, 1337, 1478, 1641, 1958, 1908, 1606, 1459, 1321, 1213, 1139, 1089, 1038, 1019, 1048, 1100, 1169, 1254, 1361, 1488, 1691, 2011, 1908, 1618, 1459, 1321, 1220, 1139, 1089, 1043, 1024, 1048, 1094, 1169, 1254, 1337, 1488, 1691, 1993, 1860, 1629, 1450, 1313, 1207, 1139, 1089, 1038, 1024, 1043, 1094, 1157, 1254, 1345, 1478, 1666, 1993, 1892, 1618, 1431, 1298, 1200, 1139, 1078, 1038, 1019, 1033, 1094, 1151, 1240, 1337, 1469, 1666, 1993, 1892, 1606, 1431, 1305, 1207, 1122, 1078, 1043, 1033, 1053, 1089, 1157, 1233, 1337, 1459, 1654, 2011, 1941, 1606, 1431, 1305, 1207, 1139, 1084, 1043, 1043, 1058, 1084, 1163, 1227, 1337, 1459, 1666, 2029, 2011, 1641, 1459, 1313, 1227, 1145, 1105, 1068, 1058, 1073, 1111, 1169, 1240, 1345, 1488, 1691, 2106, 2189, 1704, 1519, 1353, 1247, 1181, 1139, 1105, 1094, 1105, 1151, 1213, 1276, 1387, 1550, 1772, 2255, 2350, 1830, 1606, 1450, 1321, 1247, 1194, 1163, 1157, 1169, 1200, 1268, 1353, 1488, 1618, 1908, 2480, 2626, 2029, 1704, 1540, 1422, 1321, 1283, 1254, 1247, 1254, 1298, 1353, 1413, 1583, 1772, 2106, 2756]
                                       }
                                   }, {
                                       "name":    "2688x1520_A_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2104, 1642, 1428, 1317, 1232, 1183, 1151, 1128, 1110, 1130, 1148, 1175, 1247, 1324, 1433, 1660, 2136, 1934, 1546, 1379, 1273, 1200, 1149, 1104, 1086, 1081, 1093, 1108, 1159, 1203, 1280, 1395, 1573, 1951, 1806, 1479, 1331, 1230, 1163, 1110, 1072, 1052, 1042, 1056, 1080, 1115, 1173, 1242, 1350, 1507, 1828, 1717, 1435, 1311, 1207, 1137, 1091, 1055, 1029, 1021, 1035, 1061, 1097, 1157, 1222, 1321, 1466, 1749, 1692, 1427, 1307, 1217, 1150, 1094, 1051, 1024, 1013, 1032, 1059, 1092, 1150, 1231, 1313, 1456, 1692, 1679, 1434, 1317, 1230, 1157, 1100, 1055, 1025, 1018, 1032, 1065, 1113, 1162, 1233, 1328, 1463, 1697, 1672, 1465, 1344, 1239, 1168, 1117, 1069, 1034, 1020, 1031, 1067, 1119, 1186, 1256, 1351, 1491, 1714, 1694, 1473, 1348, 1258, 1180, 1123, 1075, 1040, 1026, 1042, 1079, 1130, 1195, 1269, 1365, 1513, 1731, 1680, 1480, 1350, 1263, 1182, 1121, 1075, 1042, 1024, 1042, 1085, 1132, 1199, 1269, 1364, 1502, 1734, 1700, 1469, 1341, 1255, 1182, 1123, 1073, 1033, 1022, 1042, 1071, 1130, 1200, 1272, 1362, 1504, 1712, 1690, 1452, 1333, 1245, 1171, 1110, 1063, 1034, 1020, 1031, 1065, 1119, 1183, 1253, 1354, 1495, 1702, 1691, 1451, 1321, 1236, 1157, 1102, 1057, 1028, 1019, 1032, 1065, 1109, 1167, 1245, 1338, 1485, 1709, 1692, 1435, 1317, 1220, 1152, 1090, 1053, 1030, 1020, 1032, 1063, 1103, 1164, 1234, 1327, 1478, 1723, 1729, 1452, 1321, 1222, 1149, 1106, 1061, 1042, 1029, 1037, 1071, 1111, 1169, 1236, 1335, 1484, 1763, 1820, 1493, 1350, 1245, 1176, 1126, 1087, 1064, 1055, 1060, 1089, 1136, 1189, 1258, 1361, 1531, 1866, 1960, 1589, 1412, 1290, 1214, 1167, 1127, 1104, 1096, 1104, 1129, 1169, 1232, 1306, 1416, 1611, 2005, 2136, 1691, 1469, 1349, 1266, 1200, 1164, 1147, 1146, 1147, 1171, 1203, 1266, 1353, 1487, 1717, 2192]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1975, 1548, 1367, 1259, 1194, 1148, 1118, 1102, 1097, 1106, 1130, 1171, 1203, 1280, 1379, 1570, 2020, 1834, 1458, 1312, 1219, 1158, 1120, 1090, 1072, 1061, 1070, 1099, 1126, 1172, 1234, 1338, 1496, 1834, 1696, 1400, 1267, 1182, 1131, 1085, 1053, 1043, 1033, 1045, 1064, 1095, 1140, 1204, 1296, 1440, 1727, 1615, 1361, 1247, 1165, 1115, 1069, 1035, 1018, 1018, 1023, 1048, 1077, 1130, 1186, 1274, 1404, 1647, 1575, 1361, 1251, 1171, 1116, 1072, 1043, 1011, 1005, 1024, 1045, 1085, 1136, 1194, 1281, 1391, 1605, 1577, 1371, 1254, 1188, 1129, 1088, 1048, 1019, 1011, 1022, 1055, 1094, 1153, 1207, 1285, 1407, 1611, 1576, 1381, 1285, 1206, 1149, 1095, 1057, 1031, 1018, 1037, 1070, 1113, 1162, 1229, 1310, 1427, 1627, 1590, 1404, 1295, 1221, 1157, 1107, 1066, 1041, 1022, 1040, 1079, 1119, 1178, 1243, 1326, 1445, 1637, 1605, 1407, 1292, 1221, 1165, 1118, 1070, 1039, 1024, 1036, 1081, 1125, 1182, 1248, 1328, 1448, 1649, 1594, 1401, 1293, 1213, 1159, 1102, 1063, 1034, 1019, 1037, 1074, 1118, 1172, 1243, 1328, 1442, 1632, 1597, 1381, 1280, 1206, 1145, 1100, 1056, 1031, 1019, 1033, 1068, 1113, 1162, 1227, 1310, 1430, 1631, 1594, 1374, 1261, 1191, 1127, 1089, 1052, 1025, 1013, 1032, 1057, 1098, 1147, 1212, 1298, 1417, 1615, 1584, 1364, 1251, 1177, 1120, 1079, 1048, 1024, 1016, 1026, 1051, 1085, 1142, 1200, 1283, 1413, 1632, 1629, 1370, 1256, 1180, 1119, 1074, 1050, 1029, 1016, 1030, 1053, 1089, 1135, 1197, 1289, 1411, 1662, 1727, 1409, 1283, 1191, 1135, 1099, 1068, 1051, 1047, 1053, 1076, 1109, 1158, 1220, 1309, 1457, 1754, 1847, 1499, 1338, 1243, 1178, 1133, 1106, 1087, 1074, 1089, 1113, 1147, 1191, 1265, 1361, 1531, 1904, 2027, 1596, 1399, 1296, 1210, 1162, 1145, 1120, 1119, 1124, 1151, 1181, 1234, 1304, 1412, 1628, 2075]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2030, 1556, 1362, 1281, 1183, 1152, 1123, 1101, 1099, 1104, 1132, 1160, 1217, 1287, 1393, 1587, 2038, 1844, 1462, 1310, 1226, 1156, 1122, 1091, 1074, 1065, 1071, 1094, 1132, 1183, 1240, 1348, 1496, 1857, 1700, 1394, 1276, 1191, 1126, 1085, 1057, 1038, 1037, 1041, 1065, 1096, 1147, 1211, 1305, 1434, 1736, 1611, 1365, 1251, 1167, 1105, 1071, 1037, 1021, 1016, 1024, 1043, 1084, 1134, 1188, 1281, 1396, 1666, 1580, 1362, 1253, 1173, 1115, 1080, 1038, 1017, 1006, 1018, 1050, 1088, 1135, 1194, 1283, 1399, 1627, 1577, 1372, 1268, 1191, 1131, 1082, 1049, 1023, 1010, 1022, 1053, 1099, 1146, 1210, 1292, 1415, 1615, 1589, 1391, 1287, 1210, 1148, 1104, 1060, 1031, 1021, 1034, 1068, 1114, 1170, 1232, 1315, 1435, 1631, 1598, 1409, 1305, 1226, 1161, 1110, 1068, 1038, 1023, 1044, 1077, 1122, 1180, 1250, 1328, 1453, 1645, 1606, 1421, 1304, 1230, 1164, 1119, 1074, 1036, 1024, 1042, 1076, 1131, 1185, 1248, 1335, 1452, 1636, 1594, 1415, 1297, 1219, 1161, 1103, 1066, 1033, 1025, 1041, 1078, 1122, 1177, 1241, 1325, 1446, 1628, 1589, 1385, 1285, 1206, 1148, 1101, 1054, 1027, 1012, 1035, 1068, 1109, 1168, 1236, 1317, 1435, 1631, 1590, 1378, 1265, 1191, 1133, 1089, 1046, 1027, 1013, 1032, 1058, 1095, 1150, 1218, 1297, 1424, 1624, 1597, 1362, 1260, 1177, 1126, 1080, 1049, 1022, 1015, 1024, 1055, 1091, 1140, 1204, 1295, 1411, 1627, 1624, 1374, 1263, 1180, 1121, 1078, 1049, 1027, 1020, 1031, 1052, 1084, 1132, 1197, 1288, 1412, 1661, 1710, 1414, 1292, 1200, 1145, 1098, 1067, 1052, 1039, 1049, 1072, 1108, 1156, 1231, 1314, 1448, 1769, 1832, 1492, 1342, 1245, 1176, 1130, 1103, 1085, 1078, 1083, 1110, 1143, 1187, 1257, 1360, 1527, 1928, 2023, 1591, 1393, 1289, 1219, 1166, 1144, 1119, 1114, 1123, 1146, 1177, 1233, 1308, 1427, 1628, 2086]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1860, 1462, 1325, 1237, 1158, 1124, 1098, 1067, 1065, 1085, 1086, 1130, 1173, 1246, 1335, 1515, 1906, 1692, 1387, 1278, 1193, 1129, 1092, 1064, 1042, 1050, 1058, 1075, 1099, 1156, 1224, 1297, 1434, 1728, 1548, 1338, 1233, 1157, 1112, 1067, 1041, 1030, 1024, 1025, 1051, 1084, 1125, 1185, 1275, 1380, 1672, 1514, 1318, 1226, 1153, 1092, 1055, 1026, 1002, 1005, 1012, 1036, 1066, 1123, 1174, 1251, 1347, 1599, 1477, 1313, 1224, 1160, 1105, 1068, 1038, 1009, 1003, 1019, 1048, 1084, 1117, 1194, 1273, 1361, 1570, 1524, 1331, 1248, 1168, 1120, 1076, 1047, 1023, 1007, 1023, 1057, 1093, 1132, 1217, 1273, 1370, 1564, 1500, 1353, 1277, 1200, 1149, 1092, 1051, 1023, 1021, 1037, 1072, 1120, 1161, 1222, 1302, 1383, 1566, 1535, 1361, 1292, 1214, 1149, 1104, 1073, 1033, 1017, 1043, 1083, 1133, 1188, 1251, 1318, 1433, 1618, 1538, 1374, 1295, 1216, 1157, 1106, 1075, 1040, 1024, 1045, 1080, 1135, 1190, 1231, 1321, 1436, 1607, 1497, 1381, 1284, 1207, 1143, 1104, 1073, 1033, 1022, 1038, 1078, 1121, 1188, 1236, 1309, 1412, 1604, 1513, 1363, 1260, 1186, 1130, 1098, 1057, 1027, 1012, 1023, 1072, 1109, 1168, 1222, 1293, 1404, 1594, 1498, 1340, 1248, 1182, 1126, 1071, 1047, 1023, 1016, 1032, 1057, 1104, 1151, 1210, 1273, 1380, 1592, 1515, 1322, 1232, 1166, 1111, 1073, 1038, 1009, 1013, 1024, 1038, 1096, 1129, 1194, 1256, 1371, 1584, 1541, 1328, 1234, 1153, 1110, 1061, 1041, 1016, 1010, 1021, 1046, 1083, 1123, 1181, 1259, 1368, 1614, 1639, 1348, 1258, 1164, 1106, 1072, 1051, 1030, 1024, 1030, 1062, 1101, 1131, 1193, 1284, 1402, 1689, 1710, 1410, 1297, 1216, 1143, 1105, 1075, 1058, 1056, 1063, 1081, 1123, 1170, 1248, 1306, 1470, 1805, 1838, 1515, 1335, 1254, 1195, 1137, 1123, 1109, 1107, 1109, 1136, 1165, 1187, 1290, 1388, 1573, 1929]
                                       }
                                   }, {
                                       "name":    "2688x1520_D50_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3040, 2329, 1938, 1699, 1544, 1458, 1369, 1343, 1319, 1349, 1395, 1437, 1544, 1699, 1925, 2329, 3072, 2831, 2139, 1828, 1631, 1473, 1382, 1325, 1283, 1283, 1289, 1325, 1395, 1488, 1631, 1828, 2155, 2888, 2578, 2019, 1729, 1544, 1423, 1325, 1261, 1224, 1208, 1229, 1278, 1356, 1437, 1553, 1761, 2048, 2602, 2348, 1900, 1650, 1488, 1369, 1278, 1213, 1169, 1155, 1174, 1224, 1289, 1375, 1496, 1669, 1938, 2387, 2256, 1828, 1587, 1430, 1325, 1229, 1160, 1137, 1111, 1119, 1164, 1239, 1319, 1444, 1613, 1851, 2256, 2171, 1772, 1544, 1388, 1272, 1193, 1119, 1077, 1066, 1077, 1128, 1188, 1278, 1395, 1561, 1783, 2171, 2077, 1709, 1512, 1362, 1256, 1160, 1098, 1046, 1031, 1050, 1094, 1155, 1261, 1369, 1512, 1740, 2123, 2077, 1689, 1496, 1356, 1239, 1146, 1090, 1035, 1017, 1039, 1086, 1150, 1250, 1349, 1504, 1729, 2077, 2063, 1729, 1512, 1356, 1250, 1155, 1086, 1039, 1024, 1042, 1094, 1174, 1261, 1369, 1528, 1761, 2093, 2093, 1761, 1536, 1395, 1272, 1174, 1115, 1062, 1046, 1066, 1115, 1188, 1278, 1382, 1561, 1794, 2139, 2171, 1794, 1587, 1423, 1301, 1203, 1132, 1090, 1077, 1098, 1141, 1213, 1313, 1430, 1595, 1828, 2221, 2256, 1839, 1622, 1444, 1325, 1234, 1174, 1128, 1111, 1124, 1183, 1234, 1337, 1481, 1631, 1863, 2292, 2329, 1875, 1641, 1466, 1356, 1267, 1198, 1160, 1141, 1155, 1208, 1267, 1369, 1496, 1669, 1925, 2329, 2447, 1912, 1679, 1512, 1388, 1295, 1229, 1193, 1164, 1188, 1234, 1295, 1395, 1512, 1679, 1964, 2468, 2578, 1992, 1719, 1544, 1409, 1319, 1261, 1229, 1203, 1224, 1267, 1331, 1423, 1553, 1740, 2034, 2578, 2777, 2093, 1794, 1604, 1458, 1343, 1301, 1261, 1250, 1261, 1307, 1369, 1466, 1604, 1794, 2108, 2831, 3040, 2256, 1887, 1650, 1504, 1416, 1349, 1301, 1301, 1313, 1337, 1423, 1528, 1669, 1875, 2310, 3072]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3072, 2234, 1837, 1670, 1518, 1430, 1355, 1334, 1330, 1344, 1365, 1422, 1531, 1659, 1870, 2225, 3054, 2745, 2064, 1767, 1583, 1466, 1380, 1313, 1284, 1268, 1290, 1323, 1380, 1470, 1603, 1792, 2081, 2760, 2505, 1940, 1698, 1518, 1410, 1323, 1262, 1232, 1220, 1229, 1265, 1323, 1414, 1536, 1703, 1970, 2518, 2294, 1843, 1623, 1458, 1344, 1271, 1211, 1178, 1165, 1181, 1217, 1281, 1362, 1475, 1638, 1870, 2325, 2159, 1761, 1550, 1410, 1297, 1223, 1165, 1120, 1112, 1129, 1170, 1226, 1313, 1414, 1569, 1805, 2187, 2048, 1698, 1500, 1358, 1256, 1178, 1122, 1077, 1064, 1082, 1127, 1189, 1271, 1373, 1518, 1738, 2081, 2016, 1659, 1462, 1327, 1229, 1152, 1082, 1053, 1030, 1051, 1100, 1155, 1244, 1341, 1483, 1692, 2024, 1962, 1644, 1450, 1320, 1214, 1134, 1077, 1034, 1016, 1036, 1087, 1147, 1229, 1334, 1475, 1670, 1993, 1977, 1649, 1466, 1334, 1226, 1147, 1084, 1047, 1024, 1045, 1096, 1152, 1244, 1355, 1487, 1692, 2024, 2016, 1692, 1492, 1362, 1256, 1176, 1108, 1066, 1051, 1071, 1120, 1181, 1262, 1376, 1527, 1732, 2064, 2107, 1749, 1531, 1391, 1290, 1203, 1144, 1098, 1082, 1103, 1147, 1211, 1297, 1414, 1559, 1767, 2124, 2159, 1780, 1559, 1422, 1317, 1238, 1170, 1139, 1117, 1137, 1181, 1241, 1323, 1438, 1593, 1811, 2196, 2254, 1811, 1593, 1454, 1344, 1262, 1203, 1162, 1149, 1165, 1206, 1268, 1358, 1479, 1618, 1870, 2284, 2335, 1863, 1638, 1479, 1362, 1287, 1235, 1195, 1181, 1189, 1232, 1297, 1380, 1500, 1665, 1897, 2367, 2481, 1926, 1670, 1505, 1384, 1303, 1262, 1220, 1206, 1223, 1262, 1313, 1414, 1522, 1698, 1970, 2481, 2647, 2032, 1738, 1541, 1418, 1337, 1287, 1253, 1235, 1253, 1287, 1355, 1438, 1573, 1755, 2056, 2716, 2949, 2150, 1805, 1593, 1454, 1376, 1327, 1290, 1284, 1293, 1320, 1399, 1470, 1618, 1817, 2196, 2949]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3054, 2238, 1854, 1659, 1527, 1418, 1366, 1328, 1324, 1335, 1373, 1430, 1518, 1675, 1854, 2257, 3036, 2747, 2068, 1784, 1588, 1467, 1377, 1321, 1295, 1279, 1288, 1321, 1396, 1488, 1617, 1790, 2102, 2747, 2472, 1959, 1697, 1522, 1411, 1328, 1272, 1230, 1224, 1236, 1272, 1342, 1426, 1536, 1725, 1967, 2508, 2297, 1854, 1617, 1475, 1352, 1269, 1210, 1175, 1164, 1180, 1222, 1282, 1366, 1483, 1643, 1881, 2349, 2163, 1778, 1573, 1411, 1298, 1227, 1167, 1121, 1112, 1136, 1177, 1236, 1311, 1422, 1588, 1809, 2219, 2060, 1708, 1509, 1363, 1266, 1185, 1124, 1084, 1073, 1088, 1129, 1196, 1276, 1377, 1527, 1742, 2085, 1997, 1659, 1471, 1331, 1227, 1154, 1093, 1053, 1028, 1057, 1098, 1167, 1248, 1345, 1488, 1686, 2020, 1982, 1648, 1458, 1321, 1227, 1141, 1082, 1038, 1020, 1043, 1084, 1156, 1242, 1345, 1483, 1691, 2012, 1982, 1675, 1479, 1324, 1239, 1151, 1093, 1045, 1024, 1049, 1098, 1161, 1248, 1359, 1500, 1713, 2020, 2020, 1697, 1496, 1363, 1257, 1175, 1116, 1066, 1055, 1077, 1119, 1180, 1269, 1384, 1522, 1731, 2068, 2077, 1742, 1536, 1399, 1288, 1207, 1144, 1102, 1086, 1102, 1154, 1210, 1301, 1422, 1564, 1784, 2136, 2181, 1784, 1568, 1426, 1314, 1227, 1183, 1134, 1119, 1139, 1180, 1245, 1338, 1454, 1593, 1815, 2209, 2247, 1835, 1597, 1458, 1345, 1260, 1205, 1167, 1151, 1167, 1210, 1269, 1359, 1479, 1633, 1861, 2267, 2339, 1881, 1643, 1488, 1363, 1291, 1230, 1191, 1185, 1193, 1239, 1291, 1381, 1492, 1664, 1930, 2371, 2472, 1930, 1680, 1514, 1396, 1318, 1257, 1219, 1210, 1227, 1260, 1324, 1407, 1527, 1697, 1967, 2520, 2662, 2028, 1736, 1554, 1434, 1338, 1285, 1251, 1239, 1257, 1301, 1352, 1442, 1568, 1748, 2060, 2747, 2950, 2172, 1815, 1597, 1479, 1381, 1338, 1295, 1282, 1288, 1338, 1399, 1483, 1633, 1822, 2200, 3036]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2848, 2155, 1849, 1630, 1520, 1400, 1347, 1311, 1311, 1332, 1354, 1432, 1511, 1652, 1836, 2174, 2915, 2609, 1998, 1745, 1578, 1449, 1354, 1311, 1277, 1258, 1297, 1311, 1369, 1475, 1589, 1758, 2031, 2665, 2383, 1892, 1674, 1502, 1408, 1318, 1258, 1239, 1221, 1233, 1264, 1325, 1424, 1530, 1697, 1936, 2454, 2213, 1809, 1599, 1449, 1347, 1271, 1221, 1174, 1163, 1186, 1215, 1277, 1377, 1475, 1630, 1849, 2295, 2065, 1745, 1539, 1400, 1311, 1227, 1169, 1137, 1126, 1132, 1180, 1239, 1318, 1424, 1578, 1783, 2136, 1982, 1674, 1502, 1332, 1252, 1180, 1116, 1077, 1073, 1092, 1132, 1197, 1271, 1377, 1502, 1697, 2048, 1906, 1620, 1441, 1325, 1233, 1158, 1087, 1041, 1037, 1055, 1106, 1153, 1245, 1340, 1466, 1652, 1967, 1906, 1620, 1449, 1311, 1215, 1142, 1082, 1041, 1024, 1033, 1092, 1137, 1233, 1325, 1458, 1663, 1936, 1892, 1630, 1449, 1332, 1233, 1153, 1092, 1041, 1024, 1055, 1101, 1163, 1252, 1362, 1484, 1663, 1967, 1951, 1663, 1484, 1354, 1264, 1169, 1116, 1073, 1059, 1077, 1126, 1197, 1277, 1377, 1520, 1721, 1998, 1982, 1709, 1530, 1384, 1291, 1203, 1142, 1106, 1087, 1111, 1158, 1221, 1318, 1416, 1559, 1770, 2118, 2100, 1745, 1568, 1424, 1325, 1239, 1186, 1142, 1132, 1147, 1197, 1258, 1340, 1441, 1599, 1796, 2118, 2136, 1796, 1599, 1458, 1340, 1258, 1209, 1169, 1158, 1174, 1209, 1277, 1354, 1484, 1630, 1836, 2253, 2253, 1822, 1630, 1475, 1354, 1277, 1227, 1191, 1186, 1197, 1239, 1297, 1392, 1502, 1663, 1892, 2316, 2360, 1892, 1663, 1493, 1384, 1297, 1245, 1215, 1209, 1215, 1264, 1318, 1392, 1520, 1686, 1936, 2454, 2503, 1951, 1686, 1520, 1384, 1311, 1271, 1239, 1227, 1245, 1284, 1325, 1416, 1549, 1709, 1998, 2609, 2784, 2082, 1733, 1559, 1441, 1354, 1304, 1271, 1271, 1277, 1304, 1369, 1466, 1599, 1783, 2118, 2915]
                                       }
                                   }, {
                                       "name":    "2688x1520_D50_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2128, 1739, 1518, 1384, 1298, 1255, 1198, 1188, 1170, 1193, 1221, 1237, 1298, 1384, 1508, 1739, 2150, 2060, 1648, 1476, 1369, 1274, 1224, 1193, 1168, 1172, 1173, 1193, 1236, 1288, 1369, 1476, 1661, 2101, 1931, 1598, 1432, 1328, 1261, 1202, 1164, 1141, 1130, 1146, 1179, 1231, 1274, 1335, 1458, 1620, 1948, 1799, 1536, 1396, 1307, 1239, 1184, 1143, 1113, 1103, 1117, 1153, 1195, 1245, 1314, 1412, 1567, 1829, 1761, 1505, 1366, 1277, 1220, 1158, 1111, 1100, 1078, 1083, 1116, 1168, 1214, 1290, 1389, 1524, 1761, 1719, 1478, 1347, 1257, 1187, 1139, 1086, 1056, 1048, 1056, 1095, 1135, 1192, 1263, 1362, 1488, 1719, 1661, 1440, 1332, 1245, 1182, 1118, 1076, 1035, 1024, 1039, 1072, 1113, 1187, 1251, 1332, 1466, 1698, 1671, 1431, 1325, 1246, 1174, 1110, 1074, 1030, 1015, 1033, 1069, 1115, 1184, 1240, 1332, 1465, 1671, 1663, 1468, 1342, 1248, 1186, 1121, 1071, 1035, 1024, 1039, 1080, 1140, 1196, 1260, 1356, 1495, 1687, 1683, 1492, 1361, 1282, 1205, 1138, 1098, 1056, 1044, 1060, 1098, 1152, 1210, 1270, 1383, 1520, 1721, 1736, 1511, 1397, 1300, 1225, 1160, 1109, 1078, 1070, 1086, 1118, 1169, 1236, 1306, 1405, 1540, 1776, 1786, 1535, 1415, 1307, 1236, 1178, 1139, 1106, 1092, 1101, 1149, 1178, 1247, 1341, 1423, 1555, 1815, 1818, 1544, 1412, 1310, 1248, 1194, 1148, 1122, 1108, 1118, 1158, 1194, 1260, 1337, 1437, 1585, 1818, 1876, 1547, 1420, 1328, 1257, 1200, 1158, 1136, 1112, 1131, 1163, 1200, 1263, 1328, 1420, 1589, 1892, 1931, 1576, 1424, 1328, 1249, 1197, 1164, 1146, 1125, 1141, 1169, 1208, 1261, 1335, 1441, 1609, 1931, 2020, 1613, 1448, 1346, 1262, 1190, 1172, 1147, 1141, 1147, 1177, 1212, 1268, 1346, 1448, 1624, 2060, 2128, 1685, 1479, 1344, 1264, 1219, 1181, 1150, 1154, 1161, 1171, 1225, 1284, 1360, 1469, 1725, 2150]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2150, 1668, 1439, 1361, 1276, 1231, 1186, 1180, 1180, 1189, 1195, 1224, 1287, 1352, 1465, 1661, 2138, 1998, 1591, 1427, 1328, 1268, 1222, 1183, 1168, 1158, 1174, 1192, 1222, 1272, 1344, 1447, 1604, 2008, 1876, 1535, 1406, 1306, 1250, 1201, 1165, 1148, 1141, 1146, 1168, 1201, 1254, 1321, 1411, 1559, 1885, 1758, 1491, 1373, 1281, 1217, 1178, 1142, 1121, 1112, 1124, 1147, 1187, 1233, 1295, 1386, 1512, 1782, 1686, 1450, 1334, 1260, 1194, 1153, 1116, 1083, 1080, 1093, 1121, 1155, 1209, 1263, 1350, 1485, 1707, 1622, 1417, 1309, 1230, 1171, 1125, 1089, 1056, 1047, 1061, 1094, 1135, 1186, 1243, 1324, 1450, 1648, 1612, 1398, 1288, 1212, 1157, 1110, 1060, 1042, 1023, 1040, 1078, 1113, 1171, 1225, 1306, 1426, 1619, 1579, 1393, 1284, 1213, 1150, 1099, 1061, 1029, 1014, 1031, 1070, 1111, 1164, 1226, 1306, 1416, 1603, 1594, 1400, 1301, 1228, 1163, 1113, 1070, 1043, 1024, 1041, 1081, 1118, 1180, 1247, 1320, 1437, 1631, 1622, 1434, 1321, 1251, 1189, 1139, 1091, 1061, 1049, 1065, 1103, 1144, 1195, 1265, 1352, 1468, 1661, 1685, 1474, 1349, 1271, 1215, 1159, 1121, 1086, 1074, 1091, 1124, 1168, 1221, 1292, 1373, 1489, 1699, 1710, 1485, 1360, 1287, 1228, 1182, 1136, 1117, 1099, 1114, 1146, 1185, 1235, 1301, 1390, 1511, 1739, 1759, 1491, 1371, 1299, 1237, 1189, 1153, 1125, 1116, 1127, 1155, 1195, 1251, 1321, 1393, 1539, 1783, 1790, 1507, 1386, 1299, 1233, 1193, 1163, 1137, 1128, 1132, 1161, 1202, 1249, 1318, 1409, 1535, 1814, 1858, 1524, 1383, 1294, 1227, 1183, 1165, 1138, 1128, 1140, 1165, 1192, 1254, 1309, 1406, 1559, 1858, 1926, 1566, 1403, 1292, 1226, 1184, 1159, 1140, 1127, 1140, 1159, 1200, 1244, 1320, 1417, 1585, 1977, 2064, 1606, 1414, 1298, 1222, 1185, 1162, 1141, 1139, 1144, 1156, 1204, 1236, 1318, 1424, 1640, 2064]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2138, 1671, 1453, 1351, 1283, 1221, 1196, 1174, 1175, 1180, 1203, 1231, 1276, 1364, 1453, 1686, 2125, 1999, 1594, 1440, 1332, 1269, 1220, 1190, 1178, 1167, 1172, 1190, 1236, 1287, 1357, 1445, 1620, 1999, 1851, 1550, 1405, 1309, 1251, 1205, 1175, 1147, 1145, 1152, 1175, 1218, 1265, 1321, 1429, 1556, 1878, 1761, 1500, 1368, 1295, 1224, 1176, 1140, 1118, 1111, 1123, 1151, 1188, 1237, 1303, 1390, 1521, 1800, 1689, 1464, 1354, 1260, 1195, 1157, 1118, 1085, 1079, 1099, 1128, 1165, 1207, 1271, 1367, 1489, 1732, 1631, 1425, 1317, 1234, 1181, 1132, 1091, 1063, 1055, 1067, 1096, 1142, 1190, 1247, 1332, 1454, 1651, 1597, 1398, 1295, 1217, 1156, 1112, 1071, 1042, 1021, 1046, 1075, 1124, 1175, 1229, 1310, 1420, 1616, 1594, 1397, 1292, 1214, 1162, 1106, 1066, 1033, 1018, 1037, 1068, 1121, 1176, 1236, 1314, 1433, 1619, 1597, 1422, 1313, 1219, 1175, 1118, 1079, 1041, 1024, 1045, 1083, 1128, 1184, 1251, 1332, 1455, 1628, 1625, 1438, 1325, 1252, 1190, 1138, 1100, 1061, 1053, 1072, 1102, 1143, 1202, 1272, 1349, 1467, 1664, 1661, 1468, 1353, 1279, 1213, 1164, 1120, 1091, 1078, 1091, 1130, 1166, 1225, 1300, 1377, 1503, 1709, 1727, 1489, 1368, 1291, 1226, 1172, 1148, 1111, 1100, 1116, 1145, 1189, 1248, 1317, 1389, 1515, 1749, 1755, 1510, 1375, 1303, 1238, 1188, 1154, 1129, 1118, 1129, 1160, 1196, 1251, 1321, 1405, 1532, 1770, 1792, 1521, 1390, 1307, 1234, 1197, 1159, 1133, 1132, 1136, 1167, 1197, 1250, 1310, 1408, 1561, 1817, 1851, 1527, 1392, 1302, 1237, 1196, 1160, 1136, 1132, 1144, 1163, 1202, 1248, 1313, 1405, 1556, 1887, 1937, 1563, 1402, 1304, 1241, 1185, 1158, 1138, 1131, 1144, 1172, 1198, 1247, 1316, 1411, 1588, 1999, 2065, 1622, 1422, 1301, 1243, 1189, 1172, 1145, 1138, 1139, 1172, 1205, 1247, 1330, 1427, 1643, 2125]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1994, 1609, 1449, 1328, 1278, 1205, 1179, 1160, 1164, 1178, 1186, 1233, 1270, 1346, 1438, 1623, 2041, 1898, 1540, 1409, 1324, 1254, 1199, 1181, 1162, 1148, 1180, 1181, 1213, 1276, 1332, 1419, 1565, 1939, 1784, 1497, 1387, 1292, 1248, 1197, 1161, 1155, 1142, 1149, 1167, 1203, 1263, 1316, 1406, 1532, 1837, 1696, 1463, 1353, 1273, 1219, 1178, 1150, 1118, 1111, 1128, 1145, 1184, 1246, 1296, 1379, 1496, 1759, 1612, 1437, 1325, 1251, 1207, 1156, 1120, 1100, 1094, 1095, 1131, 1168, 1214, 1272, 1359, 1468, 1668, 1570, 1397, 1310, 1206, 1168, 1127, 1084, 1056, 1055, 1070, 1098, 1143, 1186, 1246, 1310, 1416, 1622, 1524, 1365, 1269, 1211, 1161, 1116, 1065, 1030, 1029, 1043, 1084, 1111, 1173, 1224, 1291, 1392, 1573, 1534, 1373, 1284, 1205, 1150, 1107, 1066, 1036, 1022, 1027, 1075, 1102, 1167, 1218, 1291, 1410, 1558, 1525, 1384, 1286, 1227, 1170, 1119, 1077, 1038, 1024, 1051, 1087, 1130, 1187, 1254, 1317, 1412, 1585, 1570, 1410, 1314, 1245, 1197, 1133, 1100, 1067, 1057, 1072, 1110, 1160, 1210, 1265, 1347, 1458, 1608, 1585, 1440, 1347, 1265, 1215, 1159, 1119, 1095, 1079, 1099, 1134, 1176, 1241, 1294, 1373, 1491, 1694, 1663, 1456, 1368, 1289, 1236, 1183, 1151, 1119, 1113, 1125, 1162, 1201, 1250, 1304, 1395, 1499, 1677, 1668, 1478, 1376, 1302, 1233, 1185, 1158, 1131, 1124, 1136, 1158, 1204, 1247, 1326, 1403, 1511, 1759, 1727, 1474, 1379, 1296, 1226, 1184, 1156, 1134, 1132, 1139, 1167, 1202, 1260, 1319, 1407, 1530, 1775, 1767, 1497, 1377, 1284, 1228, 1178, 1149, 1133, 1131, 1133, 1167, 1197, 1234, 1308, 1396, 1532, 1837, 1821, 1504, 1361, 1275, 1198, 1161, 1145, 1127, 1120, 1133, 1157, 1174, 1225, 1299, 1380, 1540, 1898, 1949, 1555, 1358, 1270, 1211, 1166, 1142, 1124, 1128, 1130, 1142, 1179, 1232, 1302, 1397, 1582, 2041]
                                       }
                                   }, {
                                       "name":    "2688x1520_D65_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3148, 2327, 1910, 1707, 1567, 1449, 1381, 1347, 1329, 1343, 1396, 1471, 1548, 1722, 1930, 2341, 3200, 2824, 2145, 1829, 1627, 1488, 1391, 1333, 1293, 1272, 1297, 1338, 1396, 1494, 1634, 1837, 2157, 2887, 2577, 2000, 1745, 1555, 1417, 1333, 1272, 1231, 1215, 1235, 1267, 1338, 1433, 1561, 1753, 2021, 2595, 2370, 1901, 1655, 1488, 1367, 1272, 1204, 1178, 1160, 1178, 1223, 1289, 1371, 1506, 1670, 1939, 2415, 2246, 1803, 1607, 1433, 1315, 1231, 1167, 1133, 1113, 1126, 1174, 1243, 1329, 1444, 1607, 1855, 2286, 2145, 1745, 1548, 1386, 1280, 1185, 1120, 1076, 1064, 1082, 1136, 1196, 1289, 1396, 1561, 1803, 2182, 2087, 1722, 1518, 1362, 1243, 1160, 1091, 1049, 1035, 1049, 1097, 1171, 1263, 1386, 1542, 1745, 2133, 2053, 1707, 1506, 1347, 1239, 1153, 1079, 1046, 1024, 1038, 1091, 1164, 1255, 1362, 1518, 1745, 2098, 2076, 1722, 1512, 1362, 1243, 1164, 1091, 1052, 1024, 1049, 1100, 1164, 1251, 1376, 1524, 1770, 2122, 2122, 1761, 1536, 1386, 1272, 1178, 1110, 1064, 1058, 1073, 1116, 1193, 1276, 1396, 1561, 1786, 2157, 2157, 1786, 1574, 1433, 1297, 1208, 1139, 1097, 1076, 1094, 1143, 1223, 1315, 1433, 1593, 1829, 2207, 2259, 1829, 1607, 1444, 1329, 1239, 1171, 1133, 1110, 1133, 1174, 1259, 1343, 1455, 1620, 1873, 2299, 2299, 1873, 1641, 1483, 1352, 1267, 1204, 1157, 1143, 1160, 1208, 1272, 1367, 1488, 1662, 1920, 2400, 2415, 1920, 1684, 1500, 1371, 1293, 1235, 1189, 1164, 1189, 1235, 1297, 1386, 1518, 1692, 1969, 2494, 2543, 1969, 1722, 1542, 1417, 1320, 1263, 1215, 1200, 1215, 1263, 1338, 1417, 1555, 1753, 2021, 2630, 2763, 2087, 1794, 1600, 1438, 1352, 1302, 1263, 1247, 1259, 1306, 1362, 1455, 1607, 1803, 2145, 2844, 3097, 2259, 1873, 1662, 1506, 1417, 1343, 1315, 1306, 1306, 1357, 1428, 1530, 1699, 1901, 2272, 3122]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3037, 2191, 1835, 1650, 1516, 1404, 1354, 1321, 1319, 1321, 1361, 1427, 1519, 1650, 1860, 2240, 3049, 2718, 2061, 1754, 1575, 1450, 1368, 1310, 1273, 1275, 1283, 1323, 1380, 1463, 1597, 1790, 2088, 2736, 2452, 1918, 1677, 1507, 1392, 1310, 1261, 1222, 1211, 1224, 1265, 1321, 1412, 1524, 1702, 1970, 2529, 2284, 1839, 1594, 1447, 1343, 1257, 1208, 1176, 1162, 1172, 1217, 1275, 1354, 1466, 1636, 1887, 2317, 2138, 1754, 1539, 1394, 1293, 1215, 1155, 1115, 1104, 1128, 1167, 1228, 1308, 1414, 1572, 1786, 2179, 2051, 1688, 1488, 1348, 1243, 1176, 1115, 1070, 1063, 1076, 1121, 1179, 1259, 1373, 1507, 1724, 2099, 1970, 1650, 1460, 1321, 1219, 1150, 1086, 1043, 1029, 1047, 1091, 1152, 1239, 1341, 1485, 1692, 2020, 1956, 1633, 1445, 1308, 1219, 1129, 1076, 1033, 1020, 1035, 1082, 1150, 1232, 1334, 1477, 1674, 1999, 1965, 1643, 1455, 1323, 1228, 1147, 1081, 1037, 1024, 1043, 1095, 1154, 1237, 1345, 1488, 1702, 2015, 2004, 1677, 1493, 1348, 1251, 1169, 1107, 1059, 1048, 1070, 1115, 1179, 1263, 1375, 1516, 1735, 2077, 2066, 1717, 1519, 1382, 1279, 1197, 1132, 1089, 1075, 1094, 1142, 1209, 1291, 1404, 1551, 1766, 2127, 2144, 1770, 1557, 1409, 1306, 1226, 1164, 1126, 1111, 1131, 1177, 1235, 1323, 1442, 1585, 1814, 2185, 2227, 1806, 1591, 1442, 1330, 1253, 1193, 1154, 1145, 1154, 1202, 1259, 1354, 1460, 1613, 1865, 2284, 2304, 1856, 1626, 1466, 1354, 1273, 1222, 1186, 1165, 1186, 1222, 1283, 1373, 1488, 1663, 1891, 2365, 2430, 1904, 1660, 1499, 1380, 1295, 1245, 1211, 1195, 1213, 1257, 1312, 1397, 1524, 1692, 1960, 2506, 2637, 1995, 1706, 1533, 1414, 1325, 1275, 1239, 1232, 1239, 1281, 1339, 1424, 1557, 1747, 2056, 2691, 2926, 2132, 1790, 1594, 1453, 1373, 1310, 1275, 1265, 1277, 1323, 1387, 1468, 1613, 1822, 2197, 3003]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3018, 2196, 1844, 1651, 1509, 1426, 1361, 1330, 1321, 1334, 1368, 1434, 1518, 1665, 1874, 2264, 3041, 2732, 2061, 1767, 1590, 1460, 1366, 1313, 1277, 1265, 1287, 1317, 1385, 1473, 1602, 1791, 2110, 2779, 2480, 1933, 1679, 1515, 1397, 1313, 1263, 1230, 1221, 1232, 1271, 1330, 1419, 1538, 1715, 1985, 2550, 2309, 1844, 1609, 1457, 1341, 1261, 1210, 1173, 1168, 1176, 1214, 1273, 1364, 1473, 1641, 1883, 2343, 2155, 1763, 1547, 1397, 1291, 1217, 1161, 1127, 1113, 1127, 1175, 1230, 1310, 1421, 1574, 1803, 2202, 2056, 1689, 1490, 1354, 1257, 1173, 1112, 1075, 1066, 1076, 1129, 1187, 1267, 1373, 1529, 1733, 2077, 1970, 1658, 1457, 1328, 1227, 1153, 1083, 1047, 1035, 1049, 1099, 1156, 1242, 1345, 1490, 1700, 2020, 1956, 1638, 1447, 1319, 1216, 1137, 1079, 1037, 1014, 1039, 1082, 1151, 1232, 1339, 1479, 1682, 2005, 1961, 1655, 1457, 1323, 1227, 1151, 1088, 1039, 1024, 1048, 1095, 1163, 1251, 1357, 1495, 1700, 2030, 2015, 1679, 1498, 1352, 1246, 1173, 1107, 1062, 1051, 1069, 1119, 1178, 1271, 1375, 1526, 1733, 2072, 2072, 1729, 1529, 1389, 1283, 1199, 1133, 1093, 1077, 1099, 1140, 1206, 1302, 1404, 1553, 1783, 2115, 2143, 1767, 1568, 1414, 1306, 1223, 1170, 1132, 1110, 1129, 1178, 1240, 1325, 1442, 1596, 1819, 2196, 2245, 1803, 1590, 1437, 1332, 1257, 1190, 1156, 1138, 1163, 1201, 1269, 1352, 1468, 1622, 1865, 2283, 2322, 1857, 1625, 1473, 1361, 1277, 1225, 1190, 1171, 1185, 1223, 1296, 1375, 1498, 1669, 1905, 2384, 2450, 1923, 1662, 1495, 1382, 1300, 1248, 1217, 1199, 1214, 1255, 1310, 1406, 1526, 1707, 1966, 2511, 2642, 2015, 1711, 1535, 1424, 1334, 1273, 1240, 1232, 1246, 1287, 1341, 1434, 1562, 1752, 2072, 2741, 2931, 2138, 1787, 1605, 1452, 1373, 1315, 1275, 1273, 1283, 1325, 1387, 1484, 1618, 1819, 2202, 2974]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2879, 2142, 1795, 1612, 1473, 1394, 1340, 1304, 1304, 1312, 1344, 1408, 1493, 1624, 1817, 2173, 2956, 2608, 1988, 1725, 1545, 1430, 1356, 1293, 1267, 1260, 1270, 1304, 1368, 1454, 1584, 1753, 2034, 2655, 2346, 1895, 1654, 1493, 1386, 1304, 1253, 1225, 1208, 1228, 1267, 1320, 1408, 1524, 1686, 1928, 2450, 2184, 1795, 1589, 1440, 1332, 1253, 1205, 1173, 1161, 1173, 1218, 1267, 1352, 1463, 1624, 1840, 2251, 2072, 1719, 1534, 1390, 1278, 1208, 1155, 1120, 1111, 1120, 1167, 1225, 1312, 1412, 1550, 1767, 2152, 1962, 1648, 1468, 1344, 1242, 1173, 1111, 1068, 1058, 1084, 1123, 1182, 1260, 1364, 1498, 1705, 2034, 1895, 1612, 1440, 1316, 1218, 1140, 1081, 1038, 1024, 1046, 1087, 1152, 1239, 1332, 1468, 1648, 1971, 1887, 1612, 1426, 1308, 1195, 1125, 1071, 1024, 1012, 1029, 1079, 1146, 1225, 1332, 1468, 1636, 1971, 1903, 1618, 1444, 1316, 1215, 1137, 1081, 1041, 1024, 1038, 1095, 1155, 1239, 1344, 1483, 1654, 1979, 1936, 1648, 1473, 1348, 1249, 1167, 1111, 1058, 1043, 1071, 1111, 1186, 1263, 1364, 1503, 1699, 2006, 2006, 1692, 1508, 1377, 1267, 1189, 1134, 1089, 1076, 1095, 1155, 1215, 1296, 1408, 1556, 1753, 2091, 2053, 1759, 1556, 1408, 1296, 1232, 1170, 1123, 1120, 1128, 1182, 1242, 1332, 1440, 1578, 1788, 2142, 2163, 1774, 1572, 1435, 1332, 1256, 1198, 1158, 1152, 1161, 1202, 1270, 1352, 1459, 1618, 1840, 2239, 2217, 1825, 1618, 1459, 1340, 1263, 1221, 1186, 1170, 1182, 1225, 1281, 1373, 1488, 1648, 1879, 2309, 2358, 1847, 1636, 1468, 1364, 1278, 1239, 1198, 1189, 1208, 1242, 1296, 1381, 1503, 1673, 1911, 2423, 2491, 1936, 1673, 1503, 1386, 1304, 1263, 1225, 1215, 1221, 1263, 1324, 1399, 1534, 1699, 2006, 2639, 2771, 2053, 1739, 1545, 1417, 1332, 1293, 1256, 1242, 1267, 1293, 1356, 1449, 1584, 1781, 2132, 2898]
                                       }
                                   }, {
                                       "name":    "2688x1520_D65_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2203, 1738, 1497, 1390, 1317, 1247, 1209, 1192, 1179, 1188, 1223, 1266, 1301, 1403, 1512, 1748, 2240, 2055, 1653, 1476, 1365, 1287, 1232, 1201, 1176, 1161, 1180, 1205, 1237, 1293, 1371, 1483, 1662, 2101, 1930, 1583, 1446, 1337, 1256, 1210, 1174, 1147, 1137, 1151, 1170, 1215, 1270, 1343, 1452, 1599, 1943, 1817, 1537, 1400, 1307, 1237, 1178, 1134, 1121, 1108, 1121, 1152, 1194, 1242, 1323, 1413, 1569, 1851, 1753, 1484, 1383, 1280, 1211, 1160, 1118, 1096, 1081, 1090, 1125, 1171, 1223, 1290, 1383, 1527, 1784, 1699, 1457, 1351, 1255, 1194, 1132, 1087, 1054, 1046, 1060, 1103, 1142, 1202, 1264, 1362, 1504, 1728, 1669, 1451, 1337, 1244, 1170, 1118, 1069, 1038, 1027, 1038, 1075, 1128, 1189, 1267, 1358, 1471, 1706, 1652, 1446, 1334, 1238, 1173, 1117, 1063, 1041, 1022, 1033, 1075, 1128, 1188, 1251, 1344, 1479, 1688, 1673, 1462, 1342, 1254, 1179, 1130, 1077, 1049, 1024, 1046, 1086, 1130, 1187, 1267, 1352, 1503, 1710, 1707, 1493, 1361, 1274, 1204, 1141, 1093, 1058, 1056, 1067, 1100, 1156, 1208, 1283, 1383, 1514, 1736, 1725, 1505, 1386, 1309, 1222, 1164, 1116, 1086, 1068, 1082, 1120, 1179, 1238, 1309, 1403, 1541, 1765, 1788, 1526, 1402, 1307, 1240, 1183, 1136, 1110, 1092, 1110, 1140, 1202, 1253, 1317, 1414, 1563, 1821, 1795, 1542, 1413, 1325, 1245, 1194, 1153, 1119, 1110, 1123, 1157, 1198, 1258, 1330, 1431, 1581, 1874, 1851, 1553, 1425, 1317, 1242, 1198, 1163, 1131, 1111, 1131, 1163, 1202, 1255, 1333, 1431, 1593, 1911, 1904, 1558, 1426, 1326, 1256, 1198, 1166, 1133, 1123, 1133, 1166, 1215, 1256, 1337, 1452, 1599, 1970, 2010, 1608, 1449, 1342, 1244, 1198, 1173, 1149, 1138, 1146, 1177, 1206, 1258, 1348, 1456, 1653, 2070, 2168, 1687, 1468, 1354, 1266, 1220, 1176, 1163, 1159, 1155, 1188, 1229, 1286, 1384, 1489, 1697, 2185]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2126, 1636, 1438, 1344, 1274, 1209, 1186, 1168, 1170, 1168, 1192, 1228, 1276, 1344, 1458, 1672, 2134, 1978, 1588, 1416, 1321, 1254, 1212, 1180, 1158, 1164, 1167, 1192, 1222, 1266, 1340, 1445, 1609, 1991, 1836, 1518, 1389, 1296, 1234, 1189, 1164, 1140, 1133, 1141, 1167, 1199, 1252, 1311, 1410, 1559, 1894, 1751, 1487, 1349, 1271, 1216, 1165, 1138, 1119, 1109, 1116, 1146, 1181, 1226, 1287, 1384, 1526, 1776, 1669, 1444, 1325, 1246, 1191, 1145, 1107, 1079, 1072, 1091, 1118, 1157, 1204, 1263, 1353, 1470, 1701, 1624, 1409, 1298, 1220, 1160, 1122, 1082, 1049, 1046, 1055, 1089, 1126, 1174, 1243, 1315, 1439, 1662, 1575, 1390, 1286, 1207, 1147, 1109, 1064, 1032, 1022, 1036, 1069, 1110, 1167, 1225, 1308, 1425, 1615, 1573, 1384, 1280, 1202, 1154, 1094, 1060, 1028, 1018, 1029, 1066, 1115, 1166, 1226, 1308, 1419, 1609, 1584, 1395, 1291, 1218, 1165, 1114, 1067, 1034, 1024, 1039, 1081, 1120, 1174, 1239, 1320, 1446, 1624, 1613, 1422, 1323, 1238, 1184, 1133, 1091, 1054, 1046, 1065, 1099, 1143, 1196, 1264, 1343, 1471, 1671, 1653, 1447, 1337, 1263, 1204, 1153, 1109, 1078, 1067, 1082, 1119, 1165, 1216, 1283, 1366, 1488, 1701, 1697, 1477, 1358, 1276, 1218, 1171, 1130, 1104, 1092, 1109, 1143, 1180, 1234, 1306, 1382, 1514, 1730, 1739, 1487, 1369, 1288, 1224, 1181, 1143, 1116, 1112, 1116, 1152, 1186, 1247, 1305, 1389, 1535, 1783, 1766, 1501, 1376, 1287, 1226, 1179, 1152, 1129, 1113, 1129, 1152, 1189, 1243, 1307, 1407, 1529, 1813, 1819, 1507, 1375, 1289, 1224, 1176, 1149, 1129, 1118, 1131, 1160, 1191, 1239, 1311, 1401, 1551, 1876, 1919, 1537, 1377, 1286, 1223, 1174, 1148, 1128, 1124, 1128, 1154, 1186, 1232, 1306, 1410, 1584, 1958, 2048, 1592, 1402, 1299, 1221, 1182, 1147, 1127, 1122, 1129, 1158, 1194, 1234, 1314, 1428, 1640, 2102]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2113, 1640, 1445, 1345, 1268, 1228, 1192, 1176, 1172, 1180, 1198, 1234, 1276, 1356, 1468, 1690, 2129, 1988, 1588, 1427, 1333, 1263, 1210, 1182, 1162, 1155, 1171, 1186, 1227, 1274, 1344, 1446, 1626, 2022, 1857, 1529, 1391, 1303, 1238, 1191, 1166, 1147, 1142, 1149, 1173, 1207, 1258, 1323, 1420, 1571, 1910, 1770, 1491, 1361, 1280, 1214, 1169, 1140, 1116, 1115, 1120, 1144, 1180, 1234, 1294, 1389, 1523, 1795, 1682, 1452, 1332, 1248, 1189, 1147, 1113, 1091, 1081, 1091, 1126, 1160, 1207, 1270, 1355, 1484, 1719, 1628, 1410, 1300, 1226, 1173, 1120, 1079, 1053, 1048, 1055, 1096, 1133, 1182, 1243, 1334, 1446, 1645, 1576, 1397, 1284, 1213, 1155, 1111, 1061, 1036, 1027, 1038, 1077, 1114, 1169, 1230, 1312, 1433, 1615, 1574, 1388, 1282, 1212, 1151, 1102, 1063, 1032, 1012, 1033, 1066, 1116, 1167, 1230, 1310, 1426, 1613, 1581, 1405, 1293, 1218, 1164, 1118, 1073, 1035, 1024, 1045, 1081, 1129, 1187, 1249, 1327, 1444, 1636, 1621, 1423, 1327, 1243, 1179, 1137, 1091, 1056, 1049, 1063, 1103, 1142, 1204, 1264, 1352, 1469, 1667, 1657, 1457, 1347, 1270, 1208, 1156, 1110, 1082, 1069, 1088, 1117, 1163, 1226, 1283, 1368, 1502, 1692, 1697, 1475, 1368, 1280, 1218, 1168, 1135, 1110, 1092, 1106, 1144, 1184, 1237, 1305, 1392, 1518, 1739, 1752, 1484, 1368, 1283, 1226, 1185, 1141, 1119, 1105, 1125, 1151, 1196, 1245, 1311, 1396, 1536, 1782, 1780, 1502, 1375, 1294, 1232, 1184, 1154, 1133, 1118, 1128, 1152, 1201, 1245, 1316, 1412, 1541, 1827, 1834, 1522, 1376, 1286, 1226, 1180, 1152, 1135, 1122, 1132, 1159, 1190, 1247, 1313, 1414, 1555, 1880, 1923, 1553, 1381, 1288, 1232, 1182, 1147, 1128, 1125, 1133, 1160, 1188, 1240, 1310, 1414, 1597, 1995, 2051, 1596, 1400, 1308, 1220, 1182, 1151, 1128, 1130, 1135, 1161, 1194, 1247, 1318, 1425, 1644, 2082]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2015, 1599, 1406, 1313, 1238, 1200, 1173, 1153, 1157, 1160, 1176, 1212, 1255, 1323, 1424, 1623, 2069, 1898, 1532, 1393, 1296, 1237, 1201, 1164, 1153, 1150, 1156, 1175, 1212, 1258, 1328, 1415, 1567, 1932, 1757, 1499, 1370, 1284, 1229, 1184, 1156, 1142, 1130, 1145, 1169, 1198, 1248, 1310, 1396, 1525, 1834, 1674, 1452, 1345, 1264, 1205, 1161, 1135, 1116, 1108, 1116, 1148, 1174, 1224, 1285, 1374, 1488, 1725, 1617, 1415, 1321, 1242, 1177, 1139, 1106, 1083, 1079, 1083, 1118, 1154, 1208, 1262, 1335, 1454, 1680, 1553, 1376, 1281, 1216, 1159, 1120, 1079, 1047, 1041, 1063, 1090, 1129, 1175, 1235, 1307, 1423, 1610, 1515, 1359, 1268, 1202, 1147, 1098, 1059, 1027, 1016, 1035, 1065, 1110, 1166, 1217, 1293, 1389, 1576, 1518, 1366, 1263, 1202, 1132, 1091, 1055, 1019, 1010, 1023, 1063, 1110, 1160, 1224, 1300, 1387, 1585, 1534, 1374, 1282, 1211, 1152, 1104, 1067, 1037, 1024, 1035, 1081, 1121, 1175, 1237, 1316, 1405, 1596, 1558, 1397, 1305, 1239, 1183, 1131, 1095, 1053, 1041, 1066, 1095, 1149, 1196, 1254, 1331, 1440, 1614, 1605, 1426, 1328, 1258, 1193, 1146, 1111, 1078, 1068, 1083, 1131, 1171, 1221, 1286, 1370, 1477, 1673, 1625, 1468, 1357, 1274, 1209, 1176, 1136, 1100, 1101, 1106, 1148, 1186, 1242, 1303, 1377, 1492, 1696, 1689, 1460, 1353, 1282, 1226, 1184, 1148, 1120, 1118, 1123, 1151, 1197, 1245, 1303, 1393, 1515, 1748, 1699, 1476, 1369, 1281, 1213, 1171, 1151, 1128, 1117, 1125, 1154, 1188, 1243, 1307, 1395, 1520, 1770, 1766, 1462, 1355, 1263, 1210, 1160, 1143, 1117, 1112, 1126, 1146, 1177, 1225, 1293, 1386, 1512, 1814, 1813, 1492, 1351, 1261, 1199, 1155, 1138, 1114, 1109, 1111, 1138, 1172, 1210, 1287, 1372, 1546, 1921, 1940, 1533, 1362, 1259, 1191, 1146, 1132, 1111, 1102, 1120, 1132, 1167, 1218, 1290, 1395, 1592, 2029]
                                       }
                                   }, {
                                       "name":    "2688x1520_D75_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3099, 2235, 1890, 1672, 1519, 1426, 1367, 1336, 1321, 1336, 1384, 1426, 1550, 1697, 1905, 2279, 3059, 2703, 2094, 1774, 1603, 1453, 1359, 1313, 1270, 1256, 1270, 1306, 1375, 1462, 1603, 1802, 2094, 2735, 2554, 1953, 1697, 1529, 1392, 1306, 1250, 1204, 1198, 1217, 1250, 1321, 1417, 1539, 1709, 1987, 2583, 2372, 1860, 1626, 1444, 1336, 1250, 1198, 1151, 1151, 1162, 1204, 1256, 1351, 1471, 1637, 1875, 2348, 2193, 1788, 1560, 1409, 1306, 1211, 1156, 1112, 1096, 1118, 1151, 1223, 1306, 1417, 1581, 1816, 2235, 2057, 1722, 1509, 1359, 1256, 1180, 1107, 1071, 1047, 1071, 1118, 1180, 1263, 1384, 1529, 1735, 2133, 2021, 1697, 1481, 1336, 1236, 1139, 1086, 1038, 1029, 1042, 1086, 1156, 1236, 1351, 1500, 1709, 2094, 2004, 1672, 1471, 1328, 1223, 1139, 1066, 1033, 1020, 1029, 1076, 1156, 1243, 1359, 1500, 1722, 2039, 2039, 1697, 1500, 1367, 1236, 1151, 1081, 1038, 1024, 1042, 1086, 1156, 1263, 1367, 1519, 1761, 2094, 2075, 1709, 1529, 1384, 1263, 1180, 1112, 1057, 1042, 1066, 1118, 1192, 1277, 1409, 1550, 1774, 2113, 2152, 1761, 1550, 1409, 1299, 1198, 1139, 1091, 1081, 1091, 1139, 1211, 1299, 1426, 1581, 1802, 2214, 2193, 1802, 1571, 1435, 1313, 1223, 1162, 1123, 1102, 1134, 1174, 1243, 1328, 1453, 1603, 1875, 2235, 2301, 1830, 1592, 1462, 1328, 1250, 1186, 1145, 1128, 1145, 1198, 1256, 1359, 1462, 1649, 1860, 2324, 2396, 1860, 1660, 1481, 1351, 1277, 1211, 1168, 1151, 1168, 1217, 1277, 1367, 1490, 1672, 1921, 2372, 2447, 1937, 1684, 1500, 1375, 1299, 1243, 1198, 1186, 1204, 1243, 1321, 1400, 1529, 1697, 2004, 2527, 2672, 2039, 1748, 1560, 1435, 1336, 1270, 1243, 1230, 1243, 1291, 1351, 1444, 1571, 1761, 2075, 2735, 2906, 2214, 1860, 1626, 1490, 1384, 1336, 1313, 1291, 1306, 1336, 1426, 1509, 1637, 1845, 2214, 3019]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3029, 2199, 1826, 1637, 1501, 1405, 1356, 1314, 1317, 1324, 1371, 1425, 1528, 1659, 1853, 2228, 3029, 2691, 2032, 1750, 1561, 1441, 1356, 1304, 1268, 1261, 1271, 1311, 1363, 1454, 1581, 1769, 2065, 2720, 2444, 1902, 1659, 1492, 1390, 1300, 1249, 1210, 1202, 1219, 1261, 1311, 1397, 1515, 1686, 1953, 2480, 2248, 1820, 1586, 1429, 1324, 1252, 1193, 1163, 1144, 1168, 1202, 1258, 1342, 1458, 1606, 1853, 2268, 2134, 1732, 1515, 1378, 1281, 1199, 1144, 1104, 1097, 1117, 1152, 1216, 1294, 1397, 1547, 1756, 2153, 2015, 1669, 1483, 1338, 1237, 1160, 1100, 1065, 1049, 1067, 1107, 1168, 1249, 1349, 1492, 1703, 2040, 1946, 1627, 1437, 1311, 1216, 1137, 1074, 1032, 1024, 1043, 1083, 1142, 1228, 1331, 1471, 1664, 1984, 1946, 1632, 1445, 1307, 1210, 1134, 1074, 1030, 1016, 1032, 1086, 1144, 1228, 1335, 1466, 1675, 1992, 1961, 1642, 1462, 1328, 1216, 1147, 1086, 1037, 1024, 1041, 1088, 1147, 1243, 1360, 1479, 1692, 1999, 2007, 1681, 1483, 1345, 1252, 1163, 1109, 1060, 1047, 1065, 1112, 1182, 1258, 1371, 1506, 1715, 2056, 2056, 1715, 1528, 1382, 1277, 1199, 1129, 1086, 1069, 1095, 1142, 1207, 1287, 1397, 1542, 1781, 2108, 2117, 1763, 1547, 1405, 1307, 1225, 1163, 1124, 1107, 1124, 1163, 1234, 1321, 1429, 1571, 1807, 2162, 2209, 1794, 1576, 1421, 1321, 1246, 1193, 1144, 1132, 1147, 1193, 1258, 1335, 1449, 1601, 1839, 2228, 2279, 1826, 1606, 1445, 1342, 1261, 1202, 1171, 1166, 1168, 1216, 1281, 1353, 1471, 1642, 1867, 2299, 2420, 1888, 1642, 1479, 1356, 1287, 1234, 1204, 1187, 1204, 1243, 1300, 1375, 1497, 1675, 1931, 2492, 2608, 1976, 1703, 1519, 1397, 1311, 1261, 1234, 1228, 1231, 1268, 1324, 1417, 1547, 1721, 2032, 2662, 2874, 2117, 1769, 1581, 1441, 1356, 1304, 1268, 1258, 1271, 1304, 1371, 1462, 1596, 1787, 2143, 2976]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3029, 2222, 1851, 1647, 1515, 1418, 1354, 1318, 1315, 1318, 1368, 1434, 1542, 1663, 1857, 2262, 3029, 2736, 2060, 1755, 1576, 1450, 1364, 1302, 1279, 1263, 1282, 1318, 1375, 1467, 1590, 1779, 2077, 2751, 2459, 1928, 1669, 1501, 1391, 1308, 1250, 1215, 1215, 1223, 1260, 1322, 1410, 1533, 1702, 1973, 2495, 2292, 1818, 1590, 1450, 1329, 1250, 1192, 1167, 1149, 1173, 1206, 1263, 1346, 1454, 1616, 1864, 2303, 2121, 1737, 1533, 1394, 1279, 1203, 1154, 1114, 1097, 1116, 1159, 1220, 1298, 1402, 1571, 1779, 2147, 2028, 1674, 1484, 1343, 1247, 1162, 1104, 1067, 1056, 1069, 1114, 1175, 1260, 1364, 1510, 1702, 2060, 1973, 1631, 1458, 1315, 1209, 1139, 1078, 1041, 1026, 1045, 1094, 1151, 1232, 1339, 1475, 1680, 2012, 1935, 1642, 1446, 1315, 1212, 1139, 1076, 1032, 1014, 1039, 1081, 1149, 1235, 1336, 1479, 1674, 2004, 1957, 1658, 1458, 1332, 1232, 1144, 1083, 1041, 1024, 1041, 1097, 1162, 1247, 1354, 1488, 1696, 2020, 2020, 1685, 1497, 1357, 1257, 1175, 1109, 1060, 1047, 1071, 1121, 1186, 1272, 1383, 1515, 1737, 2044, 2060, 1737, 1533, 1387, 1288, 1203, 1139, 1102, 1083, 1104, 1149, 1212, 1302, 1406, 1556, 1779, 2103, 2129, 1761, 1556, 1410, 1295, 1226, 1165, 1126, 1109, 1131, 1175, 1235, 1325, 1438, 1590, 1818, 2184, 2232, 1805, 1576, 1434, 1322, 1247, 1189, 1154, 1144, 1151, 1195, 1263, 1346, 1458, 1605, 1851, 2252, 2292, 1837, 1605, 1458, 1346, 1269, 1212, 1170, 1162, 1175, 1223, 1285, 1361, 1471, 1647, 1885, 2356, 2423, 1885, 1663, 1488, 1368, 1292, 1241, 1197, 1192, 1203, 1238, 1295, 1391, 1510, 1674, 1942, 2471, 2597, 1988, 1714, 1519, 1406, 1315, 1266, 1235, 1223, 1244, 1276, 1339, 1422, 1542, 1731, 2028, 2693, 2892, 2121, 1767, 1595, 1454, 1361, 1305, 1279, 1263, 1272, 1315, 1375, 1467, 1605, 1792, 2194, 2942]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2867, 2091, 1792, 1601, 1476, 1400, 1332, 1309, 1303, 1309, 1344, 1407, 1490, 1636, 1814, 2150, 2895, 2530, 1981, 1701, 1536, 1434, 1356, 1292, 1260, 1249, 1265, 1303, 1350, 1440, 1560, 1740, 2021, 2618, 2334, 1870, 1636, 1476, 1368, 1292, 1244, 1214, 1199, 1214, 1244, 1315, 1394, 1513, 1663, 1918, 2408, 2135, 1771, 1568, 1427, 1320, 1244, 1181, 1158, 1145, 1162, 1204, 1254, 1338, 1447, 1593, 1803, 2247, 2048, 1691, 1505, 1362, 1270, 1195, 1149, 1111, 1091, 1115, 1149, 1204, 1287, 1394, 1544, 1730, 2105, 1930, 1636, 1454, 1332, 1229, 1158, 1091, 1056, 1045, 1068, 1099, 1167, 1239, 1344, 1476, 1673, 2007, 1882, 1593, 1427, 1309, 1204, 1132, 1071, 1031, 1017, 1035, 1071, 1145, 1219, 1326, 1447, 1645, 1905, 1847, 1585, 1434, 1287, 1209, 1123, 1068, 1017, 1007, 1031, 1071, 1145, 1219, 1320, 1440, 1627, 1942, 1905, 1610, 1440, 1309, 1224, 1136, 1083, 1038, 1024, 1042, 1087, 1158, 1244, 1344, 1461, 1663, 1955, 1942, 1654, 1469, 1344, 1239, 1171, 1103, 1068, 1053, 1064, 1107, 1176, 1276, 1368, 1490, 1701, 1994, 1994, 1691, 1498, 1368, 1276, 1199, 1128, 1091, 1079, 1099, 1149, 1204, 1292, 1387, 1536, 1730, 2034, 2034, 1740, 1528, 1387, 1303, 1219, 1162, 1123, 1119, 1132, 1176, 1239, 1320, 1427, 1568, 1761, 2120, 2120, 1750, 1560, 1413, 1320, 1249, 1185, 1153, 1128, 1149, 1195, 1249, 1338, 1454, 1593, 1803, 2197, 2166, 1792, 1576, 1440, 1326, 1260, 1214, 1167, 1149, 1176, 1209, 1260, 1356, 1469, 1619, 1836, 2247, 2334, 1825, 1610, 1461, 1338, 1270, 1209, 1190, 1171, 1195, 1229, 1281, 1356, 1476, 1663, 1870, 2389, 2448, 1893, 1645, 1490, 1368, 1287, 1239, 1209, 1204, 1219, 1254, 1309, 1387, 1513, 1682, 1955, 2551, 2688, 2021, 1711, 1552, 1407, 1338, 1270, 1254, 1234, 1239, 1276, 1338, 1434, 1568, 1761, 2076, 2814]
                                       }
                                   }, {
                                       "name":    "2688x1520_D75_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2170, 1669, 1481, 1362, 1277, 1228, 1197, 1182, 1172, 1182, 1211, 1228, 1302, 1382, 1493, 1702, 2141, 1967, 1614, 1433, 1345, 1257, 1204, 1183, 1156, 1147, 1156, 1176, 1218, 1265, 1345, 1455, 1614, 1990, 1913, 1546, 1405, 1315, 1234, 1185, 1154, 1123, 1121, 1135, 1154, 1199, 1257, 1324, 1416, 1572, 1934, 1818, 1504, 1375, 1268, 1209, 1158, 1129, 1095, 1099, 1106, 1135, 1164, 1223, 1292, 1385, 1516, 1799, 1712, 1472, 1343, 1259, 1202, 1141, 1108, 1076, 1065, 1081, 1103, 1153, 1202, 1266, 1361, 1495, 1745, 1629, 1437, 1317, 1231, 1172, 1127, 1074, 1050, 1030, 1050, 1085, 1127, 1179, 1253, 1334, 1448, 1689, 1616, 1430, 1304, 1221, 1164, 1098, 1064, 1027, 1021, 1031, 1064, 1114, 1164, 1235, 1321, 1440, 1675, 1612, 1417, 1303, 1221, 1158, 1104, 1050, 1028, 1018, 1023, 1060, 1121, 1177, 1249, 1328, 1459, 1640, 1644, 1441, 1331, 1259, 1173, 1117, 1067, 1034, 1024, 1039, 1072, 1123, 1198, 1259, 1348, 1495, 1688, 1670, 1449, 1355, 1272, 1196, 1143, 1096, 1051, 1040, 1061, 1101, 1155, 1209, 1295, 1373, 1504, 1700, 1721, 1484, 1365, 1287, 1223, 1155, 1116, 1080, 1073, 1080, 1116, 1167, 1223, 1303, 1393, 1518, 1770, 1736, 1504, 1370, 1299, 1225, 1168, 1128, 1101, 1084, 1112, 1140, 1187, 1239, 1315, 1399, 1564, 1770, 1797, 1507, 1371, 1306, 1223, 1178, 1136, 1108, 1096, 1108, 1148, 1184, 1252, 1306, 1419, 1531, 1815, 1837, 1504, 1405, 1300, 1223, 1184, 1141, 1112, 1099, 1112, 1147, 1184, 1238, 1309, 1415, 1554, 1818, 1832, 1533, 1395, 1290, 1220, 1179, 1147, 1117, 1109, 1123, 1147, 1199, 1242, 1315, 1405, 1586, 1892, 1944, 1571, 1411, 1309, 1241, 1183, 1144, 1131, 1123, 1131, 1163, 1197, 1249, 1317, 1422, 1599, 1990, 2034, 1653, 1457, 1324, 1252, 1191, 1170, 1162, 1146, 1155, 1170, 1228, 1269, 1334, 1445, 1653, 2113]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2120, 1642, 1431, 1334, 1262, 1210, 1187, 1162, 1169, 1171, 1200, 1227, 1284, 1351, 1452, 1664, 2120, 1958, 1566, 1413, 1310, 1247, 1201, 1174, 1154, 1152, 1156, 1180, 1208, 1257, 1326, 1428, 1591, 1979, 1830, 1505, 1374, 1283, 1232, 1180, 1153, 1128, 1124, 1136, 1164, 1190, 1239, 1303, 1397, 1545, 1857, 1723, 1472, 1342, 1255, 1199, 1160, 1124, 1107, 1093, 1112, 1132, 1166, 1215, 1280, 1359, 1499, 1739, 1666, 1426, 1304, 1231, 1179, 1130, 1097, 1069, 1065, 1081, 1104, 1146, 1191, 1248, 1332, 1446, 1680, 1596, 1393, 1294, 1212, 1154, 1108, 1067, 1044, 1032, 1046, 1074, 1115, 1165, 1221, 1302, 1421, 1615, 1556, 1371, 1266, 1198, 1145, 1095, 1052, 1021, 1016, 1032, 1061, 1100, 1156, 1217, 1295, 1402, 1586, 1565, 1383, 1280, 1201, 1146, 1099, 1058, 1025, 1014, 1027, 1069, 1109, 1163, 1227, 1299, 1420, 1602, 1581, 1395, 1297, 1222, 1154, 1114, 1071, 1033, 1024, 1037, 1074, 1114, 1179, 1252, 1313, 1437, 1612, 1615, 1424, 1314, 1236, 1186, 1127, 1093, 1055, 1045, 1060, 1095, 1145, 1192, 1260, 1334, 1453, 1654, 1645, 1445, 1346, 1263, 1203, 1155, 1106, 1074, 1062, 1083, 1119, 1163, 1212, 1277, 1358, 1501, 1686, 1676, 1471, 1350, 1272, 1219, 1169, 1129, 1102, 1089, 1102, 1129, 1178, 1232, 1294, 1371, 1508, 1712, 1724, 1477, 1357, 1270, 1216, 1174, 1143, 1107, 1099, 1110, 1143, 1186, 1229, 1295, 1378, 1514, 1740, 1746, 1477, 1359, 1269, 1215, 1169, 1132, 1114, 1113, 1112, 1146, 1187, 1224, 1292, 1390, 1510, 1762, 1813, 1494, 1360, 1272, 1203, 1168, 1139, 1123, 1111, 1123, 1147, 1180, 1219, 1287, 1387, 1528, 1866, 1897, 1523, 1375, 1274, 1209, 1161, 1136, 1123, 1121, 1120, 1142, 1173, 1226, 1298, 1389, 1566, 1937, 2012, 1580, 1386, 1288, 1211, 1167, 1141, 1121, 1117, 1124, 1141, 1180, 1229, 1300, 1400, 1601, 2083]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2121, 1659, 1450, 1342, 1273, 1220, 1185, 1166, 1167, 1166, 1198, 1234, 1296, 1355, 1455, 1689, 2121, 1991, 1588, 1417, 1322, 1254, 1209, 1172, 1163, 1153, 1166, 1188, 1218, 1269, 1334, 1437, 1601, 2002, 1841, 1525, 1382, 1291, 1233, 1188, 1154, 1132, 1136, 1141, 1163, 1200, 1250, 1318, 1410, 1561, 1868, 1757, 1470, 1346, 1274, 1203, 1159, 1123, 1111, 1097, 1116, 1136, 1170, 1219, 1277, 1367, 1508, 1765, 1655, 1430, 1320, 1246, 1177, 1134, 1106, 1078, 1065, 1080, 1111, 1150, 1195, 1253, 1352, 1465, 1676, 1605, 1397, 1294, 1216, 1164, 1109, 1072, 1046, 1038, 1048, 1081, 1122, 1175, 1235, 1317, 1420, 1631, 1578, 1374, 1284, 1202, 1138, 1097, 1056, 1030, 1019, 1034, 1072, 1110, 1160, 1224, 1299, 1415, 1609, 1557, 1391, 1281, 1209, 1147, 1103, 1060, 1027, 1012, 1033, 1064, 1113, 1170, 1228, 1310, 1419, 1612, 1578, 1408, 1294, 1227, 1169, 1110, 1069, 1037, 1024, 1037, 1083, 1128, 1183, 1246, 1321, 1441, 1628, 1625, 1428, 1326, 1247, 1190, 1139, 1092, 1055, 1045, 1066, 1104, 1150, 1205, 1271, 1342, 1472, 1644, 1648, 1464, 1350, 1267, 1213, 1159, 1115, 1090, 1075, 1092, 1125, 1168, 1226, 1285, 1371, 1499, 1682, 1686, 1470, 1358, 1276, 1208, 1171, 1130, 1104, 1091, 1109, 1141, 1179, 1236, 1302, 1387, 1517, 1729, 1743, 1486, 1356, 1281, 1217, 1176, 1139, 1117, 1110, 1114, 1145, 1190, 1240, 1303, 1382, 1523, 1758, 1757, 1486, 1358, 1281, 1219, 1176, 1142, 1113, 1109, 1119, 1153, 1191, 1232, 1292, 1393, 1524, 1806, 1815, 1491, 1377, 1280, 1213, 1173, 1146, 1116, 1115, 1122, 1143, 1176, 1233, 1299, 1387, 1537, 1850, 1889, 1532, 1383, 1274, 1216, 1165, 1140, 1124, 1117, 1132, 1149, 1186, 1230, 1294, 1398, 1563, 1959, 2024, 1583, 1385, 1300, 1222, 1171, 1143, 1131, 1121, 1125, 1151, 1184, 1233, 1308, 1404, 1638, 2059]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2007, 1561, 1404, 1305, 1240, 1205, 1166, 1158, 1157, 1158, 1177, 1211, 1253, 1333, 1421, 1606, 2026, 1841, 1526, 1373, 1288, 1240, 1201, 1164, 1146, 1140, 1151, 1174, 1196, 1246, 1308, 1405, 1557, 1905, 1748, 1480, 1355, 1269, 1213, 1173, 1148, 1132, 1122, 1132, 1148, 1193, 1236, 1301, 1378, 1517, 1804, 1636, 1432, 1327, 1253, 1195, 1153, 1112, 1102, 1093, 1106, 1135, 1162, 1211, 1271, 1348, 1458, 1722, 1599, 1392, 1296, 1217, 1170, 1126, 1101, 1075, 1059, 1079, 1101, 1135, 1185, 1245, 1329, 1424, 1644, 1528, 1365, 1269, 1206, 1146, 1106, 1059, 1036, 1028, 1047, 1067, 1114, 1156, 1217, 1287, 1396, 1589, 1505, 1342, 1257, 1196, 1134, 1091, 1050, 1020, 1010, 1024, 1050, 1103, 1148, 1212, 1275, 1386, 1524, 1486, 1343, 1270, 1182, 1145, 1089, 1052, 1012, 1005, 1026, 1055, 1109, 1154, 1214, 1276, 1379, 1563, 1536, 1367, 1278, 1205, 1161, 1103, 1069, 1035, 1024, 1038, 1073, 1124, 1180, 1237, 1297, 1412, 1576, 1563, 1402, 1301, 1235, 1173, 1135, 1086, 1062, 1051, 1058, 1090, 1140, 1208, 1258, 1320, 1442, 1604, 1594, 1425, 1319, 1251, 1201, 1156, 1105, 1079, 1071, 1087, 1126, 1161, 1217, 1268, 1353, 1458, 1627, 1611, 1452, 1333, 1256, 1216, 1164, 1128, 1101, 1101, 1109, 1142, 1183, 1232, 1292, 1368, 1469, 1679, 1655, 1441, 1343, 1263, 1216, 1177, 1136, 1116, 1095, 1112, 1145, 1177, 1232, 1299, 1371, 1484, 1716, 1660, 1449, 1334, 1265, 1201, 1167, 1144, 1110, 1097, 1119, 1139, 1167, 1228, 1290, 1369, 1485, 1722, 1748, 1444, 1333, 1257, 1186, 1153, 1116, 1109, 1096, 1114, 1134, 1163, 1202, 1269, 1378, 1480, 1789, 1781, 1459, 1328, 1250, 1184, 1140, 1116, 1100, 1099, 1109, 1130, 1159, 1200, 1269, 1358, 1507, 1857, 1882, 1509, 1340, 1264, 1182, 1152, 1112, 1109, 1095, 1096, 1117, 1152, 1205, 1277, 1379, 1550, 1970]
                                       }
                                   }, {
                                       "name":    "2688x1520_CWF_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3015, 2200, 1834, 1627, 1492, 1386, 1339, 1295, 1283, 1287, 1339, 1395, 1502, 1645, 1858, 2234, 3015, 2711, 2043, 1745, 1556, 1423, 1339, 1283, 1242, 1225, 1242, 1268, 1347, 1432, 1568, 1760, 2063, 2763, 2463, 1933, 1664, 1507, 1373, 1295, 1228, 1194, 1184, 1201, 1235, 1302, 1391, 1513, 1691, 1987, 2506, 2318, 1842, 1615, 1461, 1331, 1246, 1184, 1156, 1137, 1162, 1198, 1264, 1356, 1461, 1639, 1883, 2356, 2234, 1796, 1579, 1423, 1306, 1218, 1153, 1120, 1111, 1123, 1171, 1228, 1314, 1432, 1585, 1834, 2257, 2134, 1731, 1540, 1391, 1283, 1194, 1134, 1089, 1075, 1094, 1144, 1208, 1291, 1409, 1568, 1789, 2177, 2073, 1731, 1518, 1364, 1264, 1178, 1103, 1070, 1051, 1067, 1117, 1184, 1275, 1382, 1529, 1760, 2103, 2053, 1697, 1502, 1360, 1250, 1159, 1089, 1054, 1031, 1059, 1105, 1175, 1261, 1373, 1529, 1745, 2093, 2034, 1691, 1492, 1356, 1246, 1159, 1089, 1044, 1024, 1051, 1100, 1168, 1257, 1373, 1507, 1738, 2083, 2043, 1704, 1502, 1360, 1246, 1156, 1097, 1049, 1034, 1049, 1100, 1171, 1261, 1373, 1513, 1752, 2113, 2083, 1724, 1518, 1373, 1257, 1162, 1103, 1057, 1051, 1067, 1117, 1181, 1275, 1382, 1534, 1745, 2124, 2145, 1745, 1540, 1386, 1275, 1194, 1132, 1086, 1075, 1086, 1137, 1198, 1279, 1400, 1556, 1781, 2177, 2245, 1789, 1573, 1413, 1306, 1214, 1156, 1126, 1105, 1123, 1171, 1228, 1314, 1423, 1579, 1834, 2269, 2330, 1858, 1609, 1456, 1339, 1257, 1191, 1159, 1150, 1156, 1204, 1272, 1347, 1471, 1652, 1916, 2382, 2506, 1951, 1684, 1513, 1386, 1299, 1242, 1204, 1194, 1204, 1246, 1302, 1400, 1518, 1704, 1987, 2581, 2711, 2083, 1767, 1568, 1442, 1347, 1291, 1264, 1242, 1261, 1295, 1364, 1461, 1585, 1781, 2103, 2818, 3079, 2257, 1850, 1664, 1518, 1409, 1356, 1322, 1299, 1314, 1369, 1413, 1518, 1664, 1908, 2293, 3170]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2956, 2150, 1781, 1606, 1461, 1374, 1323, 1290, 1261, 1292, 1334, 1388, 1481, 1619, 1819, 2204, 2978, 2654, 1991, 1707, 1527, 1403, 1332, 1269, 1248, 1231, 1239, 1279, 1338, 1429, 1557, 1742, 2032, 2663, 2438, 1880, 1643, 1478, 1362, 1283, 1229, 1193, 1188, 1202, 1235, 1294, 1383, 1503, 1667, 1927, 2477, 2268, 1810, 1592, 1434, 1327, 1246, 1195, 1161, 1146, 1163, 1204, 1261, 1343, 1456, 1619, 1871, 2302, 2161, 1769, 1551, 1403, 1298, 1215, 1156, 1124, 1113, 1131, 1173, 1223, 1311, 1424, 1580, 1802, 2223, 2081, 1719, 1518, 1374, 1275, 1191, 1129, 1094, 1078, 1096, 1137, 1199, 1283, 1401, 1542, 1765, 2115, 2001, 1682, 1475, 1350, 1250, 1166, 1110, 1067, 1054, 1070, 1121, 1182, 1269, 1371, 1518, 1719, 2075, 1975, 1657, 1469, 1329, 1235, 1153, 1090, 1049, 1038, 1053, 1097, 1165, 1248, 1359, 1498, 1707, 2032, 1980, 1650, 1464, 1325, 1227, 1146, 1082, 1039, 1024, 1045, 1096, 1163, 1244, 1350, 1492, 1700, 2027, 1996, 1657, 1467, 1329, 1235, 1146, 1088, 1050, 1028, 1053, 1097, 1161, 1248, 1350, 1498, 1700, 2043, 2021, 1667, 1472, 1343, 1241, 1161, 1101, 1066, 1046, 1063, 1113, 1177, 1259, 1369, 1518, 1722, 2053, 2070, 1715, 1501, 1371, 1261, 1182, 1129, 1085, 1076, 1094, 1134, 1195, 1279, 1396, 1539, 1757, 2132, 2155, 1753, 1542, 1396, 1290, 1214, 1161, 1121, 1104, 1126, 1168, 1225, 1309, 1416, 1564, 1806, 2210, 2288, 1832, 1606, 1440, 1329, 1252, 1191, 1159, 1149, 1163, 1202, 1263, 1348, 1464, 1632, 1871, 2336, 2461, 1908, 1650, 1489, 1376, 1296, 1241, 1204, 1193, 1208, 1254, 1311, 1388, 1515, 1696, 1961, 2525, 2709, 2037, 1742, 1564, 1432, 1341, 1294, 1257, 1239, 1261, 1294, 1357, 1448, 1573, 1769, 2092, 2757, 3001, 2217, 1815, 1619, 1478, 1388, 1345, 1300, 1290, 1309, 1352, 1401, 1512, 1643, 1853, 2249, 3072]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2956, 2132, 1777, 1589, 1461, 1367, 1320, 1279, 1275, 1285, 1311, 1391, 1478, 1612, 1810, 2186, 2978, 2672, 1991, 1711, 1530, 1401, 1323, 1265, 1237, 1223, 1237, 1277, 1336, 1426, 1545, 1734, 2032, 2691, 2408, 1885, 1632, 1472, 1357, 1277, 1221, 1193, 1182, 1195, 1233, 1285, 1379, 1495, 1671, 1936, 2469, 2249, 1810, 1586, 1432, 1325, 1244, 1188, 1158, 1147, 1159, 1199, 1261, 1341, 1450, 1616, 1853, 2315, 2161, 1757, 1542, 1396, 1290, 1217, 1161, 1118, 1105, 1129, 1168, 1235, 1307, 1421, 1583, 1794, 2210, 2075, 1711, 1509, 1371, 1267, 1189, 1128, 1088, 1075, 1094, 1136, 1200, 1292, 1396, 1542, 1753, 2098, 2011, 1682, 1483, 1345, 1248, 1165, 1102, 1067, 1053, 1070, 1113, 1179, 1259, 1367, 1512, 1722, 2075, 1985, 1657, 1464, 1334, 1233, 1153, 1093, 1046, 1032, 1054, 1096, 1166, 1248, 1352, 1501, 1707, 2032, 1991, 1653, 1458, 1325, 1227, 1149, 1084, 1039, 1024, 1046, 1093, 1158, 1244, 1352, 1492, 1696, 2021, 1991, 1643, 1458, 1332, 1227, 1149, 1088, 1047, 1029, 1043, 1097, 1163, 1241, 1350, 1489, 1704, 2016, 1996, 1671, 1481, 1341, 1241, 1163, 1099, 1059, 1047, 1066, 1112, 1175, 1263, 1357, 1509, 1726, 2070, 2070, 1704, 1509, 1357, 1254, 1186, 1124, 1084, 1069, 1091, 1131, 1197, 1279, 1386, 1539, 1746, 2115, 2180, 1750, 1542, 1396, 1294, 1212, 1154, 1121, 1107, 1121, 1163, 1229, 1314, 1429, 1573, 1806, 2217, 2282, 1819, 1596, 1440, 1325, 1250, 1199, 1163, 1149, 1159, 1200, 1259, 1348, 1461, 1626, 1867, 2329, 2446, 1894, 1664, 1492, 1371, 1292, 1237, 1200, 1186, 1206, 1244, 1305, 1383, 1512, 1693, 1946, 2477, 2709, 2032, 1730, 1557, 1424, 1341, 1285, 1250, 1235, 1250, 1285, 1348, 1434, 1564, 1761, 2070, 2757, 2978, 2192, 1823, 1626, 1478, 1388, 1341, 1303, 1288, 1314, 1332, 1416, 1501, 1643, 1840, 2242, 3048]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2813, 2116, 1766, 1571, 1430, 1354, 1313, 1255, 1249, 1267, 1306, 1362, 1438, 1580, 1766, 2133, 2876, 2535, 1954, 1695, 1515, 1399, 1299, 1261, 1219, 1225, 1231, 1267, 1326, 1430, 1542, 1730, 1969, 2639, 2327, 1855, 1641, 1480, 1369, 1280, 1231, 1202, 1191, 1202, 1249, 1306, 1391, 1488, 1662, 1896, 2462, 2226, 1803, 1600, 1446, 1320, 1255, 1202, 1174, 1153, 1169, 1219, 1274, 1354, 1480, 1631, 1855, 2286, 2098, 1753, 1561, 1430, 1306, 1231, 1174, 1133, 1133, 1148, 1196, 1249, 1333, 1438, 1600, 1803, 2188, 2016, 1718, 1515, 1376, 1280, 1208, 1138, 1103, 1085, 1099, 1153, 1219, 1299, 1407, 1561, 1753, 2116, 1969, 1673, 1497, 1354, 1249, 1169, 1118, 1071, 1045, 1071, 1118, 1191, 1267, 1376, 1515, 1684, 2048, 1925, 1652, 1471, 1320, 1231, 1153, 1094, 1041, 1032, 1062, 1108, 1169, 1249, 1354, 1497, 1695, 2000, 1925, 1641, 1455, 1326, 1219, 1143, 1089, 1036, 1024, 1045, 1094, 1153, 1243, 1354, 1497, 1673, 2000, 1925, 1641, 1446, 1320, 1225, 1153, 1089, 1049, 1032, 1049, 1094, 1169, 1255, 1340, 1480, 1684, 2000, 1939, 1662, 1463, 1340, 1249, 1158, 1099, 1058, 1041, 1062, 1113, 1174, 1261, 1376, 1488, 1718, 2032, 2000, 1695, 1515, 1362, 1255, 1196, 1123, 1089, 1080, 1099, 1138, 1196, 1293, 1399, 1533, 1730, 2116, 2116, 1741, 1552, 1407, 1299, 1225, 1158, 1133, 1113, 1133, 1174, 1249, 1320, 1422, 1590, 1790, 2188, 2246, 1829, 1590, 1455, 1340, 1261, 1196, 1164, 1153, 1169, 1219, 1267, 1369, 1480, 1641, 1869, 2327, 2415, 1896, 1652, 1480, 1376, 1286, 1231, 1213, 1196, 1213, 1249, 1306, 1399, 1515, 1684, 1939, 2485, 2639, 2000, 1718, 1542, 1422, 1326, 1280, 1237, 1231, 1255, 1286, 1333, 1446, 1571, 1718, 2032, 2695, 2876, 2133, 1803, 1600, 1471, 1362, 1313, 1293, 1274, 1299, 1347, 1407, 1488, 1631, 1842, 2169, 3012]
                                       }
                                   }, {
                                       "name":    "2688x1520_CWF_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2110, 1642, 1437, 1325, 1254, 1193, 1172, 1145, 1139, 1138, 1172, 1201, 1262, 1340, 1456, 1668, 2110, 1973, 1575, 1409, 1305, 1231, 1186, 1156, 1130, 1118, 1130, 1142, 1193, 1239, 1315, 1421, 1590, 2011, 1845, 1530, 1379, 1296, 1217, 1175, 1134, 1113, 1108, 1120, 1140, 1182, 1233, 1301, 1400, 1572, 1877, 1776, 1490, 1366, 1284, 1205, 1155, 1116, 1100, 1086, 1106, 1128, 1172, 1227, 1284, 1387, 1523, 1805, 1744, 1479, 1359, 1271, 1203, 1148, 1104, 1084, 1079, 1086, 1122, 1158, 1210, 1280, 1364, 1510, 1762, 1690, 1445, 1343, 1259, 1197, 1140, 1101, 1067, 1057, 1073, 1110, 1153, 1204, 1275, 1368, 1493, 1724, 1658, 1459, 1337, 1247, 1190, 1135, 1080, 1058, 1044, 1056, 1094, 1141, 1201, 1263, 1346, 1483, 1682, 1652, 1438, 1331, 1250, 1183, 1123, 1072, 1049, 1029, 1054, 1089, 1138, 1194, 1262, 1354, 1479, 1684, 1639, 1436, 1324, 1248, 1182, 1125, 1074, 1040, 1024, 1048, 1085, 1134, 1192, 1264, 1338, 1476, 1679, 1644, 1444, 1331, 1250, 1180, 1120, 1081, 1044, 1032, 1044, 1083, 1135, 1194, 1262, 1340, 1485, 1700, 1666, 1453, 1337, 1255, 1184, 1120, 1080, 1045, 1044, 1056, 1094, 1138, 1201, 1263, 1351, 1471, 1698, 1698, 1457, 1343, 1255, 1190, 1140, 1098, 1065, 1057, 1065, 1104, 1143, 1193, 1267, 1358, 1487, 1724, 1753, 1473, 1354, 1263, 1203, 1144, 1107, 1089, 1073, 1086, 1122, 1158, 1210, 1271, 1359, 1510, 1771, 1786, 1503, 1361, 1279, 1212, 1165, 1122, 1103, 1098, 1100, 1135, 1179, 1220, 1292, 1397, 1550, 1825, 1877, 1543, 1395, 1301, 1229, 1179, 1147, 1123, 1117, 1123, 1150, 1182, 1241, 1306, 1411, 1572, 1933, 1973, 1605, 1426, 1315, 1247, 1193, 1163, 1150, 1134, 1147, 1166, 1208, 1264, 1329, 1438, 1621, 2050, 2156, 1685, 1450, 1356, 1276, 1213, 1187, 1170, 1152, 1162, 1198, 1217, 1276, 1356, 1495, 1712, 2219]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2069, 1605, 1396, 1308, 1228, 1183, 1158, 1141, 1119, 1143, 1168, 1195, 1244, 1319, 1425, 1646, 2085, 1931, 1534, 1378, 1281, 1214, 1179, 1143, 1136, 1124, 1127, 1152, 1186, 1236, 1306, 1406, 1566, 1938, 1826, 1488, 1361, 1271, 1207, 1165, 1134, 1112, 1111, 1121, 1140, 1175, 1227, 1293, 1381, 1524, 1855, 1738, 1464, 1347, 1260, 1201, 1155, 1126, 1105, 1094, 1107, 1135, 1168, 1216, 1279, 1370, 1513, 1764, 1687, 1457, 1335, 1254, 1195, 1145, 1108, 1088, 1081, 1094, 1124, 1153, 1207, 1272, 1360, 1483, 1735, 1648, 1434, 1324, 1244, 1189, 1137, 1096, 1073, 1060, 1074, 1104, 1144, 1197, 1268, 1345, 1473, 1674, 1600, 1417, 1299, 1234, 1177, 1124, 1087, 1056, 1047, 1059, 1098, 1139, 1195, 1253, 1337, 1448, 1660, 1589, 1404, 1302, 1222, 1169, 1117, 1074, 1043, 1036, 1048, 1081, 1129, 1182, 1249, 1327, 1447, 1635, 1596, 1401, 1299, 1220, 1164, 1112, 1068, 1036, 1024, 1041, 1082, 1129, 1181, 1243, 1324, 1444, 1634, 1606, 1404, 1299, 1222, 1169, 1110, 1072, 1045, 1026, 1048, 1081, 1125, 1182, 1241, 1327, 1441, 1643, 1617, 1405, 1297, 1227, 1168, 1119, 1078, 1055, 1038, 1052, 1091, 1134, 1185, 1251, 1337, 1451, 1642, 1639, 1431, 1309, 1241, 1176, 1129, 1096, 1064, 1059, 1073, 1101, 1141, 1193, 1264, 1343, 1467, 1688, 1683, 1443, 1327, 1247, 1188, 1144, 1113, 1085, 1072, 1090, 1119, 1154, 1205, 1265, 1346, 1487, 1726, 1754, 1481, 1358, 1264, 1203, 1161, 1122, 1103, 1097, 1107, 1133, 1170, 1220, 1286, 1381, 1513, 1790, 1843, 1510, 1366, 1281, 1220, 1177, 1145, 1123, 1116, 1126, 1158, 1190, 1231, 1303, 1405, 1551, 1891, 1972, 1570, 1406, 1312, 1238, 1188, 1166, 1143, 1131, 1147, 1166, 1202, 1252, 1320, 1428, 1612, 2006, 2101, 1655, 1422, 1319, 1242, 1195, 1178, 1150, 1145, 1158, 1184, 1206, 1271, 1338, 1452, 1679, 2150]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2069, 1592, 1393, 1295, 1228, 1176, 1156, 1131, 1131, 1137, 1148, 1197, 1242, 1313, 1418, 1632, 2085, 1945, 1534, 1382, 1283, 1212, 1171, 1139, 1125, 1117, 1125, 1150, 1183, 1234, 1296, 1400, 1566, 1958, 1803, 1491, 1352, 1266, 1203, 1159, 1127, 1112, 1106, 1114, 1138, 1167, 1222, 1286, 1384, 1532, 1849, 1723, 1464, 1342, 1258, 1199, 1153, 1119, 1102, 1096, 1103, 1129, 1168, 1214, 1274, 1367, 1499, 1775, 1687, 1447, 1327, 1247, 1188, 1147, 1113, 1082, 1073, 1093, 1119, 1164, 1203, 1270, 1362, 1477, 1726, 1643, 1428, 1317, 1241, 1182, 1136, 1095, 1067, 1057, 1073, 1102, 1146, 1205, 1264, 1345, 1463, 1661, 1608, 1417, 1307, 1229, 1176, 1122, 1080, 1056, 1045, 1059, 1091, 1136, 1185, 1249, 1332, 1451, 1660, 1597, 1404, 1297, 1226, 1167, 1117, 1077, 1041, 1030, 1049, 1080, 1130, 1182, 1243, 1329, 1447, 1635, 1605, 1404, 1294, 1220, 1164, 1116, 1070, 1036, 1024, 1043, 1079, 1124, 1181, 1245, 1324, 1440, 1630, 1601, 1392, 1292, 1224, 1162, 1114, 1072, 1042, 1028, 1038, 1081, 1127, 1175, 1241, 1319, 1444, 1622, 1596, 1408, 1304, 1225, 1168, 1121, 1077, 1048, 1040, 1055, 1089, 1132, 1189, 1240, 1329, 1455, 1655, 1639, 1422, 1317, 1229, 1170, 1132, 1091, 1062, 1051, 1070, 1098, 1143, 1193, 1255, 1343, 1457, 1674, 1702, 1440, 1327, 1247, 1191, 1142, 1106, 1085, 1075, 1085, 1114, 1158, 1210, 1277, 1354, 1487, 1731, 1749, 1471, 1350, 1264, 1199, 1159, 1129, 1107, 1097, 1103, 1131, 1166, 1220, 1283, 1375, 1510, 1785, 1832, 1499, 1378, 1283, 1216, 1173, 1141, 1119, 1109, 1124, 1149, 1185, 1227, 1301, 1402, 1540, 1855, 1972, 1566, 1397, 1306, 1232, 1188, 1158, 1138, 1127, 1138, 1158, 1194, 1241, 1312, 1422, 1595, 2006, 2085, 1637, 1428, 1324, 1242, 1195, 1174, 1152, 1143, 1162, 1166, 1219, 1261, 1338, 1442, 1674, 2134]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1969, 1580, 1383, 1279, 1202, 1166, 1149, 1110, 1108, 1121, 1144, 1172, 1209, 1287, 1383, 1593, 2013, 1844, 1506, 1369, 1271, 1210, 1151, 1136, 1109, 1118, 1120, 1142, 1175, 1237, 1294, 1396, 1518, 1920, 1743, 1468, 1359, 1273, 1214, 1162, 1136, 1121, 1114, 1121, 1153, 1186, 1234, 1280, 1377, 1500, 1843, 1706, 1458, 1354, 1270, 1195, 1163, 1132, 1118, 1101, 1112, 1149, 1180, 1226, 1300, 1380, 1500, 1752, 1638, 1443, 1344, 1278, 1203, 1160, 1125, 1096, 1100, 1111, 1146, 1177, 1228, 1285, 1377, 1484, 1708, 1596, 1434, 1322, 1246, 1194, 1153, 1104, 1082, 1067, 1077, 1119, 1164, 1212, 1273, 1362, 1463, 1675, 1575, 1410, 1319, 1238, 1176, 1127, 1095, 1060, 1037, 1060, 1095, 1147, 1193, 1258, 1334, 1419, 1638, 1549, 1400, 1303, 1213, 1165, 1117, 1078, 1035, 1030, 1057, 1092, 1133, 1183, 1245, 1326, 1437, 1609, 1552, 1393, 1291, 1221, 1157, 1110, 1075, 1033, 1024, 1041, 1080, 1120, 1179, 1247, 1329, 1421, 1612, 1549, 1391, 1281, 1213, 1160, 1117, 1073, 1044, 1030, 1044, 1078, 1133, 1188, 1232, 1311, 1427, 1609, 1551, 1401, 1288, 1225, 1176, 1116, 1076, 1047, 1033, 1051, 1090, 1132, 1187, 1258, 1311, 1448, 1625, 1584, 1415, 1322, 1233, 1171, 1142, 1090, 1068, 1062, 1077, 1104, 1142, 1206, 1266, 1337, 1443, 1675, 1652, 1434, 1336, 1257, 1197, 1154, 1110, 1096, 1081, 1096, 1125, 1177, 1215, 1271, 1369, 1474, 1708, 1721, 1479, 1345, 1278, 1213, 1169, 1127, 1107, 1101, 1112, 1149, 1174, 1239, 1300, 1388, 1511, 1784, 1809, 1500, 1368, 1273, 1220, 1168, 1136, 1131, 1119, 1131, 1153, 1186, 1240, 1303, 1395, 1535, 1861, 1920, 1541, 1387, 1294, 1230, 1175, 1153, 1125, 1124, 1142, 1159, 1181, 1251, 1317, 1387, 1566, 1961, 2013, 1593, 1412, 1303, 1237, 1172, 1149, 1144, 1130, 1149, 1180, 1211, 1251, 1328, 1443, 1620, 2108]
                                       }
                                   }, {
                                       "name":    "2688x1520_TL84_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2941, 2153, 1775, 1571, 1458, 1360, 1311, 1261, 1249, 1261, 1307, 1371, 1475, 1601, 1800, 2171, 2941, 2621, 1968, 1681, 1501, 1378, 1287, 1237, 1202, 1193, 1210, 1243, 1304, 1397, 1515, 1709, 2007, 2648, 2409, 1846, 1601, 1441, 1324, 1246, 1187, 1155, 1139, 1158, 1196, 1252, 1342, 1458, 1627, 1881, 2420, 2219, 1775, 1552, 1397, 1287, 1202, 1147, 1109, 1104, 1119, 1150, 1216, 1300, 1409, 1576, 1820, 2248, 2117, 1732, 1519, 1371, 1261, 1182, 1129, 1086, 1074, 1090, 1132, 1187, 1281, 1382, 1542, 1763, 2180, 2048, 1698, 1488, 1367, 1243, 1168, 1102, 1065, 1052, 1069, 1119, 1176, 1261, 1367, 1524, 1744, 2099, 2023, 1681, 1488, 1349, 1237, 1158, 1095, 1052, 1041, 1058, 1102, 1171, 1255, 1363, 1510, 1732, 2065, 2007, 1681, 1475, 1335, 1234, 1147, 1083, 1049, 1028, 1045, 1093, 1166, 1246, 1367, 1506, 1726, 2065, 2007, 1669, 1475, 1338, 1228, 1150, 1086, 1039, 1024, 1043, 1090, 1155, 1249, 1353, 1506, 1715, 2056, 2007, 1675, 1471, 1338, 1225, 1144, 1081, 1043, 1022, 1043, 1097, 1152, 1243, 1360, 1497, 1721, 2048, 2040, 1686, 1483, 1335, 1228, 1144, 1081, 1043, 1032, 1049, 1090, 1166, 1240, 1353, 1510, 1721, 2065, 2065, 1698, 1488, 1345, 1237, 1160, 1102, 1063, 1049, 1065, 1112, 1174, 1258, 1363, 1515, 1744, 2117, 2117, 1721, 1515, 1367, 1255, 1174, 1119, 1086, 1072, 1088, 1127, 1190, 1274, 1390, 1533, 1763, 2171, 2258, 1787, 1552, 1397, 1284, 1202, 1155, 1112, 1104, 1114, 1160, 1219, 1304, 1409, 1576, 1813, 2279, 2397, 1860, 1611, 1445, 1321, 1240, 1190, 1163, 1155, 1168, 1196, 1265, 1342, 1475, 1637, 1916, 2444, 2662, 1984, 1715, 1524, 1397, 1317, 1258, 1219, 1210, 1216, 1261, 1321, 1413, 1533, 1726, 2040, 2691, 2958, 2199, 1826, 1601, 1466, 1367, 1314, 1284, 1268, 1281, 1324, 1386, 1488, 1616, 1839, 2219, 3029]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2941, 2134, 1758, 1564, 1456, 1352, 1309, 1264, 1258, 1273, 1300, 1367, 1459, 1591, 1792, 2152, 2918, 2581, 1958, 1670, 1510, 1385, 1298, 1245, 1212, 1204, 1216, 1251, 1307, 1390, 1516, 1689, 1985, 2637, 2374, 1841, 1595, 1436, 1328, 1251, 1193, 1166, 1154, 1168, 1206, 1253, 1340, 1456, 1641, 1883, 2389, 2197, 1766, 1545, 1388, 1284, 1208, 1154, 1127, 1117, 1129, 1166, 1224, 1302, 1412, 1568, 1801, 2231, 2097, 1717, 1501, 1370, 1260, 1179, 1129, 1099, 1079, 1102, 1139, 1195, 1282, 1393, 1545, 1745, 2134, 2040, 1678, 1486, 1338, 1241, 1172, 1109, 1068, 1058, 1072, 1122, 1179, 1264, 1370, 1513, 1729, 2080, 1995, 1667, 1471, 1338, 1231, 1166, 1100, 1056, 1040, 1059, 1104, 1165, 1253, 1357, 1507, 1701, 2040, 1974, 1667, 1462, 1330, 1222, 1148, 1091, 1049, 1028, 1049, 1099, 1161, 1243, 1352, 1501, 1697, 2040, 1974, 1648, 1448, 1323, 1226, 1146, 1086, 1038, 1024, 1043, 1095, 1159, 1247, 1347, 1498, 1705, 2028, 1985, 1655, 1462, 1323, 1228, 1143, 1086, 1041, 1023, 1046, 1099, 1159, 1241, 1350, 1492, 1701, 2023, 2012, 1663, 1468, 1330, 1228, 1154, 1095, 1049, 1038, 1064, 1104, 1172, 1249, 1352, 1495, 1721, 2040, 2045, 1689, 1474, 1347, 1245, 1166, 1110, 1068, 1058, 1076, 1117, 1178, 1260, 1362, 1516, 1741, 2097, 2115, 1717, 1513, 1362, 1258, 1187, 1136, 1091, 1086, 1097, 1139, 1200, 1284, 1383, 1538, 1766, 2159, 2244, 1779, 1554, 1396, 1293, 1216, 1163, 1132, 1110, 1131, 1172, 1226, 1309, 1417, 1584, 1810, 2258, 2382, 1855, 1612, 1448, 1335, 1258, 1212, 1170, 1161, 1172, 1216, 1266, 1355, 1477, 1648, 1908, 2453, 2627, 1995, 1701, 1513, 1390, 1316, 1258, 1224, 1214, 1224, 1262, 1326, 1414, 1545, 1717, 2034, 2685, 2953, 2146, 1796, 1591, 1465, 1365, 1318, 1273, 1275, 1286, 1326, 1388, 1486, 1623, 1832, 2224, 3013]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2934, 2125, 1748, 1576, 1430, 1357, 1302, 1268, 1249, 1268, 1304, 1367, 1453, 1604, 1794, 2137, 2957, 2585, 1946, 1673, 1500, 1379, 1295, 1238, 1208, 1198, 1212, 1249, 1309, 1395, 1515, 1700, 1993, 2622, 2340, 1839, 1593, 1433, 1327, 1247, 1192, 1162, 1150, 1161, 1206, 1262, 1344, 1458, 1628, 1881, 2400, 2174, 1765, 1547, 1392, 1281, 1206, 1152, 1120, 1112, 1127, 1164, 1220, 1309, 1411, 1573, 1808, 2247, 2083, 1707, 1509, 1359, 1257, 1187, 1129, 1094, 1075, 1099, 1136, 1192, 1275, 1387, 1534, 1756, 2155, 2042, 1684, 1485, 1342, 1240, 1170, 1105, 1067, 1056, 1070, 1115, 1174, 1262, 1374, 1512, 1727, 2077, 1993, 1658, 1473, 1335, 1230, 1153, 1092, 1052, 1038, 1056, 1103, 1166, 1251, 1359, 1500, 1711, 2031, 1972, 1658, 1458, 1327, 1224, 1144, 1081, 1043, 1025, 1052, 1094, 1161, 1247, 1349, 1497, 1700, 2031, 1972, 1658, 1455, 1325, 1222, 1152, 1082, 1038, 1024, 1044, 1089, 1157, 1243, 1357, 1491, 1700, 2015, 1956, 1647, 1464, 1323, 1222, 1141, 1084, 1035, 1025, 1041, 1094, 1157, 1243, 1354, 1485, 1700, 2009, 1987, 1669, 1464, 1332, 1232, 1146, 1089, 1049, 1037, 1056, 1100, 1162, 1247, 1354, 1494, 1704, 2048, 2037, 1673, 1476, 1344, 1243, 1162, 1105, 1065, 1049, 1071, 1117, 1179, 1262, 1367, 1512, 1731, 2083, 2118, 1711, 1503, 1364, 1257, 1179, 1132, 1090, 1076, 1094, 1141, 1198, 1277, 1382, 1540, 1756, 2168, 2227, 1765, 1540, 1395, 1295, 1214, 1159, 1122, 1112, 1127, 1168, 1222, 1306, 1419, 1583, 1803, 2268, 2377, 1853, 1607, 1441, 1327, 1243, 1202, 1175, 1161, 1168, 1208, 1268, 1347, 1461, 1636, 1891, 2408, 2603, 1972, 1696, 1512, 1387, 1304, 1255, 1218, 1204, 1224, 1264, 1316, 1403, 1543, 1707, 2042, 2698, 2957, 2149, 1786, 1600, 1470, 1369, 1311, 1275, 1262, 1275, 1316, 1372, 1485, 1614, 1817, 2220, 3043]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2778, 2056, 1752, 1545, 1411, 1339, 1274, 1243, 1238, 1261, 1280, 1346, 1443, 1573, 1764, 2056, 2901, 2487, 1920, 1653, 1475, 1346, 1268, 1232, 1203, 1187, 1203, 1232, 1293, 1389, 1501, 1685, 1934, 2535, 2232, 1813, 1583, 1435, 1312, 1249, 1198, 1161, 1145, 1161, 1203, 1255, 1339, 1459, 1612, 1865, 2331, 2140, 1776, 1545, 1382, 1286, 1215, 1155, 1126, 1111, 1135, 1176, 1232, 1319, 1427, 1564, 1788, 2232, 2072, 1696, 1518, 1367, 1261, 1198, 1135, 1106, 1097, 1116, 1155, 1220, 1286, 1396, 1573, 1741, 2140, 1993, 1685, 1501, 1360, 1249, 1182, 1121, 1083, 1075, 1093, 1130, 1198, 1280, 1389, 1527, 1741, 2106, 1993, 1674, 1484, 1353, 1249, 1166, 1111, 1057, 1053, 1075, 1116, 1182, 1268, 1374, 1536, 1696, 2024, 1934, 1642, 1484, 1346, 1232, 1150, 1088, 1057, 1036, 1053, 1106, 1176, 1268, 1367, 1501, 1696, 2024, 1949, 1663, 1459, 1332, 1226, 1155, 1088, 1049, 1024, 1053, 1097, 1161, 1249, 1367, 1492, 1685, 1993, 1920, 1632, 1451, 1332, 1226, 1145, 1083, 1040, 1024, 1049, 1102, 1166, 1243, 1360, 1492, 1685, 1993, 1949, 1632, 1451, 1332, 1226, 1150, 1093, 1053, 1036, 1057, 1111, 1161, 1261, 1367, 1501, 1696, 2024, 1978, 1642, 1484, 1346, 1243, 1166, 1106, 1070, 1057, 1083, 1116, 1176, 1268, 1367, 1509, 1718, 2056, 2056, 1707, 1492, 1360, 1261, 1176, 1135, 1106, 1088, 1102, 1145, 1192, 1293, 1404, 1545, 1741, 2140, 2140, 1764, 1545, 1404, 1286, 1220, 1166, 1130, 1116, 1135, 1182, 1232, 1312, 1427, 1573, 1801, 2232, 2331, 1826, 1592, 1435, 1325, 1243, 1192, 1176, 1161, 1166, 1215, 1261, 1346, 1467, 1622, 1879, 2374, 2535, 1963, 1674, 1509, 1382, 1293, 1243, 1215, 1203, 1215, 1249, 1319, 1404, 1536, 1718, 1993, 2611, 2901, 2140, 1801, 1583, 1459, 1360, 1306, 1286, 1268, 1274, 1306, 1382, 1492, 1622, 1839, 2158, 2967]
                                       }
                                   }, {
                                       "name":    "2688x1520_TL84_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2059, 1607, 1391, 1280, 1225, 1171, 1147, 1116, 1108, 1116, 1144, 1180, 1239, 1304, 1410, 1621, 2059, 1907, 1517, 1357, 1259, 1192, 1140, 1114, 1093, 1089, 1101, 1120, 1155, 1209, 1270, 1380, 1547, 1927, 1804, 1461, 1326, 1240, 1174, 1131, 1096, 1077, 1066, 1079, 1104, 1137, 1190, 1254, 1347, 1488, 1813, 1700, 1436, 1313, 1227, 1165, 1114, 1081, 1056, 1055, 1065, 1083, 1127, 1177, 1238, 1333, 1472, 1723, 1652, 1426, 1308, 1225, 1162, 1114, 1082, 1050, 1043, 1055, 1084, 1119, 1179, 1235, 1328, 1451, 1702, 1622, 1417, 1298, 1238, 1159, 1115, 1070, 1044, 1034, 1048, 1086, 1123, 1177, 1238, 1329, 1456, 1662, 1618, 1416, 1310, 1233, 1165, 1116, 1073, 1041, 1033, 1047, 1080, 1128, 1182, 1246, 1330, 1460, 1651, 1615, 1424, 1306, 1227, 1168, 1112, 1067, 1044, 1026, 1040, 1076, 1130, 1180, 1256, 1334, 1463, 1661, 1618, 1418, 1309, 1232, 1165, 1116, 1071, 1035, 1024, 1040, 1076, 1121, 1185, 1245, 1336, 1456, 1658, 1615, 1420, 1303, 1230, 1160, 1109, 1065, 1038, 1020, 1038, 1081, 1117, 1177, 1250, 1326, 1458, 1648, 1631, 1421, 1307, 1220, 1156, 1103, 1059, 1032, 1025, 1038, 1068, 1123, 1167, 1236, 1330, 1450, 1651, 1635, 1417, 1298, 1218, 1154, 1108, 1070, 1042, 1032, 1044, 1079, 1121, 1174, 1234, 1321, 1456, 1676, 1652, 1416, 1304, 1221, 1156, 1106, 1072, 1050, 1041, 1053, 1079, 1122, 1173, 1242, 1320, 1451, 1695, 1731, 1446, 1313, 1227, 1162, 1114, 1088, 1058, 1055, 1060, 1093, 1130, 1180, 1238, 1333, 1466, 1746, 1795, 1472, 1334, 1243, 1171, 1126, 1099, 1084, 1080, 1089, 1104, 1148, 1190, 1268, 1356, 1516, 1830, 1937, 1529, 1384, 1278, 1209, 1167, 1133, 1109, 1105, 1106, 1136, 1170, 1222, 1286, 1394, 1572, 1958, 2071, 1642, 1431, 1304, 1232, 1177, 1150, 1136, 1125, 1133, 1159, 1193, 1250, 1317, 1441, 1657, 2120]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2059, 1593, 1377, 1274, 1224, 1164, 1146, 1118, 1116, 1126, 1138, 1177, 1226, 1296, 1404, 1607, 2043, 1878, 1509, 1349, 1266, 1198, 1149, 1121, 1103, 1100, 1107, 1127, 1157, 1203, 1272, 1364, 1529, 1919, 1778, 1457, 1321, 1235, 1177, 1136, 1101, 1087, 1079, 1089, 1114, 1138, 1188, 1252, 1359, 1490, 1789, 1684, 1429, 1307, 1219, 1162, 1120, 1087, 1073, 1066, 1074, 1099, 1135, 1179, 1240, 1326, 1456, 1709, 1637, 1413, 1292, 1224, 1160, 1112, 1082, 1063, 1048, 1066, 1092, 1126, 1180, 1245, 1330, 1437, 1666, 1615, 1400, 1296, 1211, 1158, 1119, 1076, 1047, 1040, 1050, 1089, 1126, 1179, 1240, 1320, 1443, 1647, 1596, 1404, 1295, 1222, 1159, 1124, 1078, 1045, 1032, 1048, 1081, 1122, 1180, 1240, 1327, 1433, 1631, 1588, 1412, 1295, 1223, 1157, 1113, 1074, 1043, 1026, 1043, 1082, 1125, 1177, 1243, 1329, 1438, 1641, 1591, 1399, 1285, 1218, 1163, 1113, 1072, 1035, 1024, 1039, 1081, 1125, 1183, 1241, 1329, 1448, 1635, 1597, 1403, 1295, 1216, 1163, 1108, 1070, 1036, 1021, 1040, 1082, 1123, 1175, 1240, 1321, 1442, 1627, 1609, 1401, 1293, 1216, 1157, 1112, 1073, 1038, 1031, 1053, 1081, 1129, 1176, 1236, 1316, 1450, 1631, 1619, 1410, 1286, 1220, 1161, 1114, 1078, 1047, 1040, 1055, 1084, 1124, 1175, 1233, 1323, 1453, 1661, 1652, 1413, 1302, 1217, 1158, 1119, 1088, 1055, 1054, 1062, 1092, 1131, 1182, 1235, 1324, 1454, 1685, 1720, 1439, 1315, 1226, 1171, 1127, 1096, 1078, 1060, 1076, 1104, 1137, 1185, 1245, 1340, 1464, 1730, 1783, 1468, 1335, 1245, 1184, 1142, 1119, 1091, 1086, 1093, 1123, 1150, 1201, 1270, 1365, 1510, 1837, 1912, 1538, 1373, 1269, 1203, 1166, 1133, 1114, 1109, 1114, 1137, 1174, 1223, 1296, 1386, 1567, 1954, 2067, 1603, 1407, 1296, 1231, 1175, 1154, 1126, 1132, 1138, 1161, 1195, 1249, 1322, 1435, 1661, 2109]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2054, 1586, 1369, 1284, 1202, 1168, 1140, 1122, 1108, 1122, 1142, 1176, 1221, 1306, 1406, 1596, 2070, 1881, 1499, 1350, 1258, 1193, 1147, 1116, 1099, 1094, 1103, 1125, 1159, 1207, 1271, 1372, 1536, 1908, 1752, 1455, 1320, 1232, 1177, 1132, 1101, 1084, 1076, 1082, 1113, 1145, 1192, 1254, 1349, 1489, 1798, 1667, 1427, 1309, 1223, 1160, 1118, 1085, 1066, 1062, 1073, 1097, 1131, 1185, 1239, 1331, 1462, 1722, 1626, 1406, 1299, 1214, 1158, 1118, 1082, 1058, 1043, 1063, 1088, 1124, 1174, 1239, 1320, 1446, 1683, 1617, 1405, 1295, 1215, 1157, 1117, 1073, 1046, 1039, 1049, 1082, 1120, 1177, 1244, 1319, 1442, 1644, 1594, 1397, 1297, 1220, 1158, 1112, 1070, 1041, 1031, 1045, 1081, 1124, 1178, 1242, 1321, 1442, 1624, 1586, 1405, 1292, 1220, 1159, 1109, 1065, 1037, 1024, 1046, 1077, 1125, 1181, 1240, 1326, 1440, 1634, 1589, 1408, 1292, 1220, 1159, 1118, 1068, 1035, 1024, 1041, 1075, 1123, 1179, 1249, 1323, 1443, 1624, 1574, 1396, 1297, 1216, 1157, 1106, 1068, 1030, 1024, 1036, 1077, 1121, 1177, 1244, 1315, 1440, 1616, 1589, 1406, 1289, 1217, 1160, 1105, 1067, 1038, 1029, 1045, 1078, 1120, 1174, 1237, 1315, 1435, 1638, 1613, 1396, 1287, 1217, 1159, 1110, 1073, 1044, 1031, 1050, 1084, 1126, 1177, 1237, 1319, 1445, 1649, 1654, 1409, 1294, 1219, 1158, 1111, 1085, 1055, 1045, 1058, 1093, 1129, 1176, 1235, 1326, 1446, 1693, 1707, 1427, 1303, 1225, 1172, 1125, 1092, 1068, 1062, 1073, 1101, 1132, 1183, 1246, 1339, 1458, 1738, 1780, 1466, 1331, 1240, 1177, 1128, 1110, 1096, 1086, 1089, 1115, 1151, 1194, 1257, 1355, 1496, 1803, 1894, 1519, 1369, 1268, 1200, 1155, 1131, 1108, 1099, 1114, 1138, 1165, 1214, 1295, 1379, 1574, 1963, 2070, 1605, 1399, 1304, 1235, 1179, 1148, 1127, 1120, 1127, 1152, 1181, 1248, 1315, 1423, 1658, 2130]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1945, 1535, 1373, 1259, 1186, 1153, 1115, 1100, 1098, 1116, 1121, 1159, 1212, 1281, 1382, 1535, 2031, 1810, 1480, 1334, 1237, 1164, 1123, 1109, 1095, 1084, 1095, 1109, 1145, 1201, 1259, 1360, 1491, 1845, 1671, 1435, 1311, 1234, 1163, 1134, 1106, 1082, 1071, 1082, 1111, 1140, 1187, 1255, 1335, 1476, 1746, 1640, 1437, 1307, 1213, 1165, 1126, 1089, 1071, 1061, 1080, 1108, 1141, 1194, 1253, 1323, 1446, 1710, 1618, 1396, 1307, 1221, 1161, 1129, 1088, 1071, 1065, 1080, 1107, 1150, 1184, 1248, 1354, 1433, 1671, 1578, 1406, 1309, 1231, 1166, 1128, 1088, 1062, 1057, 1071, 1097, 1144, 1194, 1257, 1332, 1453, 1667, 1594, 1410, 1307, 1236, 1176, 1123, 1089, 1046, 1045, 1063, 1093, 1139, 1194, 1256, 1353, 1429, 1619, 1556, 1392, 1314, 1237, 1166, 1115, 1072, 1052, 1034, 1048, 1090, 1140, 1200, 1256, 1329, 1437, 1628, 1571, 1412, 1295, 1227, 1163, 1122, 1074, 1045, 1024, 1049, 1083, 1127, 1185, 1259, 1324, 1431, 1607, 1545, 1383, 1285, 1224, 1161, 1110, 1067, 1035, 1022, 1043, 1085, 1130, 1177, 1250, 1322, 1428, 1604, 1558, 1375, 1278, 1218, 1154, 1109, 1070, 1042, 1029, 1046, 1089, 1118, 1188, 1249, 1322, 1429, 1619, 1566, 1370, 1294, 1219, 1160, 1113, 1074, 1049, 1040, 1062, 1083, 1123, 1183, 1238, 1317, 1434, 1628, 1605, 1405, 1284, 1215, 1161, 1109, 1088, 1071, 1056, 1066, 1097, 1124, 1190, 1254, 1330, 1433, 1671, 1640, 1427, 1307, 1233, 1165, 1131, 1098, 1076, 1065, 1080, 1113, 1141, 1188, 1253, 1331, 1456, 1710, 1746, 1445, 1319, 1234, 1175, 1129, 1101, 1097, 1086, 1087, 1121, 1145, 1193, 1262, 1343, 1486, 1778, 1845, 1513, 1351, 1266, 1195, 1145, 1120, 1105, 1099, 1105, 1125, 1168, 1214, 1288, 1387, 1536, 1900, 2031, 1598, 1411, 1289, 1226, 1171, 1143, 1138, 1125, 1127, 1143, 1189, 1254, 1321, 1441, 1611, 2077]
                                       }
                                   }, {
                                       "name":    "2688x1520_HZ_100",
                                       "resolution":    "2688x1520",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2957, 2214, 1861, 1618, 1484, 1410, 1334, 1287, 1278, 1295, 1339, 1405, 1501, 1651, 1887, 2252, 3096, 2678, 2032, 1738, 1554, 1420, 1321, 1254, 1216, 1205, 1231, 1258, 1325, 1425, 1560, 1753, 2097, 2696, 2461, 1905, 1644, 1479, 1353, 1262, 1205, 1162, 1159, 1172, 1212, 1274, 1362, 1495, 1686, 1952, 2508, 2291, 1818, 1592, 1425, 1304, 1212, 1159, 1119, 1107, 1116, 1159, 1223, 1312, 1436, 1618, 1852, 2345, 2177, 1777, 1554, 1395, 1278, 1179, 1129, 1086, 1077, 1092, 1142, 1197, 1299, 1410, 1592, 1818, 2226, 2131, 1746, 1530, 1376, 1258, 1169, 1107, 1062, 1046, 1065, 1116, 1176, 1278, 1390, 1554, 1785, 2166, 2097, 1731, 1524, 1362, 1258, 1162, 1089, 1048, 1029, 1051, 1098, 1166, 1266, 1376, 1548, 1777, 2119, 2097, 1731, 1530, 1367, 1242, 1162, 1092, 1037, 1024, 1048, 1095, 1166, 1266, 1376, 1536, 1769, 2154, 2108, 1738, 1513, 1367, 1254, 1159, 1095, 1040, 1024, 1048, 1095, 1169, 1262, 1381, 1554, 1785, 2131, 2086, 1731, 1524, 1367, 1238, 1162, 1092, 1046, 1027, 1051, 1092, 1166, 1262, 1381, 1542, 1785, 2131, 2131, 1753, 1524, 1362, 1254, 1169, 1098, 1057, 1040, 1057, 1107, 1172, 1266, 1390, 1554, 1785, 2177, 2154, 1761, 1536, 1386, 1262, 1172, 1119, 1071, 1054, 1074, 1123, 1190, 1282, 1410, 1579, 1818, 2202, 2226, 1785, 1566, 1415, 1274, 1197, 1142, 1095, 1080, 1098, 1139, 1216, 1295, 1431, 1592, 1835, 2239, 2304, 1852, 1611, 1441, 1308, 1227, 1162, 1123, 1113, 1123, 1172, 1242, 1334, 1452, 1631, 1878, 2345, 2492, 1914, 1686, 1490, 1362, 1274, 1208, 1176, 1166, 1176, 1212, 1282, 1371, 1518, 1686, 1991, 2540, 2696, 2075, 1777, 1566, 1441, 1339, 1274, 1242, 1231, 1246, 1282, 1343, 1436, 1598, 1793, 2108, 2811, 3072, 2265, 1896, 1672, 1513, 1431, 1357, 1312, 1299, 1321, 1362, 1425, 1524, 1679, 1887, 2304, 3145]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2858, 2115, 1762, 1590, 1438, 1360, 1305, 1278, 1251, 1274, 1309, 1364, 1463, 1608, 1784, 2180, 2897, 2563, 1931, 1646, 1489, 1373, 1297, 1233, 1205, 1195, 1208, 1244, 1305, 1391, 1527, 1692, 1976, 2595, 2324, 1823, 1584, 1429, 1313, 1240, 1181, 1152, 1143, 1155, 1198, 1251, 1338, 1438, 1620, 1880, 2376, 2191, 1740, 1516, 1378, 1270, 1191, 1143, 1107, 1101, 1116, 1152, 1215, 1289, 1400, 1561, 1792, 2226, 2094, 1698, 1489, 1360, 1244, 1165, 1110, 1071, 1071, 1082, 1134, 1185, 1266, 1378, 1521, 1740, 2136, 2004, 1658, 1463, 1330, 1226, 1159, 1090, 1060, 1039, 1068, 1107, 1175, 1255, 1364, 1500, 1712, 2063, 1995, 1646, 1474, 1326, 1229, 1146, 1090, 1042, 1031, 1049, 1098, 1159, 1244, 1351, 1494, 1719, 2033, 1967, 1658, 1463, 1326, 1222, 1146, 1076, 1037, 1031, 1044, 1090, 1159, 1248, 1360, 1500, 1705, 2063, 1967, 1646, 1463, 1330, 1215, 1140, 1084, 1042, 1024, 1044, 1090, 1159, 1244, 1355, 1494, 1698, 2033, 1976, 1646, 1468, 1330, 1229, 1143, 1087, 1042, 1026, 1049, 1090, 1162, 1251, 1351, 1510, 1712, 2033, 1995, 1646, 1458, 1334, 1237, 1149, 1096, 1052, 1029, 1052, 1101, 1165, 1251, 1364, 1505, 1712, 2043, 2033, 1672, 1474, 1334, 1237, 1165, 1107, 1065, 1052, 1068, 1119, 1175, 1255, 1373, 1521, 1733, 2094, 2104, 1705, 1500, 1360, 1255, 1178, 1125, 1087, 1084, 1084, 1137, 1191, 1282, 1387, 1538, 1755, 2158, 2191, 1770, 1532, 1387, 1289, 1201, 1149, 1119, 1110, 1122, 1162, 1219, 1297, 1410, 1584, 1807, 2250, 2337, 1839, 1596, 1434, 1330, 1244, 1195, 1165, 1152, 1162, 1201, 1266, 1343, 1463, 1646, 1888, 2403, 2595, 1967, 1685, 1516, 1382, 1313, 1259, 1219, 1205, 1222, 1259, 1317, 1405, 1538, 1719, 2024, 2694, 2937, 2115, 1800, 1590, 1453, 1373, 1322, 1282, 1266, 1282, 1326, 1391, 1479, 1633, 1823, 2214, 2999]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2919, 2124, 1766, 1595, 1454, 1375, 1320, 1277, 1273, 1285, 1320, 1384, 1480, 1595, 1826, 2178, 2919, 2569, 1959, 1676, 1505, 1389, 1304, 1251, 1219, 1215, 1222, 1262, 1320, 1411, 1538, 1703, 2024, 2648, 2332, 1834, 1595, 1445, 1324, 1247, 1195, 1160, 1156, 1172, 1209, 1266, 1349, 1469, 1638, 1898, 2410, 2167, 1766, 1538, 1389, 1277, 1209, 1160, 1112, 1112, 1126, 1163, 1219, 1308, 1421, 1572, 1810, 2235, 2063, 1709, 1505, 1358, 1266, 1185, 1135, 1092, 1075, 1100, 1129, 1198, 1273, 1389, 1538, 1751, 2124, 2043, 1689, 1490, 1345, 1247, 1169, 1106, 1070, 1057, 1073, 1120, 1185, 1269, 1375, 1516, 1744, 2093, 2005, 1669, 1480, 1341, 1240, 1156, 1097, 1057, 1046, 1062, 1100, 1169, 1269, 1366, 1516, 1716, 2083, 2005, 1663, 1474, 1341, 1233, 1156, 1092, 1046, 1034, 1057, 1109, 1169, 1262, 1366, 1516, 1723, 2073, 1986, 1663, 1474, 1337, 1236, 1160, 1092, 1046, 1024, 1054, 1097, 1175, 1262, 1371, 1511, 1730, 2033, 1996, 1669, 1480, 1341, 1233, 1156, 1097, 1049, 1036, 1059, 1100, 1172, 1255, 1380, 1521, 1723, 2073, 1986, 1676, 1474, 1349, 1236, 1163, 1100, 1052, 1044, 1067, 1114, 1175, 1262, 1375, 1527, 1737, 2063, 2043, 1696, 1495, 1349, 1251, 1172, 1112, 1078, 1062, 1083, 1129, 1189, 1273, 1384, 1538, 1751, 2135, 2135, 1716, 1511, 1371, 1258, 1189, 1132, 1100, 1086, 1100, 1138, 1209, 1288, 1402, 1560, 1773, 2189, 2223, 1766, 1555, 1393, 1296, 1212, 1156, 1129, 1114, 1132, 1172, 1233, 1320, 1430, 1601, 1826, 2258, 2345, 1865, 1607, 1454, 1345, 1262, 1212, 1172, 1156, 1169, 1212, 1266, 1353, 1480, 1657, 1924, 2466, 2554, 1977, 1689, 1511, 1407, 1312, 1262, 1233, 1219, 1233, 1269, 1337, 1416, 1549, 1723, 2053, 2682, 2880, 2167, 1795, 1613, 1459, 1375, 1332, 1296, 1277, 1300, 1337, 1402, 1521, 1631, 1834, 2235, 3022]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2594, 1946, 1692, 1516, 1424, 1327, 1269, 1242, 1242, 1255, 1269, 1342, 1441, 1536, 1717, 2013, 2715, 2289, 1796, 1556, 1441, 1327, 1255, 1229, 1216, 1191, 1179, 1229, 1283, 1373, 1478, 1621, 1853, 2335, 2122, 1692, 1536, 1390, 1297, 1216, 1167, 1144, 1144, 1144, 1179, 1242, 1327, 1441, 1578, 1769, 2203, 2048, 1668, 1478, 1373, 1255, 1191, 1144, 1091, 1101, 1112, 1167, 1216, 1297, 1390, 1536, 1717, 2048, 1883, 1599, 1459, 1342, 1229, 1156, 1122, 1091, 1071, 1081, 1133, 1179, 1269, 1373, 1497, 1692, 2013, 1883, 1599, 1441, 1327, 1229, 1156, 1101, 1061, 1052, 1061, 1112, 1179, 1242, 1357, 1478, 1668, 1979, 1883, 1556, 1441, 1312, 1229, 1167, 1101, 1061, 1033, 1071, 1101, 1156, 1255, 1357, 1478, 1644, 1946, 1824, 1599, 1424, 1327, 1216, 1144, 1091, 1052, 1024, 1061, 1101, 1167, 1269, 1357, 1497, 1644, 1979, 1883, 1578, 1459, 1312, 1216, 1144, 1081, 1042, 1024, 1052, 1101, 1179, 1255, 1357, 1497, 1668, 1946, 1883, 1599, 1441, 1312, 1216, 1144, 1091, 1042, 1024, 1061, 1101, 1179, 1255, 1357, 1497, 1644, 1979, 1853, 1599, 1424, 1312, 1216, 1156, 1091, 1052, 1052, 1061, 1112, 1167, 1242, 1357, 1497, 1668, 2013, 1883, 1599, 1441, 1342, 1242, 1167, 1112, 1071, 1061, 1081, 1122, 1191, 1269, 1373, 1536, 1668, 2013, 1946, 1644, 1459, 1342, 1242, 1191, 1133, 1101, 1081, 1091, 1144, 1203, 1283, 1390, 1516, 1692, 2085, 2048, 1668, 1497, 1357, 1269, 1203, 1144, 1122, 1112, 1112, 1167, 1229, 1297, 1406, 1556, 1742, 2162, 2122, 1742, 1516, 1406, 1312, 1242, 1191, 1167, 1144, 1167, 1203, 1242, 1327, 1441, 1621, 1796, 2289, 2289, 1796, 1599, 1459, 1327, 1269, 1242, 1216, 1191, 1203, 1255, 1312, 1373, 1516, 1668, 1883, 2484, 2484, 1979, 1692, 1516, 1424, 1327, 1312, 1242, 1269, 1283, 1297, 1373, 1459, 1599, 1769, 2048, 2715]
                                       }
                                   }, {
                                       "name":    "2688x1520_HZ_70",
                                       "resolution":    "2688x1520",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2070, 1653, 1458, 1318, 1247, 1214, 1168, 1138, 1134, 1145, 1172, 1210, 1262, 1345, 1479, 1681, 2167, 1948, 1566, 1403, 1304, 1229, 1170, 1130, 1106, 1100, 1120, 1133, 1174, 1233, 1309, 1416, 1616, 1962, 1843, 1508, 1362, 1272, 1199, 1146, 1112, 1083, 1084, 1093, 1119, 1157, 1208, 1286, 1397, 1545, 1878, 1756, 1470, 1347, 1252, 1180, 1123, 1092, 1065, 1057, 1062, 1092, 1133, 1188, 1261, 1369, 1498, 1797, 1700, 1463, 1338, 1247, 1177, 1112, 1082, 1051, 1046, 1056, 1094, 1128, 1196, 1260, 1370, 1496, 1738, 1687, 1457, 1335, 1246, 1174, 1116, 1074, 1042, 1028, 1044, 1084, 1123, 1193, 1259, 1356, 1490, 1715, 1677, 1458, 1342, 1245, 1185, 1120, 1067, 1037, 1022, 1040, 1075, 1123, 1192, 1257, 1363, 1497, 1695, 1687, 1467, 1355, 1256, 1176, 1126, 1075, 1032, 1022, 1043, 1078, 1130, 1199, 1265, 1361, 1499, 1733, 1699, 1476, 1342, 1258, 1190, 1125, 1080, 1037, 1024, 1045, 1080, 1135, 1197, 1271, 1379, 1516, 1717, 1678, 1467, 1350, 1256, 1173, 1126, 1075, 1040, 1025, 1046, 1075, 1130, 1195, 1269, 1366, 1513, 1714, 1704, 1478, 1342, 1245, 1181, 1127, 1075, 1046, 1032, 1046, 1084, 1130, 1192, 1271, 1369, 1504, 1741, 1705, 1470, 1340, 1254, 1177, 1119, 1087, 1050, 1037, 1053, 1090, 1136, 1196, 1277, 1377, 1517, 1743, 1738, 1469, 1348, 1264, 1173, 1128, 1094, 1059, 1048, 1062, 1091, 1146, 1192, 1278, 1370, 1510, 1748, 1766, 1498, 1363, 1266, 1184, 1137, 1095, 1068, 1063, 1068, 1105, 1151, 1208, 1275, 1380, 1519, 1797, 1866, 1515, 1397, 1281, 1208, 1157, 1115, 1096, 1090, 1096, 1119, 1164, 1216, 1306, 1397, 1576, 1902, 1962, 1599, 1435, 1314, 1247, 1186, 1148, 1130, 1124, 1134, 1155, 1190, 1242, 1340, 1448, 1624, 2045, 2150, 1691, 1486, 1362, 1271, 1232, 1188, 1161, 1153, 1168, 1192, 1227, 1281, 1368, 1479, 1720, 2202]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2000, 1579, 1381, 1295, 1209, 1171, 1143, 1130, 1110, 1127, 1146, 1174, 1230, 1310, 1398, 1628, 2028, 1865, 1488, 1329, 1249, 1188, 1149, 1111, 1096, 1091, 1099, 1120, 1156, 1203, 1281, 1366, 1523, 1888, 1740, 1442, 1312, 1229, 1165, 1126, 1090, 1074, 1069, 1077, 1106, 1136, 1187, 1237, 1342, 1487, 1779, 1679, 1408, 1282, 1210, 1150, 1104, 1077, 1054, 1052, 1062, 1086, 1126, 1167, 1230, 1320, 1449, 1706, 1634, 1398, 1282, 1215, 1145, 1098, 1064, 1036, 1039, 1047, 1086, 1116, 1166, 1231, 1310, 1433, 1667, 1587, 1384, 1277, 1204, 1144, 1106, 1058, 1039, 1022, 1047, 1075, 1122, 1171, 1235, 1308, 1429, 1633, 1595, 1387, 1298, 1212, 1158, 1104, 1068, 1031, 1024, 1038, 1076, 1117, 1171, 1235, 1316, 1449, 1626, 1583, 1406, 1296, 1218, 1157, 1111, 1060, 1031, 1030, 1039, 1074, 1123, 1181, 1250, 1328, 1445, 1660, 1586, 1397, 1299, 1225, 1153, 1107, 1070, 1038, 1024, 1041, 1076, 1125, 1180, 1248, 1326, 1442, 1639, 1590, 1395, 1301, 1222, 1164, 1108, 1071, 1036, 1025, 1044, 1074, 1126, 1185, 1242, 1338, 1451, 1636, 1595, 1387, 1284, 1219, 1164, 1108, 1073, 1041, 1021, 1041, 1079, 1123, 1178, 1247, 1326, 1443, 1634, 1610, 1395, 1286, 1208, 1154, 1112, 1075, 1044, 1035, 1047, 1086, 1122, 1171, 1243, 1327, 1446, 1658, 1643, 1404, 1291, 1215, 1155, 1110, 1078, 1052, 1053, 1049, 1089, 1123, 1180, 1239, 1324, 1445, 1684, 1679, 1431, 1296, 1218, 1167, 1113, 1083, 1065, 1060, 1068, 1095, 1129, 1174, 1238, 1340, 1462, 1724, 1750, 1455, 1322, 1233, 1179, 1129, 1103, 1086, 1078, 1083, 1109, 1149, 1190, 1259, 1363, 1494, 1799, 1888, 1516, 1360, 1272, 1196, 1163, 1134, 1109, 1100, 1112, 1134, 1167, 1215, 1290, 1388, 1559, 1960, 2056, 1579, 1410, 1295, 1221, 1182, 1157, 1133, 1124, 1133, 1161, 1198, 1243, 1330, 1428, 1653, 2100]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2043, 1586, 1383, 1299, 1222, 1184, 1156, 1129, 1130, 1136, 1156, 1191, 1243, 1299, 1430, 1626, 2043, 1870, 1510, 1353, 1263, 1201, 1155, 1127, 1109, 1110, 1112, 1137, 1169, 1221, 1290, 1375, 1560, 1927, 1746, 1451, 1321, 1243, 1174, 1132, 1103, 1081, 1082, 1093, 1116, 1149, 1196, 1264, 1356, 1502, 1805, 1661, 1428, 1301, 1220, 1156, 1120, 1093, 1058, 1061, 1072, 1096, 1130, 1184, 1248, 1330, 1464, 1713, 1610, 1407, 1296, 1213, 1165, 1117, 1088, 1056, 1044, 1065, 1082, 1129, 1172, 1241, 1324, 1442, 1658, 1618, 1410, 1300, 1218, 1164, 1116, 1073, 1049, 1039, 1052, 1087, 1132, 1184, 1245, 1323, 1455, 1657, 1603, 1407, 1303, 1225, 1168, 1115, 1075, 1046, 1039, 1051, 1078, 1127, 1195, 1249, 1335, 1446, 1666, 1613, 1409, 1306, 1232, 1167, 1121, 1076, 1041, 1032, 1051, 1092, 1133, 1195, 1256, 1343, 1460, 1668, 1601, 1412, 1308, 1231, 1173, 1126, 1078, 1043, 1024, 1051, 1083, 1141, 1197, 1262, 1341, 1469, 1639, 1605, 1415, 1310, 1232, 1167, 1121, 1081, 1044, 1034, 1054, 1084, 1136, 1188, 1268, 1348, 1460, 1668, 1589, 1412, 1299, 1233, 1164, 1121, 1078, 1040, 1036, 1056, 1092, 1133, 1188, 1257, 1345, 1464, 1650, 1618, 1415, 1304, 1221, 1167, 1119, 1079, 1057, 1045, 1062, 1096, 1135, 1188, 1253, 1342, 1461, 1690, 1666, 1413, 1300, 1225, 1159, 1120, 1085, 1065, 1055, 1065, 1090, 1139, 1186, 1253, 1343, 1460, 1709, 1704, 1428, 1315, 1224, 1174, 1123, 1090, 1074, 1064, 1077, 1105, 1143, 1195, 1256, 1355, 1477, 1731, 1756, 1476, 1331, 1251, 1193, 1146, 1119, 1093, 1082, 1090, 1119, 1149, 1200, 1272, 1372, 1522, 1847, 1858, 1524, 1364, 1267, 1217, 1162, 1137, 1122, 1113, 1122, 1143, 1184, 1225, 1299, 1391, 1582, 1951, 2016, 1618, 1407, 1314, 1227, 1184, 1167, 1146, 1133, 1150, 1170, 1207, 1279, 1329, 1437, 1669, 2115]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1816, 1453, 1326, 1235, 1196, 1142, 1111, 1098, 1102, 1110, 1111, 1155, 1211, 1251, 1345, 1503, 1900, 1666, 1384, 1257, 1209, 1148, 1112, 1107, 1106, 1087, 1073, 1107, 1136, 1188, 1240, 1309, 1428, 1699, 1589, 1339, 1272, 1195, 1150, 1104, 1078, 1067, 1071, 1067, 1088, 1127, 1176, 1240, 1307, 1400, 1649, 1570, 1349, 1250, 1206, 1136, 1104, 1078, 1038, 1051, 1058, 1100, 1127, 1174, 1221, 1300, 1388, 1570, 1470, 1316, 1256, 1199, 1131, 1089, 1075, 1056, 1040, 1046, 1086, 1111, 1168, 1227, 1288, 1393, 1571, 1491, 1334, 1257, 1201, 1146, 1104, 1069, 1040, 1034, 1040, 1079, 1126, 1159, 1229, 1289, 1392, 1567, 1506, 1312, 1269, 1199, 1157, 1125, 1079, 1050, 1025, 1060, 1079, 1114, 1182, 1240, 1301, 1385, 1556, 1467, 1355, 1261, 1219, 1151, 1109, 1075, 1046, 1022, 1056, 1085, 1131, 1202, 1247, 1326, 1393, 1592, 1518, 1340, 1295, 1208, 1154, 1111, 1067, 1039, 1024, 1048, 1087, 1145, 1191, 1250, 1328, 1416, 1568, 1515, 1355, 1277, 1205, 1151, 1109, 1075, 1037, 1022, 1056, 1085, 1143, 1189, 1247, 1326, 1393, 1592, 1482, 1347, 1254, 1199, 1145, 1114, 1069, 1041, 1044, 1050, 1089, 1125, 1169, 1240, 1318, 1405, 1610, 1491, 1334, 1257, 1215, 1159, 1115, 1079, 1050, 1044, 1060, 1090, 1137, 1184, 1243, 1340, 1392, 1594, 1519, 1353, 1256, 1199, 1143, 1123, 1086, 1066, 1049, 1056, 1097, 1134, 1181, 1242, 1305, 1393, 1627, 1570, 1349, 1266, 1192, 1149, 1115, 1078, 1068, 1062, 1058, 1100, 1139, 1174, 1235, 1317, 1409, 1657, 1589, 1379, 1256, 1210, 1163, 1127, 1100, 1088, 1071, 1088, 1111, 1127, 1176, 1240, 1343, 1421, 1714, 1666, 1384, 1291, 1224, 1148, 1124, 1119, 1106, 1087, 1095, 1131, 1162, 1188, 1272, 1346, 1451, 1807, 1739, 1477, 1326, 1235, 1196, 1142, 1148, 1098, 1126, 1135, 1136, 1182, 1226, 1303, 1386, 1529, 1900]
                                       }
                                   }],
                               "tableAll_len":    28
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-007, 1.27247e-010]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [1.1451, 2.9355],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.7395, 2.4975],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.5649, 1.6461],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.9608, 1.4897],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [2.0597, 1.3804],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.9434, 3.4538],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.4948, 2.417],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5374, 0.202, -0.7395, -0.5961, 1.9426, -0.3464, -0.0053, -0.918, 1.9232],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1663, 0.4336, -0.5998, -0.4126, 1.7226, -0.31, 0.0237, -0.3937, 1.37],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8016, -0.3482, -0.4534, -0.3316, 1.5241, -0.1925, -0.0119, -0.6631, 1.675],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4224, -0.0725, -0.3499, -0.1561, 1.3138, -0.1577, 0.0796, -0.3042, 1.2246],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8371, -0.3636, -0.4734, -0.4105, 1.8446, -0.4341, -0.0879, -0.4415, 1.5294],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4371, -0.0297, -0.4074, -0.226, 1.6052, -0.3792, 0.0117, -0.0858, 1.074],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8772, -0.4238, -0.4534, -0.3112, 1.6487, -0.3375, -0.0597, -0.481, 1.5406],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4859, -0.1099, -0.376, -0.1334, 1.4245, -0.2911, 0.0517, -0.1508, 1.099],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.1607, -0.7298, -0.4309, -0.5815, 1.7381, -0.1566, -0.055, -0.5645, 1.6195],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6767, -0.349, -0.3277, -0.3525, 1.478, -0.1255, 0.0359, -0.2251, 1.1891],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.9017, -0.3994, -0.5023, -0.5079, 1.7117, -0.2037, -0.0221, -0.7049, 1.7271],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4771, -0.087, -0.39, -0.306, 1.476, -0.17, 0.0525, -0.3116, 1.2592],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5906, 0.4429, -1.0335, -0.766, 2.1727, -0.4067, -0.1546, -1.0204, 2.175],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1794, 0.6625, -0.8419, -0.5645, 1.9438, -0.3793, -0.113, -0.4188, 1.5318],
                                       "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_v30":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_CONTINUOUS_PICTURE",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "win_v_size":    0,
                               "video_win_h_offs":    0,
                               "video_win_v_offs":    0,
                               "video_win_h_size":    0,
                               "video_win_v_size":    0,
                               "fixed_mode":    {
                                   "code":    8
                               },
                               "macro_mode":    {
                                   "code":    32
                               },
                               "infinity_mode":    {
                                   "code":    32
                               },
                               "contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "FullRangeTbl_len":    9,
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "AdaptRangeTbl_len":    9,
                                   "TrigThers":    [0.075],
                                   "TrigThers_len":    1,
                                   "TrigThersFv":    [0],
                                   "TrigThersFv_len":    1,
                                   "LumaTrigThers":    1,
                                   "ExpTrigThers":    1,
                                   "StableThers":    0.02,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    32,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "Stage1QuickFoundThers":    0.04,
                                   "Stage2QuickFoundThers":    0.2,
                                   "FlatValue":    0,
                                   "PointLightLumaTh":    3000,
                                   "PointLightCntTh":    300,
                                   "ZoomCfg":    {
                                       "QuickFoundThersZoomIdx":    [0],
                                       "QuickFoundThersZoomIdx_len":    1,
                                       "QuickFoundThers":    [0],
                                       "QuickFoundThers_len":    1,
                                       "SearchStepZoomIdx":    [0],
                                       "SearchStepZoomIdx_len":    1,
                                       "SearchStep":    [0],
                                       "SearchStep_len":    1,
                                       "StopStepZoomIdx":    [0],
                                       "StopStepZoomIdx_len":    1,
                                       "StopStep":    [0],
                                       "StopStep_len":    1,
                                       "SkipHighPassZoomIdx":    0,
                                       "SkipHighPassGain":    0
                                   }
                               },
                               "video_contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "FullRangeTbl_len":    9,
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64],
                                   "AdaptRangeTbl_len":    9,
                                   "TrigThers":    [0.15],
                                   "TrigThers_len":    1,
                                   "TrigThersFv":    [0],
                                   "TrigThersFv_len":    1,
                                   "LumaTrigThers":    1,
                                   "ExpTrigThers":    1,
                                   "StableThers":    0.02,
                                   "StableFrames":    20,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "OutFocusPos":    32,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "Stage1QuickFoundThers":    0.04,
                                   "Stage2QuickFoundThers":    0.2,
                                   "FlatValue":    0,
                                   "PointLightLumaTh":    3000,
                                   "PointLightCntTh":    300,
                                   "ZoomCfg":    {
                                       "QuickFoundThersZoomIdx":    [0],
                                       "QuickFoundThersZoomIdx_len":    1,
                                       "QuickFoundThers":    [0],
                                       "QuickFoundThers_len":    1,
                                       "SearchStepZoomIdx":    [0],
                                       "SearchStepZoomIdx_len":    1,
                                       "SearchStep":    [0],
                                       "SearchStep_len":    1,
                                       "StopStepZoomIdx":    [0],
                                       "StopStepZoomIdx_len":    1,
                                       "StopStep":    [0],
                                       "StopStep_len":    1,
                                       "SkipHighPassZoomIdx":    0,
                                       "SkipHighPassGain":    0
                                   }
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0,
                                   "pdVsCdDebug":    0,
                                   "pdDataBit":    10,
                                   "pdBlkLevel":    64,
                                   "pdSearchRadius":    3,
                                   "pdMirrorInCalib":    1,
                                   "pdWidth":    508,
                                   "pdHeight":    760,
                                   "pdIsoPara": 
                                   [
                                       {
                                           "iso": 50,
                                           "pdNoiseFactor":    0.15,
                                           "pdConfdRatio1":    1,
                                           "pdConfdRatio2":    1,
                                           "pdConfdThresh":    0.4,
                                           "defocusPdThresh":    18,
                                           "stablePdRatio":    0.125,
                                           "stablePdOffset":    8,
                                           "stableCntRatio":    1.5,
                                           "noconfCntThresh":    4,
                                           "fineSearchTbl":    [{
                                               "confidence":    512,
                                               "range":    4,
                                               "stepPos":    1
                                           }, {
                                               "confidence":    256,
                                               "range":    8,
                                               "stepPos":    2
                                           }],
                                           "fineSearchTbl_len":    2
                                       }
                                   ],
                                   "pdIsoPara_len":    1
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0,
                                   "posture_diff":    0.1
                               },
                               "zoomfocus_tbl":    {
                                   "widemod_deviate":    10,
                                   "telemod_deviate":    10,
                                   "zoom_move_dot":    [0],
                                   "zoom_move_dot_len":    1,
                                   "zoom_move_step":    [16],
                                   "zoom_move_step_len":    1,
                                   "focal_length":    [0],
                                   "focal_length_len":    1,
                                   "zoomcode":    [0],
                                   "zoomcode_len":    1,
                                   "focuscode":    [{
                                           "pos":    0.5,
                                           "code":    [0],
                                           "code_len":    1
                                       }, {
                                           "pos":    -1,
                                           "code":    [0],
                                           "code_len":    1
                                       }],
                                   "focuscode_len":    2,
                                   "ZoomSearchTbl":    [0],
                                   "ZoomSearchTbl_len":    1,
                                   "ZoomSearchRefCurveIdx":    0,
                                   "FocusSearchMargin":    50,
                                   "FocusSearchPlusRange":    [0],
                                   "FocusSearchPlusRange_len":    1,
                                   "FocusStage1Step":    1,
                                   "searchZoomRange":    100,
                                   "searchFocusRange":    100,
                                   "searchEmax":    100,
                                   "searchEavg":    100,
                                   "IsZoomFocusRec":    0,
                                   "ZoomInfoDir":    "/userdata"
                               },
                               "zoom_meas":    [{
                                       "zoom_idx":    0,
                                       "measiso":    [{
                                               "iso":    50,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    100,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    200,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    400,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    800,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    1600,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    3200,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    6400,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    12800,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    25600,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    51200,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    102400,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }, {
                                               "iso":    204800,
                                               "idx":    0,
                                               "spotlt_scene_idx":    0
                                           }]
                                   }],
                               "zoom_meas_len":    1,
                               "meascfg_tbl":    [{
                                       "tbl_idx":    0,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "v1_fir_sel":    1,
                                       "v1_iir_coe":    [0, 503, 0, 0, 8, 0, 0, 9, 0],
                                       "v1_fir_coe":    [-1997, 0, 1997],
                                       "v2_iir_coe":    [476, 33, 34],
                                       "v2_fir_coe":    [-985, 0, 985],
                                       "h1_iir1_coe":    [512, 811, -375, 266, 0, -266],
                                       "h1_iir2_coe":    [250, 945, -448, 41, 0, -41],
                                       "h2_iir1_coe":    [512, 557, -276, 460, 0, -460],
                                       "h2_iir2_coe":    [512, 870, -399, 37, 0, -37],
                                       "ldg_en":    0,
                                       "ve_ldg_lumth_l":    64,
                                       "ve_ldg_gain_l":    28,
                                       "ve_ldg_gslp_l":    1286,
                                       "ve_ldg_lumth_h":    185,
                                       "ve_ldg_gain_h":    8,
                                       "ve_ldg_gslp_h":    1400,
                                       "ho_ldg_lumth_l":    64,
                                       "ho_ldg_gain_l":    28,
                                       "ho_ldg_gslp_l":    1286,
                                       "ho_ldg_lumth_h":    185,
                                       "ho_ldg_gain_h":    8,
                                       "ho_ldg_gslp_h":    1400,
                                       "v_fv_thresh":    4,
                                       "h_fv_thresh":    4,
                                       "highlit_thresh":    912
                                   }],
                               "meascfg_tbl_len":    1
                           }
                       },
                       "bayer2dnr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [158, 146, 136, 126, 112, 103, 98, 95, 94, 92, 90, 87, 87, 87, 87, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [197, 186, 176, 168, 155, 147, 142, 138, 135, 131, 126, 119, 111, 101, 90, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [201, 215, 225, 232, 239, 238, 232, 223, 211, 197, 182, 167, 153, 140, 129, 118]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [448, 415, 385, 360, 320, 295, 280, 273, 268, 263, 256, 243, 226, 204, 179, 157]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [585, 551, 521, 495, 455, 428, 411, 399, 389, 378, 363, 344, 319, 289, 257, 227]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1146, 1046, 954, 872, 736, 641, 583, 553, 541, 535, 525, 505, 472, 425, 367, 308]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1941, 1793, 1654, 1523, 1288, 1091, 936, 824, 755, 720, 710, 710, 711, 704, 683, 643]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2759, 2777, 2814, 2866, 3012, 3197, 3401, 3607, 3797, 3955, 4065, 4109, 4062, 3895, 3554, 2939]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398]
                                           }],
                                       "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":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1255, 1216]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.5,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.65,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    0,
                                               "filter_strength":    0.8,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    1,
                                               "ratio":    0.01,
                                               "weight":    0.92
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "bayertnr_v2":    {
                           "Version":    "V2",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [158, 146, 136, 126, 112, 103, 98, 95, 94, 92, 90, 87, 87, 87, 87, 87],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [197, 186, 176, 168, 155, 147, 142, 138, 135, 131, 126, 119, 111, 101, 90, 87],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [201, 215, 225, 232, 239, 238, 232, 223, 211, 197, 182, 167, 153, 140, 129, 118],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [47, 47, 61, 72, 82, 84, 82, 77, 70, 62, 52, 47, 47, 47, 47, 47],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [448, 415, 385, 360, 320, 295, 280, 273, 268, 263, 256, 243, 226, 204, 179, 157],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 35, 54, 63, 65, 64, 61, 55, 48, 39, 32, 32, 32, 32],
                                               "hi_sigma":    [448, 415, 385, 360, 320, 295, 280, 273, 268, 263, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [585, 551, 521, 495, 455, 428, 411, 399, 389, 378, 363, 344, 319, 289, 257, 227],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 43, 58, 64, 65, 62, 58, 52, 45, 37, 32, 32, 32, 32],
                                               "hi_sigma":    [536, 512, 491, 473, 445, 426, 414, 406, 399, 391, 381, 367, 349, 328, 306, 305]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1146, 1046, 954, 872, 736, 641, 583, 553, 541, 535, 525, 505, 472, 425, 367, 308],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [85, 85, 101, 109, 117, 121, 121, 120, 117, 113, 109, 104, 99, 95, 91, 89],
                                               "hi_sigma":    [842, 815, 789, 767, 730, 704, 687, 679, 676, 674, 672, 666, 657, 644, 628, 612]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1941, 1793, 1654, 1523, 1288, 1091, 936, 824, 755, 720, 710, 710, 711, 704, 683, 643],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [88, 91, 105, 112, 120, 123, 124, 124, 122, 121, 119, 117, 115, 113, 111, 108],
                                               "hi_sigma":    [1407, 1381, 1356, 1333, 1291, 1256, 1229, 1209, 1197, 1191, 1189, 1189, 1189, 1188, 1184, 1177]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [81, 95, 103, 109, 115, 118, 118, 117, 114, 110, 106, 102, 97, 93, 88, 83],
                                               "hi_sigma":    [1438, 1418, 1402, 1389, 1374, 1369, 1369, 1370, 1369, 1363, 1352, 1333, 1307, 1273, 1227, 1208]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2759, 2777, 2814, 2866, 3012, 3197, 3401, 3607, 3797, 3955, 4065, 4109, 4062, 3895, 3554, 2939],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [443, 446, 447, 448, 447, 445, 441, 436, 431, 425, 420, 415, 413, 412, 413, 413],
                                               "hi_sigma":    [3319, 3322, 3328, 3337, 3362, 3394, 3428, 3464, 3496, 3523, 3542, 3549, 3541, 3513, 3455, 3350]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [541, 542, 542, 542, 542, 541, 539, 537, 534, 531, 528, 524, 520, 516, 511, 505],
                                               "hi_sigma":    [4975, 4957, 4942, 4930, 4918, 4919, 4932, 4953, 4980, 5009, 5038, 5066, 5093, 5116, 5135, 5149]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [541, 542, 542, 542, 542, 541, 539, 537, 534, 531, 528, 524, 520, 516, 511, 505],
                                               "hi_sigma":    [4975, 4957, 4942, 4930, 4918, 4919, 4932, 4953, 4980, 5009, 5038, 5066, 5093, 5116, 5135, 5149]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [541, 542, 542, 542, 542, 541, 539, 537, 534, 531, 528, 524, 520, 516, 511, 505],
                                               "hi_sigma":    [4975, 4957, 4942, 4930, 4918, 4919, 4932, 4953, 4980, 5009, 5038, 5066, 5093, 5116, 5135, 5149]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4345, 4130, 3953, 3816, 3669, 3683, 3834, 4084, 4396, 4738, 5086, 5422, 5732, 6005, 6230, 6398],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [541, 542, 542, 542, 542, 541, 539, 537, 534, 531, 528, 524, 520, 516, 511, 505],
                                               "hi_sigma":    [4975, 4957, 4942, 4930, 4918, 4919, 4932, 4953, 4980, 5009, 5038, 5066, 5093, 5116, 5135, 5149]
                                           }],
                                       "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":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [254, 240, 228, 219, 204, 195, 189, 186, 182, 178, 172, 163, 152, 138, 124, 110],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                               "hi_sigma":    [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 255, 246, 233, 216, 196, 173, 152],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [32, 32, 32, 32, 51, 61, 65, 66, 64, 59, 52, 43, 32, 32, 32, 32],
                                               "hi_sigma":    [378, 356, 336, 320, 295, 280, 271, 266, 261, 256, 256, 256, 256, 256, 256, 256]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [512, 486, 465, 446, 418, 399, 387, 377, 368, 358, 344, 325, 302, 276, 248, 223],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [36, 36, 36, 45, 63, 70, 72, 71, 67, 63, 58, 53, 50, 47, 45, 43],
                                               "hi_sigma":    [499, 476, 457, 440, 415, 398, 387, 379, 370, 361, 348, 332, 311, 287, 269, 269]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [785, 738, 697, 661, 605, 568, 544, 528, 517, 504, 487, 465, 435, 397, 355, 311],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [34, 38, 47, 53, 61, 66, 69, 70, 71, 71, 71, 70, 68, 65, 61, 53],
                                               "hi_sigma":    [663, 641, 621, 603, 576, 558, 546, 539, 533, 527, 519, 508, 493, 475, 454, 433]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1282, 1177, 1083, 1002, 874, 792, 748, 730, 725, 720, 707, 681, 638, 580, 508, 434],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [75, 78, 80, 81, 80, 78, 77, 78, 82, 88, 95, 102, 108, 111, 111, 103],
                                               "hi_sigma":    [973, 945, 919, 897, 862, 840, 828, 824, 822, 821, 817, 810, 799, 783, 763, 743]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2390, 2205, 2055, 1938, 1797, 1749, 1750, 1760, 1749, 1696, 1589, 1419, 1179, 859, 832, 827],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [81, 95, 103, 109, 115, 118, 118, 117, 114, 110, 106, 102, 97, 93, 88, 83],
                                               "hi_sigma":    [1438, 1418, 1402, 1389, 1374, 1369, 1369, 1370, 1369, 1363, 1352, 1333, 1307, 1273, 1227, 1208]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1149, 1244, 1508, 1745, 2143, 2446, 2656, 2773, 2798, 2732, 2574, 2326, 1987, 1561, 1055, 1016],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [228, 232, 235, 237, 237, 236, 233, 229, 225, 221, 218, 216, 213, 211, 207, 200],
                                               "hi_sigma":    [1586, 1615, 1642, 1666, 1706, 1737, 1758, 1770, 1772, 1765, 1749, 1724, 1690, 1647, 1596, 1542]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1700, 2047, 2300, 2494, 2763, 2928, 3023, 3071, 3083, 3069, 3028, 2961, 2858, 2706, 2481, 2134],
                                               "lumapoint2":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "lo_sigma":    [283, 282, 280, 280, 281, 282, 284, 285, 285, 284, 282, 278, 273, 266, 258, 249],
                                               "hi_sigma":    [2276, 2334, 2376, 2409, 2454, 2481, 2497, 2505, 2507, 2505, 2498, 2487, 2469, 2444, 2406, 2349]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    100,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    200,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.3,
                                               "hi_filter_strength":    1.3,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    1600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    3200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    6400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    12800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    25600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    51200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    102400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    204800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    100,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    0.8,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    200,
                                               "thumbds":    8,
                                               "lo_enable":    0,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1,
                                               "hi_filter_strength":    1,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.3,
                                               "hi_filter_strength":    1.3,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    1600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    3200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    1.5,
                                               "hi_filter_strength":    1.5,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    6400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    1,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    12800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    25600,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    51200,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    102400,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }, {
                                               "iso":    204800,
                                               "thumbds":    8,
                                               "lo_enable":    1,
                                               "hi_enable":    0,
                                               "lo_gsbay_en":    1,
                                               "lo_gslum_en":    1,
                                               "lo_med_en":    1,
                                               "hi_med_en":    1,
                                               "hi_gslum_en":    1,
                                               "hi_wgt_comp":    0.16,
                                               "clipwgt":    0.03215,
                                               "global_pk_en":    0,
                                               "global_pksq":    1024,
                                               "hidif_th":    32767,
                                               "lo_filter_strength":    2,
                                               "hi_filter_strength":    2,
                                               "soft_threshold_ratio":    0
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v2":    {
                           "Version":    "V2",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    14,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    14,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.8
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.6
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    20,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "global_gain":    1,
                                               "global_gain_alpha":    0,
                                               "local_gain_scale":    1,
                                               "gain_adj_strength_ratio":    [256, 256, 128, 85, 64, 43, 32, 21, 16, 8, 4, 1, 1],
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.5,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    24,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    0.5
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v3":    {
                           "Version":    "V3",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-3.65009e-013, 2.59159e-009, -5.24737e-006, 0.000790745, 20.4168],
                                               "ynr_lci":    0.251922,
                                               "ynr_hci":    0.23319
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-5.94398e-013, 4.44425e-009, -1.01139e-005, 0.00504042, 25.5466],
                                               "ynr_lci":    0.249047,
                                               "ynr_hci":    0.226359
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.08005e-012, 8.85242e-009, -2.31783e-005, 0.0165142, 36.6214],
                                               "ynr_lci":    0.25702,
                                               "ynr_hci":    0.211843
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.47514e-012, 1.1226e-008, -2.6723e-005, 0.0164238, 48.7034],
                                               "ynr_lci":    0.249129,
                                               "ynr_hci":    0.209947
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-2.45617e-012, 1.86278e-008, -4.38764e-005, 0.0260043, 70.9174],
                                               "ynr_lci":    0.247271,
                                               "ynr_hci":    0.204683
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-2.76288e-012, 2.08963e-008, -4.93817e-005, 0.0264741, 106.463],
                                               "ynr_lci":    0.255242,
                                               "ynr_hci":    0.201645
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-8.32578e-012, 6.54101e-008, -0.000164629, 0.123896, 138.842],
                                               "ynr_lci":    0.257242,
                                               "ynr_hci":    0.196339
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-1.04235e-011, 8.30699e-008, -0.000214992, 0.174099, 165.13],
                                               "ynr_lci":    0.238196,
                                               "ynr_hci":    0.189897
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-1.30906e-011, 1.06715e-007, -0.000295024, 0.262197, 280.38],
                                               "ynr_lci":    0.224342,
                                               "ynr_hci":    0.171407
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-1.28786e-011, 1.11716e-007, -0.00037268, 0.480249, 288.25],
                                               "ynr_lci":    0.254985,
                                               "ynr_hci":    0.177361
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-1.28786e-011, 1.11716e-007, -0.00037268, 0.480249, 288.25],
                                               "ynr_lci":    0.254985,
                                               "ynr_hci":    0.177361
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-1.28786e-011, 1.11716e-007, -0.00037268, 0.480249, 288.25],
                                               "ynr_lci":    0.254985,
                                               "ynr_hci":    0.177361
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-1.28786e-011, 1.11716e-007, -0.00037268, 0.480249, 288.25],
                                               "ynr_lci":    0.254985,
                                               "ynr_hci":    0.177361
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.02752e-012, 8.19065e-009, -2.13868e-005, 0.0188089, 26.7599],
                                               "ynr_lci":    0.255305,
                                               "ynr_hci":    0.225106
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-1.65677e-012, 1.3799e-008, -3.89045e-005, 0.0398789, 31.7414],
                                               "ynr_lci":    0.261701,
                                               "ynr_hci":    0.217753
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-2.7329e-012, 2.22519e-008, -6.04135e-005, 0.0580665, 46.058],
                                               "ynr_lci":    0.263882,
                                               "ynr_hci":    0.21407
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-3.68924e-012, 2.8985e-008, -7.35895e-005, 0.0593183, 78.7866],
                                               "ynr_lci":    0.253759,
                                               "ynr_hci":    0.207854
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-6.79955e-012, 5.35954e-008, -0.000136877, 0.113719, 106.702],
                                               "ynr_lci":    0.261677,
                                               "ynr_hci":    0.206287
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-1.04235e-011, 8.30699e-008, -0.000214992, 0.174099, 165.13],
                                               "ynr_lci":    0.238196,
                                               "ynr_hci":    0.189897
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-1.56028e-011, 1.28796e-007, -0.000360655, 0.360025, 166.39],
                                               "ynr_lci":    0.248733,
                                               "ynr_hci":    0.18978
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-1.64045e-011, 1.37067e-007, -0.000412921, 0.483247, 191.696],
                                               "ynr_lci":    0.257712,
                                               "ynr_hci":    0.186272
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.7,
                                               "low_bf2":    0.7,
                                               "low_thred_adj":    0.7,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.7,
                                               "low_bf2":    0.7,
                                               "low_thred_adj":    0.7,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1,
                                               "low_bf2":    1,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.25,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.65,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.3,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.75,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.5,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.5,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.7,
                                               "low_bf2":    0.7,
                                               "low_thred_adj":    0.7,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1,
                                               "low_bf2":    1,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.7,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.3,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.45,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    1.5,
                                               "low_bf2":    1.5,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.2,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.78,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "ynr_global_gain_alpha":    0,
                                               "ynr_global_gain":    1,
                                               "ynr_adjust_thresh":    1,
                                               "ynr_adjust_scale":    1,
                                               "lumaPara":    {
                                                   "lo_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "lo_ratio":    [1, 1, 1, 1, 1, 1],
                                                   "hi_lumaPoint":    [0, 32, 64, 128, 192, 256],
                                                   "hi_ratio":    [1, 1, 1, 1, 1, 1]
                                               },
                                               "low_bf1":    0.5,
                                               "low_bf2":    0.5,
                                               "low_thred_adj":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_lbf_weight_thresh":    0.25,
                                               "low_center_weight":    0.3,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "low_filt1_strength":    0.7,
                                               "low_filt2_strength":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight1":    0.28,
                                               "base_filter_weight2":    0.46,
                                               "base_filter_weight3":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.78,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v4":    {
                           "Version":    "V4",
                           "TuningPara":    {
                               "enable":    1,
                               "kernel_sigma_enable": 0,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.6,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 56, 48, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.7,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.7,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 36, 32],
                                                   "hf_clip":    [48, 80, 120, 140, 160, 140, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 140, 120, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 160, 120, 100, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 86, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 48, 64, 80, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    1,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 56, 48, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 16, 16],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.5,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.6,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 56, 48, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 80],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    5,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.7,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [80, 96, 128, 160, 192, 160, 100, 0],
                                                   "local_sharp_strength":    [320, 320, 320, 320, 320, 320, 320, 320]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.7,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.7,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 36, 32],
                                                   "hf_clip":    [48, 80, 120, 140, 160, 140, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 140, 120, 100, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 100, 120, 160, 120, 100, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 86, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    0,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    0,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 48, 64, 80, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.9,
                                               "bf_add":    1,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 56, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 56, 48, 48, 40, 32, 32],
                                                   "hf_clip":    [32, 64, 80, 100, 120, 100, 80, 0],
                                                   "local_sharp_strength":    [200, 200, 200, 200, 200, 200, 200, 200]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.0632, 0.0558, 0.0492, 0.0383, 0.0338, 0.0232],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               },
                                               "kernel_sigma":    {
                                                   "prefilter_sigma":    1.0,
                                                   "GaussianFilter_sigma":    2.0,
                                                   "GaussianFilter_radius":    2.0,
                                                   "hfBilateralFilter_sigma":    1.0
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cac_calib":    {
                           "SettingPara":    {
                               "enable":    0,
                               "psf_path":    "/etc/iqfiles/cac/cac_map_64x48x34_br0.bin",
                               "psf_shift_bits":    2,
                               "center_en":    0,
                               "center_x":    0,
                               "center_y":    0
                           },
                           "TuningPara":    {
                               "SettingByIso":    [{
                                       "iso":    50,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    100,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    1600,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    3200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    6400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    12800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    25600,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    51200,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    102400,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    204800,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }, {
                                       "iso":    409600,
                                       "bypass":    0,
                                       "strength_table":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   }],
                               "SettingByIso_len":    14
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}