hc
2023-02-14 796a7ef0befd21e25c2b9e42f53a6d7a4421941d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
{
   "sensor_calib":    {
       "resolution":    {
           "width":    3264,
           "height":    2448
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 16, 128, 0, 1, 128, 2047],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    16
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    4,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 4]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    0,
           "hdr_mode":    "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
           "line_mode":    "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
       },
       "CISDcgSet":    {
           "Linear":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    1,
               "sync_switch":    0,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           },
           "Hdr":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    3.5,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    2
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    3
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    1.6,
           "EFL":    5.2,
           "LensT":    90,
           "IRCutT":    90
       }
   },
   "main_scene":    [{
           "name":    "normal",
           "sub_scene":    [{
                   "name":    "day",
                   "scene_isp21":    {
                       "ae_calib":    {
                           "CommCtrl":    {
                               "Enable":    1,
                               "AecRunInterval":    0,
                               "AecOpType":    "RK_AIQ_OP_MODE_AUTO",
                               "HistStatsMode":    "CAM_HISTV2_MODE_Y",
                               "RawStatsMode":    "CAM_RAWSTATSV2_MODE_Y",
                               "YRangeMode":    "CAM_YRANGEV2_MODE_FULL",
                               "AecGridWeight":    [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 15, 15, 15, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 13, 13, 13, 13, 13, 10, 8, 5, 2, 1, 1, 2, 5, 8, 10, 10, 10, 10, 10, 10, 10, 8, 5, 2, 1, 1, 2, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 2, 1, 1, 2, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 2, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.02,
                                       "GainValue":    6,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "DampOver":    0.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    2,
                                   "WhiteDelay":    2
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    24
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.0286, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.003,
                                   "InitGainValue":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.04, 0.04, 0.04, 0.04, 0.04],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 4, 8, 15.5, 16],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 2],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.032, 0.064, 0.192, 0.32, 0.448],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [45, 45, 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.032, 0.064, 0.128, 0.192, 0.32, 0.448],
                                       "ExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
                                       "LowLightPdfTh_len":    6,
                                       "TargetLLLuma":    [25, 22, 20, 18, 15, 12],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "OverExpCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MaxWeight":    8,
                                   "HighLightTh":    150,
                                   "LowLightTh":    30,
                                   "OverExpSetPoint":    {
                                       "OEpdf":    [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
                                       "OEpdf_len":    6,
                                       "LowLightWeight":    [1, 1, 1, 1, 1, 1],
                                       "LowLightWeight_len":    6,
                                       "HighLightWeight":    [4, 3, 3, 3, 2, 2],
                                       "HighLightWeight_len":    6
                                   }
                               }
                           },
                           "HdrAeCtrl":    {
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "LumaDistTh":    10,
                               "InitExp":    {
                                   "InitTimeValue":    [0.0005, 0.003, 0.003],
                                   "InitGainValue":    [1, 1, 1],
                                   "InitIspDGainValue":    [1, 1, 1],
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "Frm0TimeDot":    [0, 0.003, 0.003, 0.003, 0.003, 0.003],
                                   "Frm0TimeDot_len":    6,
                                   "Frm0GainDot":    [1, 1, 4, 8, 15.5, 32],
                                   "Frm0GainDot_len":    6,
                                   "Frm0IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm0IspDGainDot_len":    6,
                                   "Frm1TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm1TimeDot_len":    6,
                                   "Frm1GainDot":    [1, 1, 4, 8, 15.5, 64],
                                   "Frm1GainDot_len":    6,
                                   "Frm1IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm1IspDGainDot_len":    6,
                                   "Frm2TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm2TimeDot_len":    6,
                                   "Frm2GainDot":    [1, 1, 4, 8, 15.5, 64],
                                   "Frm2GainDot_len":    6,
                                   "Frm2IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm2IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "ExpRatioCtrl":    {
                                   "ExpRatioType":    "AECV2_HDR_RATIOTYPE_MODE_AUTO",
                                   "ExpRatio":    {
                                       "RatioExpDot":    [0, 0.1, 0.3, 0.5, 0.7, 1],
                                       "RatioExpDot_len":    6,
                                       "M2SRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "M2SRatioFix_len":    6,
                                       "L2MRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "L2MRatioFix_len":    6,
                                       "M2SRatioMax":    [64, 64, 64, 64, 64, 64],
                                       "M2SRatioMax_len":    6,
                                       "L2MRatioMax":    [32, 32, 30, 28, 26, 24],
                                       "L2MRatioMax_len":    6
                                   }
                               },
                               "LongFrmMode":    {
                                   "mode":    "AECV2_HDR_LONGFRMMODE_NORMAL",
                                   "SfrmMinLine":    2,
                                   "LfrmModeExpTh":    0.62
                               },
                               "LframeCtrl":    {
                                   "OEROILowTh":    150,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "LfrmSetPoint":    {
                                       "LExpLevel":    [0, 0.0192, 0.0576, 0.096, 0.192, 0.384],
                                       "LExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
                                       "LowLightPdfTh_len":    6,
                                       "LSetPoint":    [75, 70, 65, 60, 45, 40],
                                       "LSetPoint_len":    6,
                                       "TargetLLLuma":    [35, 32, 30, 28, 25, 20],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "MframeCtrl":    {
                                   "MExpLevel":    [0.096, 0.192, 0.384, 0.96, 1.344, 1.92],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
                                       "SExpLevel_len":    6,
                                       "SSetPoint":    [18, 18, 15, 12, 12, 12],
                                       "SSetPoint_len":    6,
                                       "TargetHLLuma":    [100, 100, 100, 90, 80, 70],
                                       "TargetHLLuma_len":    6
                                   }
                               }
                           },
                           "IrisCtrl":    {
                               "Enable":    0,
                               "IrisType":    "IRISV2_DC_TYPE",
                               "ManualEn":    0,
                               "ManualAttr":    {
                                   "PIrisGainValue":    1,
                                   "DCIrisHoldValue":    30
                               },
                               "InitAttr":    {
                                   "PIrisGainValue":    512,
                                   "DCIrisHoldValue":    100
                               },
                               "PIrisAttr":    {
                                   "TotalStep":    81,
                                   "EffcStep":    44,
                                   "ZeroIsMax":    1,
                                   "StepTable":    [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               },
                               "DCIrisAttr":    {
                                   "Kp":    0.5,
                                   "Ki":    0.2,
                                   "Kd":    0.3,
                                   "MinPwmDuty":    0,
                                   "MaxPwmDuty":    100,
                                   "OpenPwmDuty":    40,
                                   "ClosePwmDuty":    22
                               }
                           },
                           "SyncTest":    {
                               "Enable":    0,
                               "IntervalFrm":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [1.0749, 1, 1, 2.2012],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    1,
                               "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":    [6],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [9],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [6],
                                   "minB_len":    1,
                                   "maxY":    [210],
                                   "maxY_len":    1,
                                   "minY":    [9],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.373015, 0.375845, 0.25114],
                                   "rotationMat":    [-0.580628, 0.814169, -0.161183, 0.814169, 0.580628, 0.38546, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.046875, 0.138672, 0.013672, 28.3125, -0.085938, 0.009766, 0.072266, 130.625, 0.044922, -0.064453, 0.052734, 114.312, 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":    1,
                               "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.0749, 1, 1, 2.2012],
                                       "uvRegion":    {
                                           "u":    [124, 53, 54, 124.5],
                                           "v":    [129, 137.5, 119.5, 127.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.0085, -0.7459, 0.1376, -0.1103],
                                           "big":    [-1.0167, -0.7377, 0.2146, -0.1817]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 134.562, 114.375, 187.375, 98.375, 115.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.3663, 1, 1, 2.0281],
                                       "uvRegion":    {
                                           "u":    [56.5, 68, 124, 124],
                                           "v":    [100, 75, 125, 126.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.7481, -0.4402, -0.0099, -0.1977],
                                           "big":    [-0.7622, -0.4293, 0.0077, -0.2452]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 132.312, 115, 190.062, 114.812, 109],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.5132, 1, 1, 1.5856],
                                       "uvRegion":    {
                                           "u":    [68, 88.5, 126, 124.5],
                                           "v":    [74.5, 59, 124.5, 125.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.435, -0.1304, 0.2005, -0.2643],
                                           "big":    [-0.4394, -0.1229, 0.2368, -0.3437]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 130.438, 114.375, 191, 129.688, 113.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.7069, 1, 1, 1.3911],
                                       "uvRegion":    {
                                           "u":    [88.5, 110, 127.5, 126],
                                           "v":    [59, 48, 123, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.1333, 0.0912, 0.0798, -0.2432],
                                           "big":    [-0.1401, 0.0901, 0.1323, -0.264]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 129.062, 114.5, 190.562, 141.5, 114],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.7812, 1, 1, 1.279],
                                       "uvRegion":    {
                                           "u":    [129, 127.5, 110, 126],
                                           "v":    [123.5, 123.5, 47, 41.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0921, 0.3612, 0.0768, -0.107],
                                           "big":    [0.0923, 0.3881, 0.1234, -0.2101]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 128.125, 114.312, 189.875, 148.25, 116.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.9179, 1, 1, 2.3798],
                                       "uvRegion":    {
                                           "u":    [123.5, 53, 52.5, 124],
                                           "v":    [130.5, 160, 138.5, 129]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.3203, -1.0092, 0.1094, -0.0937],
                                           "big":    [-1.375, -1.0014, 0.1767, -0.1723]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 135.625, 114.562, 184.375, 87.1875, 118.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.2337, 1, 1, 1.9372],
                                       "uvRegion":    {
                                           "u":    [124.5, 54, 56.5, 124.5],
                                           "v":    [127.5, 119, 100, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.745, -0.4418, 0.1554, -0.0049],
                                           "big":    [-0.7653, -0.4239, 0.2253, -0.0086]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [255, 255, 255, 255, 255, 255],
                                           "lineVector":    [10, 132.625, 114.812, 189.688, 110.688, 113.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.3663, 1, 1, 2.0281],
                                       "defaultDayGainHigh":    [1.5132, 1, 1, 1.5856],
                                       "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.0749, 1, 1, 2.2012],
                               "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":    17.9008,
                                           "meanH":    28.975
                                       }, {
                                           "index":    13,
                                           "meanC":    15.6608,
                                           "meanH":    -78.8448
                                       }, {
                                           "index":    5,
                                           "meanC":    7.64584,
                                           "meanH":    -74.9411
                                       }, {
                                           "index":    10,
                                           "meanC":    8.37711,
                                           "meanH":    -38.597
                                       }, {
                                           "index":    14,
                                           "meanC":    11.3015,
                                           "meanH":    148.208
                                       }, {
                                           "index":    16,
                                           "meanC":    20.278,
                                           "meanH":    85.2858
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    1.07488,
                                           "BGain":    2.2012
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.51317,
                                           "BGain":    1.58565
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.23368,
                                           "BGain":    1.93719
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8777, -0.4792, -2.7529],
                               "lineRgProjCCT":    [1, -0.0002, 0.638],
                               "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]
                               }
                           }
                       },
                       "agamma_calib":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_segnum":    "GAMMATYPE_LOG",
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1325, 1462, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
                           }
                       },
                       "ablc_calib":    {
                           "BlcTuningPara":    {
                               "enable":    1,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [64, 62.625, 63, 64, 64.5625, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [64, 62.8125, 63, 63.75, 62, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [64, 63.125, 63, 63.0625, 58.9375, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [64, 62.875, 63, 63, 63.3125, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_R":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_G":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_B":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                           }
                       },
                       "agic_calib_v21":    {
                           "GicTuningPara":    {
                               "enable":    0,
                               "gr_ration":    0,
                               "GicData":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "ISO_len":    9,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    9,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    9,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    9,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    9,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    9,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    9,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    9,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    9,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    9,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    9,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    9,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    9,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    9,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    9,
                                   "noiseCurve_0":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_0_len":    9,
                                   "noiseCurve_1":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_1_len":    9,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    9,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    9,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    9,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    9
                               }
                           }
                       },
                       "adehaze_calib_v21":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1.25, 1.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
                                       "enhance_chroma_len":    9
                                   }
                               },
                               "hist_setting":    {
                                   "en":    0,
                                   "hist_para_en":    1,
                                   "HistData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "hist_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_gratio_len":    9,
                                       "hist_th_off":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "hist_th_off_len":    9,
                                       "hist_k":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_k_len":    9,
                                       "hist_min":    [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
                                       "hist_min_len":    9,
                                       "hist_scale":    [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
                                       "hist_scale_len":    9,
                                       "cfg_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "cfg_gratio_len":    9
                                   }
                               }
                           }
                       },
                       "adpcc_calib":    {
                           "DpccTuningPara":    {
                               "Enable":    1,
                               "Fast_Mode":    {
                                   "Fast_mode_en":    0,
                                   "Single_enable":    0,
                                   "Double_enable":    0,
                                   "Triple_enable":    0,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Triple_level_len":    13
                                   }
                               },
                               "Expert_Mode":    {
                                   "stage1_Enable":    1,
                                   "grayscale_mode":    0,
                                   "dpcc_out_sel":    1,
                                   "stage1_g_3x3":    0,
                                   "stage1_rb_3x3":    0,
                                   "stage1_inc_rb_center":    1,
                                   "stage1_inc_g_center":    1,
                                   "rk_out_sel":    1,
                                   "SetEnable":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "fix_set":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set2":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set3":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "g_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_thr":    [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
                                           "rb_line_mad_fac":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_mad_fac":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_line_thr":    [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "OECurve":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "Smooth_len":    13,
                                   "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                   "Offset_len":    13
                               },
                               "MDCurve":    {
                                   "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "MoveCoef_len":    13,
                                   "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "LM_smooth_len":    13,
                                   "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "LM_offset_len":    13,
                                   "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "MS_smooth_len":    13,
                                   "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "MS_offset_len":    13
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    1,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "orb":    {
                           "param":    {
                               "orb_en":    0
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    0,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "3264x2448",
                                       "lsc_sect_size_x":    [204, 204, 204, 204, 204, 204, 204, 204],
                                       "lsc_sect_size_y":    [153, 153, 153, 153, 153, 153, 153, 153]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.2479, 2.0135],
                                       "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
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.3706, 2.02],
                                       "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":    "A",
                                       "wbGain":    [1.0628, 2.2559],
                                       "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":    "D50",
                                       "wbGain":    [1.6624, 1.5783],
                                       "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":    "HZ",
                                       "wbGain":    [0.9047, 2.4496],
                                       "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":    "D65",
                                       "wbGain":    [1.6685, 1.4238],
                                       "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.7488, 1.3039],
                                       "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":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 10, 31, 64],
                                       "gains_len":    4,
                                       "vig":    [90, 60, 25, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "3264x2448_TL84_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4682, 4090, 3650, 3344, 2991, 2652, 2478, 2349, 2204, 2271, 2357, 2572, 2853, 3173, 3555, 3902, 4243, 4217, 3836, 3500, 3044, 2642, 2325, 2102, 1956, 1891, 1923, 2015, 2169, 2469, 2853, 3218, 3710, 4115, 4041, 3650, 3173, 2738, 2333, 2015, 1791, 1685, 1620, 1624, 1723, 1886, 2155, 2524, 2978, 3429, 3836, 3924, 3395, 2901, 2478, 2076, 1777, 1586, 1460, 1406, 1423, 1495, 1652, 1907, 2256, 2694, 3158, 3670, 3710, 3203, 2694, 2256, 1865, 1583, 1403, 1303, 1250, 1262, 1342, 1470, 1689, 2039, 2425, 2978, 3482, 3555, 3058, 2533, 2083, 1706, 1445, 1293, 1189, 1161, 1165, 1223, 1347, 1547, 1840, 2271, 2805, 3361, 3482, 2926, 2425, 1951, 1594, 1361, 1204, 1113, 1078, 1088, 1145, 1257, 1463, 1741, 2128, 2673, 3203, 3429, 2889, 2349, 1870, 1536, 1306, 1163, 1083, 1043, 1058, 1102, 1204, 1391, 1668, 2076, 2572, 3173, 3395, 2805, 2278, 1830, 1505, 1286, 1137, 1058, 1024, 1037, 1090, 1183, 1361, 1628, 2033, 2533, 3072, 3378, 2841, 2309, 1845, 1526, 1291, 1147, 1069, 1029, 1040, 1088, 1202, 1369, 1652, 2039, 2552, 3058, 3446, 2901, 2366, 1907, 1564, 1329, 1185, 1092, 1064, 1073, 1122, 1232, 1409, 1685, 2083, 2591, 3173, 3500, 2926, 2469, 1997, 1652, 1406, 1250, 1155, 1117, 1137, 1200, 1306, 1489, 1777, 2183, 2727, 3233, 3573, 3058, 2601, 2122, 1782, 1526, 1350, 1253, 1221, 1230, 1291, 1420, 1616, 1929, 2349, 2817, 3312, 3710, 3248, 2805, 2357, 1962, 1672, 1495, 1380, 1336, 1352, 1429, 1561, 1810, 2122, 2533, 3004, 3518, 3814, 3412, 3004, 2552, 2197, 1891, 1702, 1572, 1512, 1540, 1620, 1768, 2021, 2357, 2771, 3218, 3670, 4090, 3555, 3218, 2853, 2469, 2162, 1956, 1801, 1754, 1773, 1881, 2057, 2271, 2591, 3044, 3395, 3879, 4650, 3793, 3446, 3086, 2760, 2460, 2271, 2128, 2045, 2076, 2169, 2349, 2601, 2901, 3344, 3751, 3924]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4014, 3270, 2930, 2680, 2413, 2252, 2107, 2026, 1929, 1969, 2050, 2188, 2359, 2590, 2842, 3160, 3499, 3485, 3046, 2758, 2476, 2188, 1988, 1841, 1772, 1718, 1739, 1810, 1951, 2107, 2359, 2630, 2940, 3308, 3308, 2861, 2543, 2264, 2007, 1779, 1644, 1554, 1510, 1545, 1613, 1732, 1903, 2144, 2420, 2749, 3196, 3102, 2688, 2379, 2081, 1813, 1622, 1488, 1409, 1364, 1375, 1440, 1560, 1721, 1942, 2234, 2582, 2992, 2992, 2543, 2234, 1929, 1667, 1481, 1351, 1266, 1231, 1245, 1325, 1428, 1595, 1810, 2101, 2455, 2861, 2880, 2426, 2112, 1798, 1562, 1373, 1260, 1175, 1147, 1165, 1220, 1334, 1491, 1707, 1983, 2326, 2741, 2804, 2392, 2050, 1721, 1486, 1307, 1176, 1108, 1076, 1096, 1158, 1253, 1414, 1625, 1895, 2246, 2630, 2732, 2307, 1979, 1660, 1443, 1253, 1131, 1061, 1038, 1064, 1104, 1213, 1370, 1586, 1837, 2171, 2590, 2638, 2307, 1951, 1644, 1409, 1238, 1120, 1047, 1024, 1033, 1094, 1194, 1346, 1557, 1817, 2166, 2574, 2680, 2320, 1965, 1648, 1430, 1251, 1126, 1057, 1025, 1039, 1103, 1201, 1346, 1554, 1829, 2155, 2566, 2732, 2346, 1988, 1690, 1455, 1270, 1157, 1082, 1060, 1080, 1134, 1233, 1393, 1583, 1853, 2183, 2582, 2758, 2399, 2065, 1757, 1520, 1342, 1217, 1134, 1113, 1122, 1186, 1287, 1450, 1654, 1925, 2258, 2638, 2851, 2491, 2166, 1853, 1613, 1430, 1295, 1215, 1184, 1203, 1260, 1379, 1529, 1764, 2016, 2365, 2732, 3003, 2630, 2283, 1988, 1739, 1543, 1411, 1325, 1295, 1311, 1375, 1491, 1654, 1857, 2144, 2476, 2804, 3125, 2749, 2426, 2149, 1899, 1694, 1571, 1475, 1433, 1450, 1523, 1632, 1794, 2007, 2289, 2614, 2992, 3374, 2930, 2606, 2346, 2081, 1865, 1728, 1651, 1619, 1629, 1694, 1806, 1993, 2211, 2462, 2804, 3245, 4091, 3148, 2804, 2513, 2320, 2107, 2002, 1865, 1825, 1837, 1916, 2036, 2223, 2413, 2671, 3035, 3387]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4042, 3290, 2947, 2695, 2425, 2222, 2091, 1997, 1938, 1938, 2002, 2133, 2307, 2534, 2774, 3087, 3437, 3522, 3076, 2730, 2454, 2194, 2002, 1837, 1754, 1701, 1701, 1776, 1899, 2065, 2313, 2588, 2917, 3265, 3252, 2878, 2549, 2246, 1974, 1787, 1636, 1552, 1497, 1516, 1587, 1691, 1862, 2101, 2398, 2712, 3110, 3121, 2738, 2391, 2070, 1802, 1608, 1476, 1383, 1350, 1360, 1420, 1546, 1708, 1916, 2205, 2565, 2958, 2958, 2596, 2246, 1929, 1668, 1479, 1352, 1263, 1221, 1236, 1300, 1417, 1560, 1780, 2060, 2412, 2868, 2907, 2497, 2133, 1814, 1566, 1383, 1250, 1179, 1132, 1155, 1208, 1308, 1469, 1671, 1951, 2301, 2721, 2802, 2405, 2055, 1732, 1489, 1300, 1184, 1102, 1073, 1077, 1136, 1232, 1398, 1602, 1882, 2222, 2645, 2747, 2384, 2007, 1684, 1449, 1261, 1144, 1062, 1033, 1048, 1093, 1192, 1347, 1555, 1830, 2199, 2572, 2721, 2339, 1974, 1671, 1424, 1243, 1121, 1051, 1024, 1031, 1081, 1176, 1333, 1552, 1818, 2149, 2542, 2721, 2371, 2002, 1678, 1434, 1254, 1126, 1058, 1026, 1038, 1091, 1181, 1354, 1541, 1814, 2166, 2580, 2765, 2405, 2031, 1705, 1471, 1294, 1172, 1094, 1056, 1073, 1120, 1227, 1380, 1581, 1862, 2188, 2620, 2878, 2475, 2101, 1783, 1532, 1352, 1236, 1141, 1117, 1117, 1179, 1284, 1432, 1661, 1921, 2276, 2678, 2927, 2519, 2222, 1882, 1636, 1449, 1318, 1228, 1208, 1206, 1269, 1376, 1535, 1736, 2007, 2391, 2747, 3054, 2678, 2326, 2016, 1769, 1569, 1424, 1345, 1308, 1320, 1376, 1495, 1642, 1862, 2160, 2489, 2887, 3179, 2811, 2482, 2182, 1929, 1722, 1572, 1497, 1459, 1471, 1519, 1632, 1787, 2031, 2294, 2612, 3076, 3423, 2937, 2661, 2365, 2117, 1921, 1750, 1674, 1620, 1620, 1701, 1818, 1993, 2234, 2512, 2839, 3191, 4245, 3203, 2849, 2580, 2319, 2128, 1979, 1903, 1841, 1841, 1908, 2050, 2188, 2418, 2703, 3032, 3396]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3710, 3133, 2820, 2502, 2274, 2094, 1986, 1863, 1863, 1823, 1914, 2024, 2180, 2376, 2627, 2858, 3330, 3330, 2937, 2611, 2324, 2083, 1888, 1740, 1665, 1627, 1633, 1692, 1815, 1976, 2191, 2431, 2746, 3065, 3110, 2746, 2445, 2169, 1905, 1726, 1578, 1479, 1468, 1463, 1521, 1646, 1784, 2014, 2262, 2563, 2917, 2958, 2594, 2286, 1976, 1762, 1566, 1424, 1360, 1334, 1322, 1382, 1494, 1627, 1855, 2115, 2376, 2764, 2820, 2488, 2147, 1880, 1633, 1463, 1334, 1244, 1212, 1205, 1285, 1373, 1505, 1692, 1949, 2262, 2677, 2782, 2363, 2053, 1770, 1549, 1364, 1244, 1156, 1122, 1131, 1181, 1282, 1438, 1596, 1863, 2191, 2532, 2677, 2286, 1986, 1705, 1489, 1301, 1178, 1107, 1079, 1073, 1122, 1208, 1351, 1549, 1800, 2094, 2473, 2643, 2250, 1958, 1665, 1434, 1270, 1128, 1063, 1039, 1044, 1098, 1178, 1297, 1510, 1733, 2083, 2473, 2643, 2262, 1905, 1627, 1414, 1244, 1134, 1049, 1029, 1024, 1076, 1149, 1293, 1458, 1712, 2033, 2403, 2594, 2250, 1905, 1646, 1410, 1255, 1143, 1060, 1026, 1044, 1082, 1165, 1313, 1484, 1719, 2033, 2389, 2594, 2337, 1958, 1705, 1474, 1289, 1175, 1087, 1052, 1063, 1116, 1205, 1330, 1516, 1784, 2083, 2445, 2711, 2350, 2033, 1748, 1516, 1347, 1208, 1149, 1113, 1113, 1168, 1237, 1391, 1578, 1815, 2136, 2517, 2838, 2445, 2115, 1839, 1620, 1424, 1301, 1222, 1178, 1188, 1244, 1322, 1484, 1672, 1905, 2214, 2579, 2897, 2563, 2226, 1940, 1719, 1532, 1410, 1334, 1297, 1285, 1338, 1443, 1578, 1762, 2063, 2337, 2694, 3065, 2711, 2376, 2115, 1871, 1665, 1527, 1463, 1419, 1414, 1463, 1572, 1712, 1931, 2191, 2459, 2820, 3330, 2897, 2532, 2274, 2043, 1847, 1698, 1620, 1572, 1584, 1646, 1748, 1896, 2104, 2350, 2677, 3021, 4106, 3110, 2764, 2488, 2226, 2063, 1863, 1855, 1762, 1777, 1839, 1940, 2073, 2298, 2532, 2897, 3043]
                                       }
                                   }, {
                                       "name":    "3264x2448_TL84_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3585, 3313, 3081, 2914, 2677, 2425, 2297, 2196, 2071, 2127, 2191, 2357, 2561, 2775, 3007, 3173, 3277, 3347, 3191, 3023, 2718, 2424, 2176, 1995, 1872, 1816, 1842, 1917, 2038, 2274, 2558, 2795, 3094, 3273, 3283, 3102, 2804, 2498, 2185, 1924, 1732, 1640, 1582, 1583, 1669, 1807, 2027, 2314, 2642, 2927, 3130, 3247, 2942, 2612, 2301, 1976, 1722, 1554, 1439, 1389, 1404, 1468, 1606, 1823, 2106, 2437, 2750, 3052, 3121, 2818, 2462, 2125, 1798, 1551, 1387, 1294, 1243, 1254, 1329, 1444, 1636, 1931, 2230, 2633, 2943, 3028, 2721, 2340, 1983, 1660, 1426, 1285, 1186, 1159, 1162, 1217, 1332, 1512, 1763, 2112, 2510, 2874, 2990, 2627, 2258, 1871, 1561, 1349, 1200, 1112, 1078, 1087, 1143, 1249, 1437, 1679, 1996, 2413, 2767, 2959, 2605, 2198, 1802, 1509, 1297, 1161, 1083, 1043, 1058, 1101, 1198, 1372, 1616, 1956, 2336, 2753, 2935, 2536, 2137, 1766, 1480, 1278, 1136, 1058, 1024, 1037, 1089, 1178, 1344, 1580, 1919, 2305, 2675, 2918, 2564, 2162, 1779, 1499, 1283, 1145, 1069, 1029, 1040, 1087, 1196, 1351, 1601, 1923, 2319, 2660, 2961, 2606, 2206, 1831, 1532, 1318, 1182, 1091, 1064, 1072, 1120, 1224, 1387, 1628, 1957, 2344, 2743, 2984, 2611, 2285, 1905, 1610, 1389, 1243, 1152, 1115, 1135, 1195, 1293, 1458, 1706, 2035, 2445, 2773, 3014, 2698, 2382, 2005, 1722, 1497, 1336, 1246, 1215, 1223, 1280, 1397, 1569, 1833, 2165, 2500, 2810, 3083, 2823, 2531, 2195, 1873, 1625, 1468, 1363, 1322, 1336, 1406, 1522, 1736, 1988, 2301, 2625, 2935, 3113, 2914, 2664, 2338, 2064, 1811, 1650, 1535, 1480, 1505, 1574, 1699, 1908, 2170, 2471, 2760, 3005, 3255, 2974, 2795, 2558, 2274, 2032, 1864, 1731, 1690, 1705, 1796, 1939, 2103, 2338, 2655, 2851, 3102, 3562, 3092, 2922, 2704, 2483, 2260, 2116, 2000, 1930, 1954, 2027, 2165, 2349, 2553, 2842, 3060, 3054]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3117, 2701, 2517, 2373, 2191, 2081, 1972, 1910, 1827, 1860, 1922, 2026, 2146, 2300, 2448, 2619, 2757, 2815, 2582, 2424, 2242, 2031, 1878, 1760, 1705, 1658, 1675, 1732, 1845, 1961, 2144, 2321, 2501, 2686, 2734, 2478, 2282, 2091, 1896, 1709, 1596, 1518, 1479, 1510, 1568, 1667, 1803, 1987, 2180, 2389, 2651, 2617, 2370, 2170, 1952, 1738, 1578, 1461, 1390, 1349, 1358, 1416, 1521, 1655, 1830, 2048, 2284, 2532, 2560, 2274, 2066, 1833, 1616, 1455, 1337, 1258, 1225, 1238, 1312, 1405, 1550, 1726, 1951, 2202, 2458, 2494, 2194, 1973, 1725, 1526, 1357, 1253, 1172, 1145, 1162, 1214, 1320, 1460, 1642, 1861, 2111, 2383, 2448, 2177, 1928, 1661, 1459, 1297, 1173, 1107, 1076, 1095, 1155, 1245, 1391, 1573, 1791, 2054, 2308, 2398, 2111, 1870, 1609, 1421, 1246, 1129, 1061, 1038, 1064, 1103, 1207, 1352, 1540, 1744, 1996, 2284, 2325, 2113, 1847, 1595, 1389, 1232, 1119, 1047, 1024, 1033, 1093, 1189, 1329, 1515, 1728, 1994, 2273, 2356, 2122, 1858, 1597, 1408, 1244, 1124, 1057, 1025, 1039, 1102, 1196, 1329, 1511, 1737, 1983, 2265, 2390, 2138, 1873, 1633, 1430, 1261, 1154, 1081, 1060, 1079, 1132, 1225, 1371, 1535, 1754, 2001, 2270, 2397, 2171, 1932, 1688, 1487, 1328, 1211, 1132, 1112, 1120, 1181, 1275, 1421, 1594, 1810, 2054, 2302, 2450, 2232, 2007, 1765, 1566, 1407, 1284, 1209, 1179, 1197, 1250, 1359, 1489, 1685, 1878, 2128, 2357, 2541, 2323, 2089, 1871, 1671, 1505, 1389, 1310, 1283, 1297, 1355, 1457, 1594, 1756, 1972, 2198, 2388, 2597, 2389, 2185, 1992, 1800, 1632, 1529, 1444, 1407, 1421, 1485, 1576, 1707, 1869, 2072, 2282, 2498, 2734, 2493, 2301, 2133, 1938, 1769, 1658, 1594, 1567, 1574, 1628, 1717, 1862, 2020, 2185, 2396, 2640, 3171, 2610, 2419, 2237, 2113, 1956, 1880, 1768, 1735, 1743, 1805, 1895, 2032, 2156, 2314, 2526, 2678]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3137, 2716, 2531, 2385, 2201, 2055, 1958, 1885, 1835, 1832, 1880, 1979, 2102, 2254, 2395, 2564, 2713, 2842, 2605, 2401, 2224, 2036, 1890, 1756, 1688, 1642, 1640, 1701, 1799, 1925, 2105, 2287, 2483, 2655, 2692, 2491, 2287, 2075, 1866, 1717, 1589, 1516, 1466, 1483, 1544, 1629, 1767, 1950, 2162, 2360, 2586, 2631, 2410, 2181, 1943, 1728, 1565, 1450, 1366, 1335, 1344, 1397, 1508, 1643, 1807, 2023, 2270, 2506, 2534, 2318, 2076, 1833, 1617, 1453, 1338, 1255, 1215, 1229, 1288, 1394, 1518, 1699, 1916, 2167, 2464, 2515, 2253, 1991, 1739, 1530, 1367, 1243, 1176, 1130, 1152, 1203, 1295, 1439, 1610, 1833, 2090, 2368, 2446, 2188, 1932, 1671, 1462, 1290, 1181, 1101, 1073, 1076, 1134, 1224, 1376, 1552, 1780, 2033, 2320, 2410, 2177, 1895, 1631, 1426, 1254, 1142, 1062, 1033, 1048, 1092, 1187, 1330, 1512, 1738, 2020, 2269, 2392, 2141, 1867, 1620, 1403, 1237, 1120, 1051, 1024, 1031, 1080, 1172, 1317, 1510, 1729, 1979, 2248, 2389, 2166, 1890, 1625, 1412, 1247, 1124, 1058, 1026, 1038, 1090, 1176, 1336, 1499, 1724, 1992, 2276, 2416, 2188, 1911, 1646, 1445, 1284, 1169, 1093, 1056, 1072, 1118, 1220, 1359, 1533, 1762, 2005, 2300, 2492, 2235, 1964, 1711, 1498, 1337, 1230, 1139, 1115, 1115, 1174, 1272, 1405, 1601, 1807, 2069, 2334, 2510, 2255, 2055, 1791, 1588, 1425, 1306, 1221, 1203, 1200, 1259, 1356, 1495, 1660, 1870, 2149, 2369, 2580, 2362, 2126, 1895, 1698, 1529, 1401, 1329, 1295, 1306, 1356, 1460, 1583, 1760, 1985, 2209, 2452, 2638, 2438, 2232, 2020, 1826, 1658, 1530, 1465, 1431, 1441, 1481, 1576, 1701, 1890, 2076, 2281, 2561, 2770, 2498, 2346, 2149, 1969, 1819, 1678, 1615, 1568, 1566, 1634, 1727, 1862, 2039, 2225, 2423, 2601, 3279, 2651, 2454, 2292, 2112, 1974, 1860, 1801, 1749, 1747, 1798, 1907, 2002, 2160, 2339, 2523, 2684]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2904, 2599, 2431, 2228, 2075, 1945, 1866, 1766, 1769, 1731, 1803, 1885, 1996, 2125, 2280, 2393, 2638, 2702, 2498, 2305, 2114, 1940, 1789, 1669, 1607, 1574, 1578, 1626, 1725, 1848, 2003, 2160, 2351, 2509, 2586, 2387, 2201, 2009, 1805, 1661, 1535, 1448, 1439, 1433, 1483, 1589, 1698, 1875, 2049, 2242, 2442, 2506, 2294, 2092, 1860, 1692, 1526, 1401, 1344, 1320, 1308, 1361, 1460, 1570, 1754, 1947, 2117, 2358, 2426, 2229, 1991, 1789, 1585, 1438, 1321, 1237, 1207, 1199, 1274, 1353, 1467, 1621, 1820, 2043, 2314, 2416, 2141, 1922, 1699, 1514, 1349, 1238, 1153, 1120, 1129, 1176, 1270, 1410, 1542, 1756, 1998, 2218, 2346, 2087, 1871, 1646, 1462, 1291, 1175, 1106, 1079, 1072, 1120, 1201, 1332, 1504, 1707, 1926, 2183, 2327, 2063, 1851, 1613, 1412, 1262, 1126, 1063, 1039, 1044, 1097, 1173, 1283, 1471, 1652, 1922, 2190, 2329, 2075, 1806, 1579, 1394, 1238, 1133, 1049, 1029, 1024, 1075, 1145, 1279, 1424, 1635, 1881, 2136, 2287, 2063, 1804, 1596, 1390, 1248, 1141, 1060, 1026, 1044, 1081, 1161, 1298, 1447, 1640, 1879, 2122, 2280, 2130, 1847, 1646, 1448, 1279, 1172, 1086, 1052, 1063, 1114, 1198, 1312, 1474, 1693, 1916, 2160, 2360, 2131, 1904, 1679, 1483, 1332, 1203, 1147, 1112, 1111, 1164, 1227, 1366, 1526, 1714, 1952, 2206, 2440, 2194, 1963, 1752, 1573, 1401, 1289, 1216, 1174, 1183, 1235, 1305, 1448, 1603, 1782, 2004, 2238, 2459, 2269, 2041, 1829, 1653, 1495, 1388, 1319, 1285, 1272, 1320, 1412, 1526, 1672, 1903, 2086, 2304, 2552, 2359, 2144, 1962, 1775, 1606, 1488, 1433, 1393, 1388, 1429, 1521, 1634, 1804, 1991, 2159, 2369, 2702, 2467, 2241, 2073, 1905, 1753, 1631, 1566, 1524, 1534, 1584, 1665, 1778, 1930, 2095, 2298, 2477, 3181, 2582, 2387, 2217, 2034, 1918, 1759, 1759, 1679, 1690, 1738, 1813, 1906, 2062, 2206, 2423, 2437]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4338, 3699, 3433, 2945, 2807, 2472, 2305, 2140, 2005, 1988, 2199, 2294, 2525, 2758, 3181, 3337, 3671, 4010, 3561, 3001, 2790, 2460, 2159, 1924, 1828, 1748, 1821, 1857, 2005, 2230, 2472, 2807, 3224, 3561, 3671, 3314, 2910, 2552, 2199, 1956, 1686, 1618, 1585, 1559, 1663, 1781, 1956, 2209, 2651, 3020, 3458, 3483, 3139, 2711, 2316, 1988, 1748, 1575, 1446, 1391, 1359, 1433, 1554, 1787, 2031, 2398, 2774, 3181, 3433, 2982, 2552, 2130, 1808, 1585, 1403, 1297, 1249, 1262, 1297, 1437, 1607, 1835, 2189, 2666, 3079, 3458, 2840, 2422, 2005, 1663, 1442, 1325, 1193, 1139, 1155, 1220, 1359, 1515, 1723, 2111, 2460, 3039, 3203, 2742, 2294, 1924, 1601, 1403, 1239, 1125, 1063, 1099, 1131, 1243, 1446, 1645, 1988, 2398, 2874, 3268, 2742, 2240, 1814, 1554, 1304, 1170, 1080, 1051, 1044, 1080, 1190, 1379, 1607, 1940, 2294, 2910, 3039, 2681, 2209, 1857, 1539, 1300, 1181, 1053, 1024, 1033, 1087, 1187, 1352, 1580, 1879, 2294, 2774, 3246, 2636, 2240, 1871, 1534, 1363, 1193, 1087, 1040, 1051, 1075, 1178, 1340, 1591, 1879, 2316, 2874, 3268, 2774, 2351, 1948, 1634, 1399, 1224, 1112, 1072, 1089, 1136, 1233, 1459, 1657, 1988, 2386, 2711, 3458, 2774, 2435, 2031, 1680, 1501, 1307, 1175, 1115, 1133, 1205, 1279, 1464, 1748, 2005, 2498, 2892, 3268, 2927, 2622, 2102, 1835, 1612, 1403, 1276, 1262, 1239, 1304, 1416, 1596, 1879, 2189, 2579, 2892, 3615, 3020, 2666, 2328, 1988, 1698, 1520, 1420, 1375, 1356, 1429, 1585, 1754, 1988, 2386, 2711, 3181, 3787, 3360, 2774, 2485, 2219, 1932, 1742, 1596, 1554, 1549, 1640, 1729, 1894, 2189, 2525, 2982, 3535, 3976, 3433, 3079, 2807, 2386, 2121, 1924, 1850, 1781, 1774, 1801, 2005, 2169, 2410, 2742, 3224, 3509, 5187, 3757, 3291, 2964, 2593, 2351, 2305, 2159, 2031, 2005, 2075, 2251, 2374, 2666, 3039, 3337, 3848]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3774, 3158, 2742, 2485, 2252, 2064, 1972, 1878, 1814, 1901, 1896, 1957, 2239, 2311, 2573, 2811, 3209, 3446, 2914, 2607, 2338, 2119, 1896, 1777, 1716, 1631, 1651, 1716, 1830, 1981, 2165, 2402, 2705, 3096, 3145, 2714, 2395, 2108, 1924, 1746, 1608, 1507, 1470, 1481, 1542, 1658, 1797, 1996, 2220, 2557, 2791, 3048, 2573, 2297, 2001, 1789, 1582, 1454, 1383, 1321, 1343, 1393, 1515, 1655, 1830, 2091, 2352, 2696, 2781, 2431, 2154, 1856, 1665, 1493, 1339, 1244, 1214, 1221, 1287, 1398, 1542, 1704, 1962, 2291, 2642, 2696, 2395, 2059, 1797, 1548, 1383, 1252, 1172, 1121, 1142, 1205, 1299, 1468, 1655, 1874, 2165, 2524, 2599, 2324, 1977, 1694, 1495, 1312, 1190, 1102, 1074, 1090, 1118, 1235, 1390, 1585, 1781, 2086, 2446, 2607, 2258, 1947, 1672, 1441, 1297, 1149, 1062, 1032, 1054, 1112, 1199, 1364, 1557, 1785, 2086, 2409, 2705, 2252, 1962, 1655, 1403, 1268, 1132, 1048, 1024, 1033, 1078, 1195, 1332, 1524, 1742, 2080, 2345, 2616, 2264, 1919, 1665, 1441, 1250, 1131, 1070, 1033, 1041, 1110, 1199, 1348, 1551, 1781, 2043, 2359, 2687, 2311, 1991, 1704, 1468, 1291, 1178, 1107, 1065, 1078, 1147, 1235, 1388, 1551, 1781, 2069, 2424, 2831, 2297, 2059, 1765, 1536, 1374, 1270, 1150, 1129, 1110, 1199, 1299, 1452, 1641, 1835, 2125, 2485, 2781, 2461, 2160, 1856, 1627, 1431, 1332, 1262, 1217, 1214, 1287, 1386, 1524, 1731, 1919, 2264, 2548, 2893, 2573, 2264, 2001, 1777, 1595, 1449, 1367, 1323, 1369, 1393, 1493, 1617, 1805, 2037, 2311, 2733, 3096, 2696, 2431, 2102, 1887, 1716, 1569, 1504, 1468, 1473, 1554, 1621, 1797, 1986, 2220, 2477, 2851, 3431, 2893, 2590, 2291, 2102, 1896, 1738, 1658, 1614, 1624, 1679, 1781, 1928, 2154, 2366, 2687, 3084, 4194, 3025, 2831, 2508, 2271, 2059, 1938, 1892, 1814, 1826, 1865, 2022, 2160, 2284, 2524, 2893, 3209]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3928, 3072, 2770, 2498, 2275, 2061, 1974, 1884, 1840, 1758, 1907, 1989, 2205, 2315, 2589, 2840, 3108, 3331, 2924, 2580, 2315, 2067, 1916, 1754, 1683, 1652, 1641, 1683, 1786, 1884, 2140, 2322, 2614, 2991, 3084, 2704, 2437, 2140, 1849, 1743, 1605, 1530, 1446, 1495, 1515, 1611, 1778, 1940, 2157, 2491, 2800, 2946, 2589, 2315, 1999, 1778, 1576, 1473, 1375, 1320, 1325, 1366, 1462, 1601, 1807, 2045, 2295, 2597, 2830, 2483, 2163, 1871, 1631, 1473, 1338, 1253, 1211, 1224, 1245, 1364, 1515, 1680, 1889, 2224, 2580, 2820, 2429, 2072, 1766, 1566, 1383, 1228, 1158, 1126, 1125, 1187, 1273, 1415, 1595, 1807, 2151, 2506, 2722, 2309, 1994, 1698, 1457, 1294, 1202, 1100, 1048, 1079, 1103, 1207, 1375, 1527, 1790, 2040, 2302, 2713, 2256, 1940, 1648, 1446, 1278, 1143, 1055, 1036, 1050, 1089, 1168, 1331, 1492, 1743, 2019, 2429, 2640, 2295, 1945, 1666, 1428, 1255, 1117, 1037, 1024, 1028, 1053, 1168, 1282, 1490, 1698, 2035, 2336, 2563, 2243, 1964, 1687, 1433, 1259, 1133, 1054, 1031, 1037, 1089, 1168, 1305, 1465, 1705, 1994, 2385, 2722, 2275, 1984, 1705, 1487, 1307, 1184, 1097, 1051, 1077, 1120, 1218, 1354, 1554, 1751, 2056, 2392, 2685, 2343, 2089, 1774, 1566, 1390, 1247, 1153, 1126, 1121, 1185, 1273, 1405, 1589, 1794, 2117, 2506, 2892, 2483, 2169, 1884, 1662, 1490, 1359, 1253, 1211, 1222, 1280, 1354, 1507, 1676, 1959, 2230, 2614, 2892, 2589, 2295, 1999, 1747, 1589, 1454, 1390, 1320, 1329, 1402, 1467, 1618, 1794, 2019, 2329, 2741, 3096, 2704, 2422, 2175, 1898, 1705, 1598, 1515, 1490, 1478, 1521, 1615, 1731, 1902, 2175, 2475, 2850, 3374, 2924, 2597, 2309, 2111, 1907, 1786, 1676, 1635, 1645, 1687, 1774, 1926, 2122, 2407, 2623, 3072, 4245, 3236, 2770, 2572, 2378, 2181, 1974, 1912, 1840, 1858, 1964, 1999, 2094, 2371, 2589, 2850, 3433]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3577, 3016, 2782, 2479, 2177, 2011, 1904, 1788, 1795, 1855, 1788, 1848, 2069, 2206, 2443, 2664, 2861, 3294, 2845, 2568, 2256, 2036, 1828, 1703, 1653, 1590, 1590, 1626, 1776, 1919, 2069, 2276, 2504, 2797, 2928, 2595, 2362, 2069, 1834, 1675, 1570, 1477, 1427, 1435, 1504, 1570, 1745, 1904, 2104, 2351, 2692, 2861, 2504, 2177, 1964, 1715, 1527, 1399, 1357, 1311, 1346, 1364, 1473, 1590, 1763, 1941, 2206, 2491, 2736, 2396, 2069, 1862, 1605, 1443, 1314, 1249, 1192, 1239, 1265, 1339, 1490, 1647, 1855, 2158, 2467, 2678, 2362, 1971, 1763, 1555, 1376, 1236, 1146, 1138, 1141, 1195, 1258, 1376, 1626, 1763, 2069, 2351, 2491, 2216, 1995, 1721, 1477, 1301, 1167, 1115, 1079, 1077, 1120, 1215, 1387, 1490, 1715, 1964, 2297, 2555, 2245, 1926, 1669, 1443, 1265, 1135, 1059, 1043, 1045, 1084, 1173, 1318, 1486, 1697, 1964, 2318, 2595, 2256, 1875, 1626, 1423, 1252, 1141, 1086, 1024, 1045, 1075, 1162, 1307, 1477, 1721, 1926, 2308, 2635, 2245, 1987, 1636, 1435, 1277, 1143, 1079, 1043, 1054, 1096, 1195, 1307, 1473, 1697, 1948, 2225, 2649, 2245, 1964, 1697, 1477, 1314, 1189, 1103, 1072, 1070, 1110, 1189, 1332, 1536, 1745, 2019, 2340, 2782, 2318, 2011, 1727, 1546, 1357, 1255, 1165, 1138, 1118, 1159, 1258, 1383, 1575, 1751, 2011, 2431, 2766, 2396, 2122, 1828, 1631, 1427, 1332, 1239, 1204, 1204, 1258, 1335, 1486, 1658, 1883, 2113, 2467, 2894, 2516, 2225, 1971, 1751, 1546, 1414, 1332, 1314, 1301, 1368, 1460, 1555, 1782, 1948, 2216, 2504, 2981, 2581, 2362, 2052, 1868, 1686, 1580, 1477, 1435, 1473, 1513, 1605, 1692, 1897, 2131, 2340, 2813, 3407, 2894, 2555, 2225, 2011, 1848, 1709, 1626, 1610, 1590, 1653, 1680, 1855, 2019, 2287, 2595, 2911, 4104, 2945, 2649, 2396, 2235, 1987, 1948, 1769, 1788, 1776, 1769, 1868, 2036, 2287, 2568, 2845, 2928]
                                       }
                                   }, {
                                       "name":    "3264x2448_D50_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3344, 3021, 2911, 2589, 2523, 2270, 2146, 2011, 1895, 1877, 2053, 2117, 2286, 2437, 2714, 2751, 2877, 3197, 2979, 2620, 2505, 2266, 2029, 1835, 1756, 1685, 1749, 1774, 1893, 2067, 2239, 2464, 2719, 2870, 3006, 2836, 2586, 2338, 2066, 1870, 1635, 1578, 1549, 1523, 1614, 1711, 1850, 2043, 2372, 2603, 2847, 2909, 2735, 2451, 2159, 1897, 1695, 1543, 1426, 1374, 1343, 1409, 1515, 1715, 1908, 2186, 2439, 2677, 2905, 2636, 2339, 2012, 1746, 1553, 1387, 1288, 1242, 1254, 1286, 1413, 1561, 1749, 2027, 2376, 2628, 2951, 2539, 2244, 1912, 1620, 1423, 1316, 1190, 1137, 1152, 1214, 1344, 1482, 1657, 1972, 2222, 2619, 2767, 2472, 2143, 1846, 1567, 1389, 1235, 1124, 1063, 1098, 1129, 1235, 1421, 1592, 1873, 2182, 2504, 2829, 2480, 2101, 1750, 1526, 1295, 1168, 1080, 1051, 1044, 1079, 1185, 1360, 1560, 1835, 2100, 2541, 2648, 2431, 2076, 1791, 1513, 1292, 1179, 1053, 1024, 1033, 1086, 1182, 1335, 1536, 1783, 2102, 2435, 2812, 2390, 2101, 1802, 1507, 1353, 1190, 1087, 1040, 1051, 1074, 1173, 1323, 1545, 1781, 2119, 2512, 2819, 2499, 2193, 1868, 1598, 1385, 1220, 1111, 1072, 1088, 1134, 1225, 1434, 1602, 1873, 2172, 2373, 2951, 2484, 2255, 1936, 1636, 1479, 1299, 1172, 1114, 1131, 1200, 1267, 1434, 1679, 1880, 2254, 2503, 2776, 2591, 2400, 1987, 1771, 1578, 1387, 1268, 1255, 1232, 1292, 1393, 1551, 1788, 2027, 2304, 2482, 3010, 2638, 2413, 2169, 1897, 1649, 1491, 1401, 1359, 1340, 1406, 1544, 1685, 1871, 2176, 2388, 2677, 3093, 2872, 2473, 2281, 2084, 1848, 1687, 1557, 1520, 1513, 1593, 1664, 1795, 2026, 2267, 2573, 2904, 3172, 2880, 2683, 2520, 2202, 1996, 1835, 1776, 1715, 1706, 1724, 1893, 2014, 2187, 2411, 2719, 2832, 3938, 3065, 2800, 2604, 2343, 2166, 2146, 2028, 1918, 1892, 1944, 2080, 2159, 2362, 2603, 2751, 3001]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2949, 2617, 2370, 2214, 2056, 1919, 1854, 1779, 1725, 1800, 1787, 1827, 2045, 2072, 2238, 2358, 2554, 2786, 2480, 2302, 2126, 1971, 1796, 1702, 1654, 1578, 1594, 1647, 1738, 1852, 1981, 2137, 2319, 2532, 2612, 2361, 2159, 1956, 1822, 1679, 1563, 1474, 1441, 1450, 1502, 1600, 1709, 1860, 2015, 2237, 2347, 2575, 2277, 2101, 1882, 1717, 1541, 1429, 1366, 1308, 1328, 1372, 1479, 1595, 1732, 1927, 2098, 2305, 2396, 2182, 1997, 1767, 1614, 1466, 1326, 1237, 1208, 1215, 1276, 1376, 1501, 1632, 1831, 2067, 2287, 2348, 2168, 1927, 1724, 1513, 1367, 1245, 1169, 1119, 1140, 1200, 1287, 1438, 1595, 1766, 1976, 2212, 2284, 2119, 1863, 1636, 1468, 1302, 1187, 1101, 1074, 1089, 1116, 1227, 1369, 1537, 1691, 1919, 2161, 2298, 2070, 1842, 1620, 1419, 1289, 1147, 1062, 1032, 1054, 1111, 1194, 1346, 1514, 1698, 1924, 2138, 2379, 2067, 1856, 1605, 1384, 1261, 1131, 1048, 1024, 1033, 1077, 1190, 1316, 1484, 1661, 1921, 2089, 2305, 2075, 1817, 1613, 1419, 1243, 1129, 1070, 1033, 1041, 1109, 1194, 1331, 1508, 1695, 1888, 2098, 2354, 2108, 1876, 1645, 1442, 1281, 1175, 1106, 1065, 1077, 1145, 1227, 1367, 1506, 1691, 1905, 2144, 2455, 2086, 1927, 1695, 1502, 1358, 1263, 1148, 1127, 1108, 1194, 1287, 1423, 1583, 1732, 1943, 2181, 2396, 2207, 2002, 1767, 1579, 1408, 1319, 1254, 1211, 1208, 1276, 1365, 1484, 1656, 1794, 2045, 2214, 2456, 2277, 2073, 1882, 1706, 1553, 1424, 1350, 1309, 1352, 1372, 1459, 1561, 1710, 1881, 2065, 2334, 2576, 2347, 2189, 1951, 1789, 1652, 1527, 1472, 1439, 1443, 1513, 1566, 1709, 1851, 2015, 2174, 2392, 2776, 2464, 2288, 2087, 1957, 1796, 1667, 1601, 1563, 1570, 1614, 1695, 1806, 1972, 2107, 2306, 2523, 3243, 2518, 2440, 2233, 2072, 1915, 1824, 1792, 1725, 1733, 1760, 1883, 1979, 2050, 2199, 2420, 2554]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3057, 2553, 2392, 2225, 2075, 1917, 1856, 1785, 1748, 1673, 1797, 1855, 2017, 2076, 2250, 2380, 2483, 2703, 2488, 2280, 2107, 1926, 1814, 1682, 1624, 1597, 1585, 1618, 1699, 1768, 1960, 2072, 2249, 2455, 2567, 2353, 2194, 1984, 1756, 1677, 1560, 1496, 1419, 1463, 1477, 1557, 1693, 1812, 1962, 2185, 2354, 2497, 2290, 2116, 1880, 1707, 1536, 1447, 1358, 1307, 1310, 1346, 1430, 1546, 1712, 1888, 2052, 2230, 2434, 2225, 2004, 1781, 1583, 1447, 1325, 1246, 1206, 1218, 1236, 1344, 1476, 1610, 1769, 2012, 2239, 2446, 2196, 1938, 1696, 1530, 1367, 1222, 1155, 1124, 1123, 1182, 1262, 1389, 1541, 1707, 1964, 2197, 2382, 2107, 1878, 1640, 1432, 1284, 1198, 1099, 1048, 1078, 1101, 1200, 1355, 1484, 1699, 1880, 2046, 2383, 2068, 1835, 1597, 1424, 1270, 1141, 1055, 1036, 1050, 1088, 1164, 1315, 1454, 1661, 1867, 2154, 2327, 2103, 1841, 1615, 1407, 1248, 1116, 1037, 1024, 1028, 1053, 1164, 1269, 1453, 1622, 1882, 2082, 2262, 2057, 1857, 1633, 1411, 1252, 1131, 1054, 1031, 1037, 1088, 1164, 1290, 1429, 1627, 1846, 2119, 2382, 2078, 1870, 1646, 1460, 1297, 1181, 1096, 1051, 1076, 1118, 1211, 1335, 1508, 1664, 1894, 2118, 2339, 2125, 1953, 1703, 1530, 1373, 1240, 1150, 1124, 1119, 1180, 1262, 1379, 1536, 1696, 1936, 2197, 2482, 2225, 2010, 1792, 1611, 1463, 1345, 1246, 1206, 1216, 1269, 1335, 1469, 1607, 1829, 2017, 2265, 2456, 2290, 2099, 1880, 1679, 1548, 1429, 1372, 1307, 1314, 1380, 1435, 1562, 1700, 1866, 2079, 2340, 2576, 2353, 2182, 2014, 1799, 1642, 1554, 1482, 1460, 1447, 1483, 1560, 1651, 1779, 1977, 2172, 2391, 2734, 2488, 2294, 2102, 1964, 1806, 1710, 1617, 1582, 1589, 1621, 1688, 1804, 1945, 2141, 2256, 2514, 3279, 2676, 2392, 2285, 2162, 2020, 1856, 1809, 1748, 1762, 1847, 1863, 1923, 2121, 2250, 2388, 2710]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2811, 2511, 2401, 2209, 1993, 1874, 1794, 1700, 1708, 1759, 1693, 1733, 1902, 1987, 2136, 2249, 2310, 2676, 2427, 2271, 2057, 1899, 1736, 1636, 1596, 1541, 1539, 1566, 1690, 1798, 1901, 2035, 2165, 2314, 2450, 2267, 2132, 1923, 1742, 1615, 1528, 1446, 1401, 1407, 1467, 1520, 1663, 1781, 1918, 2074, 2273, 2432, 2221, 2000, 1850, 1650, 1490, 1377, 1341, 1298, 1330, 1344, 1440, 1536, 1673, 1800, 1980, 2148, 2361, 2153, 1924, 1773, 1559, 1419, 1302, 1242, 1187, 1232, 1255, 1321, 1453, 1581, 1739, 1958, 2151, 2334, 2141, 1850, 1693, 1519, 1360, 1230, 1144, 1136, 1139, 1190, 1247, 1352, 1569, 1669, 1896, 2075, 2197, 2028, 1879, 1661, 1451, 1291, 1164, 1114, 1079, 1076, 1118, 1208, 1366, 1450, 1633, 1816, 2042, 2256, 2059, 1823, 1617, 1421, 1258, 1133, 1059, 1043, 1045, 1083, 1168, 1302, 1449, 1620, 1821, 2065, 2290, 2070, 1779, 1578, 1403, 1245, 1139, 1086, 1024, 1045, 1074, 1158, 1292, 1441, 1643, 1790, 2059, 2320, 2059, 1877, 1586, 1413, 1269, 1141, 1079, 1043, 1054, 1095, 1190, 1292, 1437, 1620, 1807, 1990, 2324, 2053, 1852, 1639, 1451, 1303, 1186, 1102, 1072, 1070, 1108, 1183, 1314, 1492, 1659, 1862, 2076, 2416, 2104, 1885, 1660, 1511, 1342, 1248, 1162, 1136, 1116, 1155, 1247, 1359, 1523, 1658, 1848, 2138, 2384, 2153, 1969, 1742, 1583, 1404, 1319, 1232, 1199, 1198, 1248, 1317, 1449, 1590, 1763, 1920, 2151, 2457, 2231, 2040, 1856, 1682, 1508, 1391, 1317, 1301, 1288, 1348, 1428, 1505, 1690, 1806, 1988, 2158, 2490, 2256, 2132, 1908, 1772, 1625, 1537, 1446, 1408, 1443, 1475, 1551, 1616, 1775, 1941, 2065, 2364, 2758, 2465, 2260, 2031, 1878, 1754, 1641, 1572, 1559, 1539, 1591, 1605, 1743, 1859, 2044, 2235, 2397, 3180, 2458, 2297, 2142, 2042, 1853, 1833, 1683, 1702, 1689, 1676, 1751, 1875, 2053, 2234, 2384, 2357]
                                       }
                                   }, {
                                       "name":    "3264x2448_A_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5204, 4499, 4047, 3695, 3201, 3048, 2684, 2550, 2452, 2492, 2629, 2792, 3060, 3400, 3787, 4157, 4421, 4693, 4322, 3750, 3355, 2976, 2602, 2332, 2179, 2096, 2125, 2211, 2444, 2722, 3109, 3509, 3903, 4322, 4473, 4069, 3525, 3084, 2584, 2224, 2013, 1830, 1796, 1787, 1903, 2073, 2361, 2752, 3174, 3643, 4203, 4396, 3768, 3283, 2752, 2311, 1966, 1750, 1610, 1524, 1539, 1624, 1804, 2107, 2452, 2953, 3446, 3943, 4273, 3575, 3035, 2484, 2090, 1767, 1542, 1404, 1337, 1359, 1435, 1621, 1866, 2224, 2713, 3241, 3750, 4069, 3446, 2865, 2339, 1932, 1617, 1398, 1254, 1197, 1203, 1303, 1446, 1723, 2045, 2500, 3060, 3678, 3923, 3340, 2782, 2277, 1821, 1491, 1303, 1138, 1097, 1109, 1193, 1354, 1597, 1956, 2368, 2942, 3509, 3825, 3228, 2656, 2167, 1750, 1419, 1228, 1099, 1042, 1057, 1135, 1271, 1521, 1857, 2283, 2812, 3415, 3787, 3201, 2647, 2107, 1715, 1391, 1195, 1077, 1024, 1045, 1112, 1264, 1515, 1800, 2263, 2792, 3385, 3750, 3283, 2638, 2131, 1715, 1419, 1208, 1096, 1042, 1048, 1130, 1279, 1500, 1857, 2318, 2823, 3430, 3903, 3214, 2742, 2211, 1791, 1488, 1260, 1150, 1079, 1105, 1195, 1330, 1574, 1893, 2354, 2909, 3477, 3963, 3415, 2844, 2325, 1903, 1594, 1373, 1254, 1173, 1199, 1303, 1441, 1670, 2040, 2484, 3023, 3591, 3984, 3575, 3000, 2516, 2067, 1758, 1509, 1376, 1330, 1337, 1430, 1604, 1852, 2204, 2629, 3161, 3713, 4250, 3695, 3241, 2722, 2297, 1971, 1738, 1571, 1512, 1527, 1617, 1771, 2024, 2390, 2833, 3385, 3903, 4473, 3943, 3415, 2976, 2567, 2230, 1987, 1821, 1763, 1763, 1848, 2034, 2297, 2665, 3060, 3558, 4069, 4722, 4203, 3768, 3297, 2931, 2524, 2283, 2101, 2045, 2067, 2125, 2332, 2593, 2942, 3400, 3768, 4346, 5584, 4473, 3984, 3558, 3135, 2887, 2675, 2492, 2354, 2428, 2492, 2656, 2844, 3241, 3625, 4180, 4553]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4101, 3372, 2979, 2650, 2422, 2261, 2165, 2066, 1981, 1991, 2061, 2159, 2366, 2511, 2757, 3163, 3533, 3627, 3057, 2720, 2511, 2248, 2056, 1911, 1810, 1755, 1759, 1838, 1957, 2125, 2338, 2583, 2936, 3201, 3304, 2884, 2599, 2325, 2061, 1826, 1711, 1585, 1552, 1591, 1652, 1759, 1920, 2159, 2415, 2693, 3091, 3213, 2767, 2444, 2131, 1889, 1666, 1525, 1444, 1397, 1414, 1460, 1591, 1774, 1976, 2242, 2511, 2936, 3001, 2633, 2273, 1981, 1759, 1540, 1397, 1314, 1265, 1267, 1342, 1452, 1636, 1834, 2114, 2400, 2814, 2936, 2542, 2200, 1863, 1623, 1432, 1300, 1197, 1158, 1166, 1235, 1338, 1534, 1718, 1995, 2319, 2667, 2854, 2519, 2125, 1830, 1555, 1360, 1213, 1124, 1093, 1113, 1168, 1275, 1452, 1662, 1925, 2261, 2575, 2844, 2422, 2066, 1763, 1517, 1298, 1166, 1087, 1050, 1060, 1116, 1229, 1407, 1629, 1863, 2188, 2583, 2767, 2386, 2061, 1733, 1497, 1295, 1156, 1061, 1024, 1045, 1100, 1209, 1383, 1597, 1842, 2171, 2566, 2834, 2408, 2056, 1778, 1509, 1323, 1161, 1074, 1049, 1050, 1116, 1238, 1402, 1607, 1851, 2200, 2535, 2894, 2415, 2114, 1818, 1537, 1349, 1195, 1115, 1071, 1097, 1159, 1277, 1434, 1642, 1920, 2248, 2667, 2936, 2519, 2171, 1880, 1626, 1422, 1273, 1169, 1156, 1168, 1224, 1338, 1506, 1697, 1986, 2299, 2720, 3080, 2616, 2280, 1971, 1725, 1523, 1383, 1291, 1250, 1258, 1321, 1452, 1597, 1794, 2061, 2379, 2767, 3103, 2730, 2393, 2109, 1855, 1683, 1492, 1417, 1376, 1397, 1444, 1555, 1725, 1920, 2194, 2496, 2894, 3359, 2915, 2566, 2299, 2040, 1814, 1672, 1569, 1534, 1552, 1613, 1700, 1894, 2098, 2352, 2658, 3057, 3676, 3103, 2748, 2458, 2218, 2015, 1863, 1770, 1722, 1751, 1794, 1911, 2077, 2305, 2527, 2824, 3226, 4460, 3401, 3034, 2748, 2473, 2212, 2103, 1995, 1929, 1971, 2051, 2142, 2305, 2535, 2730, 3151, 3458]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4191, 3305, 2946, 2648, 2464, 2258, 2064, 2023, 1931, 1927, 2053, 2112, 2284, 2494, 2738, 3115, 3292, 3582, 3092, 2747, 2486, 2186, 2028, 1852, 1775, 1705, 1715, 1771, 1918, 2043, 2297, 2517, 2823, 3226, 3374, 2935, 2598, 2271, 2008, 1831, 1666, 1558, 1549, 1537, 1601, 1680, 1891, 2069, 2316, 2675, 3092, 3103, 2728, 2413, 2128, 1882, 1643, 1497, 1419, 1378, 1383, 1429, 1561, 1741, 1913, 2157, 2486, 2914, 3080, 2666, 2316, 1983, 1726, 1534, 1367, 1276, 1239, 1239, 1316, 1431, 1576, 1799, 2079, 2398, 2794, 2935, 2541, 2192, 1873, 1629, 1419, 1282, 1183, 1140, 1155, 1205, 1324, 1497, 1690, 1969, 2290, 2710, 2946, 2486, 2151, 1823, 1561, 1346, 1208, 1123, 1068, 1081, 1152, 1249, 1429, 1636, 1900, 2203, 2589, 2883, 2464, 2090, 1783, 1508, 1309, 1163, 1063, 1037, 1055, 1090, 1205, 1376, 1591, 1844, 2192, 2589, 2894, 2420, 2064, 1764, 1489, 1309, 1140, 1057, 1024, 1028, 1087, 1196, 1369, 1576, 1848, 2151, 2565, 2853, 2442, 2096, 1764, 1503, 1316, 1157, 1077, 1037, 1046, 1102, 1214, 1380, 1601, 1848, 2203, 2565, 2894, 2471, 2145, 1799, 1567, 1346, 1203, 1125, 1074, 1099, 1148, 1263, 1429, 1633, 1900, 2246, 2606, 2967, 2581, 2221, 1904, 1633, 1439, 1276, 1175, 1148, 1160, 1205, 1324, 1462, 1705, 1983, 2297, 2666, 3080, 2648, 2310, 2003, 1726, 1549, 1385, 1289, 1255, 1253, 1316, 1442, 1582, 1811, 2053, 2413, 2833, 3201, 2804, 2434, 2168, 1869, 1666, 1528, 1434, 1376, 1395, 1442, 1570, 1726, 1940, 2228, 2549, 2873, 3388, 2957, 2589, 2323, 2028, 1844, 1687, 1567, 1525, 1552, 1607, 1712, 1886, 2090, 2350, 2683, 3151, 3662, 3151, 2765, 2502, 2252, 2018, 1865, 1764, 1741, 1730, 1775, 1882, 2053, 2290, 2557, 2853, 3265, 4395, 3374, 3080, 2675, 2486, 2271, 2096, 2033, 1959, 1940, 2023, 2123, 2265, 2533, 2775, 3115, 3630]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3754, 3029, 2816, 2631, 2253, 2084, 2014, 1887, 1830, 1887, 1877, 1970, 2171, 2326, 2593, 2907, 3162, 3369, 2884, 2612, 2326, 2096, 1907, 1767, 1677, 1661, 1646, 1716, 1820, 1970, 2184, 2311, 2650, 2955, 3081, 2773, 2452, 2225, 1917, 1733, 1609, 1508, 1453, 1477, 1527, 1646, 1776, 1959, 2198, 2469, 2838, 3004, 2593, 2326, 2003, 1793, 1638, 1453, 1371, 1335, 1335, 1381, 1483, 1654, 1820, 2084, 2372, 2670, 2907, 2503, 2198, 1917, 1692, 1483, 1330, 1278, 1222, 1222, 1297, 1365, 1489, 1700, 1981, 2225, 2593, 2773, 2372, 2133, 1811, 1595, 1419, 1265, 1163, 1109, 1137, 1167, 1274, 1448, 1638, 1868, 2171, 2593, 2631, 2341, 2120, 1767, 1554, 1355, 1206, 1113, 1057, 1082, 1126, 1210, 1355, 1554, 1839, 2096, 2403, 2710, 2311, 2025, 1716, 1502, 1320, 1155, 1082, 1039, 1024, 1066, 1178, 1316, 1508, 1758, 2084, 2372, 2794, 2356, 1991, 1716, 1471, 1287, 1163, 1079, 1030, 1036, 1073, 1163, 1306, 1502, 1750, 2036, 2419, 2710, 2356, 2036, 1776, 1477, 1306, 1182, 1066, 1063, 1036, 1082, 1174, 1316, 1527, 1758, 2072, 2419, 2794, 2387, 2060, 1793, 1554, 1345, 1222, 1141, 1066, 1070, 1152, 1230, 1371, 1534, 1793, 2096, 2403, 2752, 2503, 2145, 1839, 1602, 1408, 1274, 1190, 1134, 1148, 1190, 1301, 1436, 1624, 1887, 2158, 2486, 2861, 2575, 2267, 1938, 1692, 1508, 1355, 1278, 1239, 1252, 1292, 1392, 1502, 1692, 1959, 2311, 2631, 3055, 2650, 2326, 2072, 1811, 1661, 1483, 1403, 1345, 1350, 1403, 1477, 1646, 1839, 2084, 2326, 2752, 3337, 2794, 2486, 2184, 1981, 1776, 1669, 1547, 1508, 1502, 1554, 1631, 1784, 1938, 2281, 2521, 2884, 3466, 2955, 2631, 2403, 2211, 1970, 1811, 1708, 1669, 1654, 1716, 1811, 1948, 2171, 2387, 2710, 3081, 4143, 3218, 2955, 2631, 2311, 2120, 2014, 1948, 1897, 1907, 1938, 1970, 2145, 2419, 2612, 2838, 3369]
                                       }
                                   }, {
                                       "name":    "3264x2448_A_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3950, 3619, 3392, 3200, 2854, 2766, 2477, 2374, 2291, 2322, 2429, 2546, 2735, 2960, 3189, 3363, 3402, 3694, 3566, 3225, 2979, 2713, 2422, 2202, 2075, 2003, 2026, 2093, 2282, 2493, 2773, 3030, 3243, 3424, 3607, 3433, 3095, 2796, 2407, 2113, 1937, 1775, 1746, 1735, 1835, 1976, 2210, 2510, 2805, 3096, 3405, 3608, 3243, 2935, 2542, 2189, 1897, 1708, 1582, 1501, 1514, 1589, 1747, 2004, 2278, 2656, 2983, 3261, 3560, 3124, 2755, 2328, 2006, 1724, 1520, 1392, 1328, 1348, 1418, 1587, 1799, 2096, 2478, 2849, 3152, 3435, 3045, 2630, 2214, 1871, 1590, 1387, 1249, 1194, 1199, 1295, 1427, 1676, 1948, 2312, 2723, 3125, 3342, 2976, 2572, 2169, 1774, 1474, 1297, 1137, 1096, 1108, 1190, 1342, 1564, 1876, 2208, 2640, 3011, 3277, 2892, 2470, 2074, 1711, 1407, 1225, 1099, 1042, 1057, 1133, 1263, 1495, 1790, 2139, 2539, 2948, 3251, 2873, 2464, 2021, 1680, 1380, 1193, 1077, 1024, 1045, 1111, 1257, 1490, 1739, 2124, 2525, 2927, 3217, 2939, 2454, 2041, 1678, 1407, 1205, 1096, 1042, 1048, 1128, 1271, 1475, 1790, 2170, 2549, 2960, 3326, 2869, 2537, 2109, 1746, 1471, 1255, 1149, 1079, 1104, 1192, 1319, 1542, 1818, 2195, 2612, 2986, 3351, 3019, 2612, 2202, 1844, 1568, 1363, 1249, 1171, 1196, 1295, 1422, 1627, 1944, 2298, 2692, 3057, 3335, 3124, 2725, 2357, 1984, 1716, 1489, 1365, 1321, 1327, 1413, 1571, 1786, 2078, 2406, 2783, 3123, 3496, 3184, 2900, 2515, 2176, 1902, 1697, 1545, 1490, 1503, 1583, 1716, 1929, 2224, 2555, 2934, 3230, 3607, 3334, 3004, 2703, 2392, 2119, 1913, 1767, 1715, 1713, 1785, 1941, 2153, 2435, 2710, 3029, 3304, 3715, 3474, 3239, 2931, 2674, 2353, 2158, 2004, 1956, 1973, 2016, 2183, 2381, 2633, 2942, 3139, 3441, 4216, 3599, 3343, 3088, 2798, 2628, 2470, 2322, 2204, 2266, 2309, 2429, 2554, 2830, 3062, 3381, 3494]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3178, 2777, 2556, 2349, 2199, 2089, 2023, 1946, 1873, 1879, 1932, 2001, 2152, 2235, 2382, 2621, 2780, 2918, 2591, 2393, 2271, 2083, 1938, 1823, 1739, 1691, 1693, 1757, 1850, 1976, 2126, 2283, 2497, 2608, 2731, 2496, 2328, 2143, 1944, 1752, 1658, 1547, 1518, 1553, 1604, 1691, 1818, 2000, 2176, 2345, 2572, 2702, 2434, 2225, 1996, 1807, 1619, 1496, 1424, 1380, 1395, 1435, 1549, 1703, 1860, 2055, 2227, 2489, 2567, 2349, 2099, 1879, 1701, 1510, 1381, 1305, 1258, 1259, 1329, 1427, 1588, 1748, 1962, 2157, 2421, 2538, 2291, 2050, 1784, 1583, 1414, 1292, 1194, 1156, 1163, 1229, 1324, 1500, 1652, 1871, 2105, 2325, 2488, 2284, 1994, 1761, 1524, 1348, 1209, 1123, 1092, 1112, 1165, 1266, 1427, 1607, 1818, 2066, 2264, 2488, 2209, 1947, 1703, 1491, 1290, 1164, 1087, 1050, 1060, 1115, 1223, 1387, 1580, 1767, 2011, 2278, 2429, 2181, 1944, 1677, 1473, 1287, 1154, 1061, 1024, 1045, 1099, 1204, 1365, 1552, 1750, 1998, 2267, 2480, 2197, 1938, 1717, 1483, 1314, 1159, 1074, 1049, 1050, 1115, 1231, 1382, 1560, 1757, 2021, 2240, 2520, 2196, 1984, 1750, 1507, 1337, 1192, 1114, 1071, 1096, 1156, 1268, 1410, 1589, 1813, 2055, 2338, 2538, 2272, 2025, 1799, 1586, 1404, 1266, 1166, 1154, 1165, 1218, 1324, 1474, 1633, 1863, 2088, 2367, 2629, 2335, 2105, 1870, 1669, 1494, 1368, 1282, 1243, 1250, 1309, 1427, 1552, 1712, 1917, 2139, 2385, 2617, 2404, 2182, 1977, 1776, 1635, 1465, 1398, 1360, 1379, 1420, 1516, 1659, 1811, 2014, 2215, 2457, 2773, 2520, 2301, 2121, 1925, 1741, 1622, 1532, 1501, 1516, 1568, 1638, 1795, 1948, 2124, 2317, 2546, 2954, 2626, 2416, 2227, 2057, 1902, 1780, 1703, 1661, 1685, 1718, 1810, 1935, 2099, 2237, 2411, 2626, 3429, 2799, 2599, 2428, 2242, 2047, 1969, 1883, 1827, 1862, 1923, 1986, 2101, 2255, 2361, 2612, 2728]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3241, 2727, 2530, 2347, 2234, 2086, 1935, 1908, 1829, 1823, 1925, 1961, 2083, 2222, 2367, 2585, 2612, 2885, 2618, 2415, 2250, 2029, 1913, 1770, 1707, 1646, 1653, 1697, 1816, 1905, 2092, 2229, 2410, 2626, 2784, 2536, 2328, 2097, 1897, 1757, 1617, 1522, 1515, 1502, 1557, 1620, 1793, 1923, 2094, 2330, 2573, 2617, 2402, 2199, 1994, 1801, 1598, 1470, 1400, 1362, 1366, 1406, 1522, 1673, 1805, 1983, 2206, 2472, 2629, 2376, 2136, 1881, 1670, 1505, 1353, 1268, 1233, 1232, 1304, 1408, 1532, 1716, 1932, 2155, 2406, 2537, 2290, 2043, 1793, 1588, 1401, 1274, 1180, 1138, 1152, 1200, 1310, 1465, 1627, 1848, 2080, 2359, 2561, 2256, 2017, 1754, 1530, 1334, 1204, 1122, 1068, 1080, 1149, 1241, 1405, 1583, 1796, 2017, 2276, 2520, 2244, 1968, 1722, 1482, 1300, 1161, 1063, 1037, 1055, 1089, 1199, 1357, 1545, 1750, 2014, 2283, 2531, 2209, 1947, 1705, 1465, 1301, 1138, 1057, 1024, 1028, 1086, 1191, 1351, 1532, 1755, 1981, 2266, 2495, 2226, 1974, 1704, 1478, 1307, 1155, 1077, 1037, 1046, 1101, 1208, 1361, 1554, 1754, 2023, 2264, 2520, 2243, 2011, 1732, 1535, 1334, 1199, 1124, 1074, 1098, 1145, 1254, 1405, 1581, 1796, 2054, 2289, 2562, 2323, 2068, 1821, 1592, 1420, 1269, 1172, 1146, 1157, 1200, 1310, 1433, 1641, 1861, 2086, 2324, 2629, 2361, 2131, 1899, 1670, 1519, 1370, 1280, 1248, 1246, 1304, 1418, 1538, 1727, 1910, 2167, 2436, 2692, 2464, 2217, 2029, 1789, 1619, 1499, 1414, 1360, 1377, 1418, 1530, 1660, 1829, 2043, 2257, 2441, 2794, 2553, 2320, 2141, 1914, 1768, 1636, 1530, 1493, 1516, 1562, 1649, 1788, 1941, 2122, 2337, 2617, 2944, 2663, 2430, 2264, 2086, 1904, 1782, 1697, 1679, 1666, 1700, 1784, 1914, 2086, 2262, 2433, 2655, 3384, 2779, 2635, 2369, 2253, 2097, 1963, 1916, 1854, 1834, 1899, 1970, 2067, 2253, 2396, 2585, 2848]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2935, 2521, 2428, 2333, 2057, 1936, 1891, 1787, 1739, 1787, 1771, 1838, 1988, 2085, 2253, 2430, 2521, 2730, 2457, 2306, 2116, 1951, 1806, 1693, 1618, 1606, 1590, 1647, 1729, 1842, 1997, 2063, 2277, 2429, 2564, 2408, 2207, 2057, 1816, 1668, 1564, 1475, 1425, 1446, 1488, 1589, 1691, 1828, 1996, 2167, 2382, 2541, 2293, 2126, 1884, 1720, 1593, 1428, 1354, 1321, 1320, 1360, 1449, 1594, 1723, 1921, 2114, 2285, 2494, 2242, 2035, 1822, 1639, 1457, 1317, 1270, 1216, 1216, 1286, 1345, 1452, 1628, 1848, 2013, 2249, 2409, 2149, 1991, 1736, 1557, 1401, 1258, 1160, 1108, 1135, 1163, 1263, 1420, 1580, 1760, 1981, 2266, 2309, 2134, 1989, 1703, 1523, 1343, 1202, 1112, 1057, 1081, 1124, 1203, 1336, 1508, 1742, 1927, 2127, 2380, 2115, 1911, 1660, 1477, 1311, 1153, 1082, 1039, 1024, 1065, 1173, 1301, 1469, 1674, 1922, 2108, 2451, 2155, 1882, 1661, 1448, 1279, 1161, 1079, 1030, 1036, 1072, 1159, 1292, 1464, 1668, 1883, 2149, 2380, 2153, 1920, 1715, 1453, 1297, 1180, 1066, 1063, 1036, 1081, 1169, 1301, 1486, 1674, 1912, 2146, 2440, 2172, 1936, 1727, 1523, 1333, 1218, 1140, 1066, 1070, 1149, 1223, 1351, 1490, 1701, 1927, 2127, 2392, 2258, 2002, 1762, 1563, 1391, 1267, 1187, 1132, 1146, 1185, 1288, 1408, 1567, 1777, 1970, 2182, 2458, 2301, 2094, 1841, 1639, 1480, 1341, 1270, 1233, 1245, 1281, 1371, 1464, 1621, 1829, 2083, 2279, 2581, 2339, 2126, 1944, 1736, 1614, 1456, 1385, 1330, 1334, 1381, 1444, 1587, 1740, 1921, 2077, 2348, 2756, 2425, 2235, 2022, 1873, 1707, 1619, 1512, 1477, 1470, 1513, 1575, 1698, 1810, 2065, 2209, 2417, 2801, 2512, 2321, 2181, 2051, 1862, 1733, 1646, 1613, 1597, 1647, 1721, 1823, 1986, 2124, 2323, 2521, 3207, 2662, 2537, 2333, 2106, 1967, 1891, 1841, 1799, 1805, 1824, 1838, 1966, 2160, 2268, 2379, 2666]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4443, 3702, 3358, 3024, 2737, 2447, 2310, 2155, 2085, 2100, 2139, 2301, 2489, 2817, 3139, 3458, 3775, 3956, 3521, 3139, 2777, 2447, 2188, 1985, 1863, 1810, 1822, 1900, 2034, 2265, 2522, 2873, 3245, 3609, 3750, 3338, 2917, 2567, 2213, 1938, 1745, 1618, 1565, 1574, 1655, 1788, 1991, 2292, 2649, 3024, 3479, 3655, 3139, 2763, 2301, 1998, 1709, 1553, 1444, 1395, 1405, 1451, 1595, 1777, 2078, 2427, 2859, 3263, 3458, 2977, 2555, 2155, 1822, 1574, 1402, 1289, 1245, 1245, 1322, 1444, 1636, 1900, 2256, 2662, 3072, 3300, 2873, 2396, 2005, 1704, 1451, 1289, 1201, 1139, 1160, 1201, 1325, 1512, 1772, 2116, 2544, 2977, 3263, 2790, 2329, 1912, 1609, 1372, 1221, 1119, 1069, 1092, 1139, 1242, 1433, 1669, 2005, 2447, 2845, 3245, 2662, 2256, 1857, 1574, 1331, 1171, 1077, 1035, 1044, 1092, 1201, 1372, 1627, 1951, 2377, 2873, 3173, 2699, 2221, 1828, 1532, 1313, 1162, 1066, 1024, 1039, 1084, 1186, 1346, 1591, 1919, 2348, 2804, 3072, 2763, 2256, 1863, 1553, 1322, 1169, 1069, 1033, 1033, 1092, 1198, 1369, 1609, 1951, 2357, 2845, 3173, 2750, 2301, 1906, 1604, 1369, 1208, 1111, 1073, 1084, 1135, 1237, 1419, 1641, 1985, 2386, 2902, 3226, 2817, 2377, 1985, 1689, 1444, 1281, 1181, 1137, 1146, 1216, 1319, 1485, 1750, 2093, 2511, 2962, 3438, 2977, 2500, 2123, 1799, 1544, 1388, 1281, 1237, 1247, 1307, 1451, 1609, 1875, 2204, 2662, 3040, 3565, 3072, 2699, 2292, 1964, 1709, 1548, 1419, 1375, 1378, 1447, 1574, 1766, 2026, 2396, 2777, 3156, 3750, 3245, 2845, 2479, 2188, 1912, 1719, 1600, 1544, 1565, 1636, 1745, 1945, 2247, 2590, 2947, 3338, 4039, 3438, 3072, 2737, 2437, 2131, 1964, 1810, 1777, 1772, 1845, 1985, 2179, 2479, 2790, 3191, 3543, 4813, 3702, 3377, 2932, 2674, 2427, 2239, 2085, 2048, 2019, 2147, 2256, 2479, 2686, 3040, 3417, 3775]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3682, 3166, 2827, 2562, 2342, 2139, 2014, 1931, 1889, 1889, 1959, 2078, 2223, 2391, 2612, 2921, 3284, 3441, 2932, 2647, 2370, 2128, 1931, 1783, 1706, 1652, 1688, 1747, 1849, 2019, 2242, 2436, 2758, 3141, 3192, 2777, 2451, 2193, 1917, 1759, 1612, 1537, 1502, 1496, 1561, 1673, 1828, 2035, 2288, 2545, 2921, 2998, 2621, 2315, 2030, 1787, 1589, 1463, 1384, 1355, 1358, 1419, 1537, 1681, 1858, 2116, 2443, 2787, 2910, 2513, 2169, 1876, 1656, 1471, 1339, 1271, 1227, 1231, 1304, 1406, 1561, 1740, 1999, 2281, 2647, 2837, 2391, 2094, 1799, 1567, 1386, 1250, 1162, 1144, 1151, 1203, 1310, 1471, 1666, 1894, 2181, 2529, 2729, 2328, 2009, 1736, 1488, 1302, 1190, 1107, 1071, 1090, 1144, 1249, 1391, 1593, 1854, 2116, 2474, 2647, 2294, 1959, 1681, 1439, 1273, 1147, 1067, 1040, 1051, 1109, 1207, 1342, 1555, 1799, 2067, 2436, 2638, 2268, 1940, 1652, 1434, 1260, 1136, 1064, 1024, 1048, 1098, 1196, 1344, 1528, 1779, 2078, 2428, 2701, 2308, 1959, 1681, 1452, 1262, 1142, 1070, 1039, 1046, 1106, 1196, 1353, 1549, 1771, 2100, 2451, 2692, 2363, 2009, 1721, 1494, 1308, 1178, 1096, 1067, 1087, 1141, 1231, 1398, 1574, 1832, 2122, 2505, 2807, 2377, 2051, 1775, 1561, 1369, 1252, 1154, 1131, 1142, 1199, 1308, 1450, 1635, 1885, 2169, 2570, 2868, 2474, 2175, 1867, 1646, 1460, 1321, 1249, 1208, 1227, 1275, 1398, 1531, 1717, 1964, 2268, 2665, 2976, 2612, 2281, 1999, 1771, 1580, 1460, 1374, 1319, 1337, 1403, 1513, 1652, 1828, 2100, 2413, 2720, 3129, 2720, 2436, 2128, 1903, 1725, 1583, 1516, 1477, 1466, 1546, 1639, 1783, 1989, 2230, 2505, 2943, 3487, 2954, 2604, 2349, 2100, 1907, 1759, 1670, 1632, 1639, 1706, 1815, 1954, 2175, 2436, 2720, 3141, 4188, 3166, 2797, 2562, 2349, 2134, 1959, 1889, 1837, 1837, 1907, 2024, 2211, 2413, 2665, 2987, 3298]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3764, 3125, 2774, 2583, 2285, 2114, 1991, 1891, 1834, 1856, 1891, 1996, 2125, 2360, 2644, 2917, 3321, 3321, 2939, 2618, 2346, 2119, 1919, 1776, 1693, 1650, 1654, 1700, 1805, 1957, 2172, 2403, 2707, 3040, 3175, 2774, 2447, 2172, 1928, 1730, 1594, 1520, 1475, 1480, 1547, 1640, 1780, 1991, 2233, 2550, 2885, 3029, 2662, 2346, 2017, 1765, 1581, 1461, 1368, 1329, 1340, 1380, 1486, 1640, 1843, 2091, 2367, 2717, 2950, 2526, 2184, 1891, 1650, 1483, 1333, 1247, 1216, 1228, 1277, 1380, 1523, 1711, 1967, 2239, 2609, 2764, 2455, 2097, 1797, 1569, 1380, 1239, 1166, 1128, 1136, 1183, 1296, 1435, 1627, 1869, 2184, 2542, 2754, 2374, 2027, 1734, 1503, 1311, 1192, 1104, 1070, 1074, 1129, 1237, 1363, 1559, 1797, 2102, 2502, 2689, 2318, 1976, 1689, 1459, 1281, 1147, 1064, 1035, 1048, 1083, 1180, 1315, 1523, 1757, 2064, 2425, 2635, 2298, 1962, 1661, 1445, 1267, 1139, 1054, 1025, 1024, 1083, 1173, 1320, 1509, 1749, 2059, 2418, 2698, 2325, 1981, 1693, 1456, 1279, 1137, 1065, 1033, 1044, 1092, 1182, 1338, 1520, 1761, 2053, 2440, 2745, 2374, 2017, 1719, 1497, 1322, 1187, 1109, 1061, 1086, 1126, 1224, 1377, 1553, 1789, 2097, 2478, 2813, 2425, 2102, 1809, 1569, 1389, 1249, 1168, 1126, 1137, 1194, 1300, 1435, 1620, 1860, 2184, 2592, 2906, 2518, 2196, 1896, 1654, 1480, 1344, 1253, 1216, 1229, 1279, 1380, 1520, 1711, 1967, 2285, 2592, 3040, 2689, 2332, 2037, 1793, 1597, 1472, 1384, 1324, 1340, 1392, 1497, 1637, 1843, 2064, 2418, 2774, 3253, 2774, 2478, 2178, 1957, 1765, 1613, 1509, 1480, 1497, 1538, 1650, 1776, 1991, 2227, 2550, 2939, 3467, 2950, 2662, 2374, 2114, 1947, 1793, 1707, 1657, 1654, 1704, 1809, 1942, 2178, 2388, 2735, 3088, 4205, 3200, 2972, 2592, 2339, 2142, 2012, 1909, 1878, 1869, 1942, 2006, 2202, 2360, 2644, 2961, 3267]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3492, 3009, 2698, 2385, 2126, 1986, 1845, 1803, 1754, 1762, 1803, 1908, 2027, 2198, 2400, 2698, 3032, 3129, 2755, 2445, 2235, 1996, 1803, 1657, 1584, 1558, 1571, 1623, 1746, 1837, 2059, 2248, 2524, 2855, 3009, 2608, 2315, 2070, 1811, 1637, 1534, 1443, 1407, 1412, 1487, 1584, 1679, 1845, 2092, 2385, 2679, 2855, 2460, 2173, 1899, 1701, 1522, 1407, 1304, 1283, 1287, 1326, 1417, 1546, 1723, 1956, 2235, 2508, 2698, 2342, 2103, 1819, 1610, 1428, 1295, 1211, 1178, 1185, 1234, 1317, 1454, 1603, 1837, 2103, 2508, 2661, 2342, 1996, 1731, 1516, 1344, 1207, 1140, 1108, 1114, 1144, 1230, 1368, 1552, 1762, 2027, 2385, 2557, 2248, 1937, 1679, 1449, 1287, 1154, 1090, 1060, 1049, 1102, 1182, 1304, 1482, 1716, 1976, 2315, 2557, 2210, 1881, 1623, 1412, 1250, 1124, 1057, 1032, 1029, 1072, 1147, 1274, 1443, 1686, 1918, 2274, 2591, 2173, 1863, 1623, 1402, 1234, 1131, 1049, 1024, 1027, 1060, 1134, 1283, 1438, 1637, 1946, 2287, 2608, 2222, 1881, 1657, 1433, 1250, 1131, 1057, 1038, 1038, 1078, 1144, 1278, 1433, 1679, 1918, 2301, 2661, 2235, 1937, 1679, 1449, 1291, 1171, 1087, 1054, 1054, 1099, 1178, 1313, 1493, 1693, 1966, 2287, 2679, 2301, 1976, 1716, 1504, 1344, 1226, 1144, 1114, 1108, 1154, 1250, 1372, 1540, 1754, 2037, 2385, 2755, 2400, 2081, 1803, 1590, 1412, 1308, 1222, 1189, 1182, 1226, 1321, 1443, 1623, 1837, 2149, 2415, 2835, 2524, 2198, 1937, 1723, 1552, 1412, 1335, 1287, 1287, 1344, 1417, 1565, 1746, 1956, 2235, 2608, 3032, 2661, 2315, 2059, 1819, 1679, 1528, 1438, 1407, 1422, 1454, 1546, 1686, 1872, 2081, 2356, 2717, 3287, 2794, 2492, 2210, 2006, 1819, 1708, 1603, 1558, 1577, 1623, 1679, 1837, 2037, 2248, 2557, 2898, 4162, 3009, 2661, 2445, 2185, 1966, 1881, 1819, 1762, 1754, 1803, 1918, 2027, 2261, 2430, 2835, 3155]
                                       }
                                   }, {
                                       "name":    "3264x2448_CWF_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3417, 3024, 2853, 2653, 2464, 2249, 2150, 2024, 1966, 1976, 2000, 2123, 2255, 2485, 2681, 2842, 2950, 3158, 2948, 2732, 2494, 2255, 2055, 1890, 1787, 1742, 1750, 1813, 1919, 2098, 2281, 2517, 2736, 2905, 3065, 2855, 2592, 2351, 2078, 1854, 1690, 1578, 1530, 1537, 1606, 1718, 1881, 2115, 2370, 2607, 2862, 3040, 2735, 2495, 2146, 1906, 1659, 1522, 1424, 1378, 1387, 1426, 1553, 1706, 1950, 2211, 2508, 2740, 2924, 2632, 2342, 2034, 1759, 1542, 1386, 1280, 1239, 1238, 1310, 1420, 1588, 1807, 2085, 2372, 2623, 2826, 2567, 2221, 1912, 1658, 1432, 1281, 1198, 1137, 1157, 1196, 1311, 1479, 1701, 1977, 2292, 2570, 2815, 2512, 2173, 1836, 1575, 1359, 1217, 1118, 1069, 1091, 1137, 1234, 1409, 1613, 1888, 2223, 2480, 2811, 2412, 2115, 1790, 1545, 1322, 1169, 1077, 1035, 1044, 1091, 1196, 1354, 1578, 1845, 2171, 2512, 2756, 2446, 2086, 1764, 1506, 1305, 1160, 1066, 1024, 1039, 1083, 1181, 1329, 1546, 1818, 2148, 2459, 2672, 2498, 2115, 1795, 1525, 1313, 1167, 1069, 1033, 1033, 1091, 1193, 1351, 1562, 1845, 2154, 2489, 2743, 2478, 2149, 1830, 1570, 1356, 1204, 1110, 1073, 1083, 1133, 1229, 1396, 1588, 1870, 2172, 2526, 2768, 2520, 2204, 1894, 1644, 1425, 1273, 1178, 1135, 1144, 1210, 1306, 1454, 1681, 1957, 2265, 2558, 2909, 2632, 2295, 2006, 1738, 1514, 1373, 1273, 1231, 1240, 1295, 1426, 1563, 1784, 2040, 2372, 2598, 2971, 2680, 2441, 2138, 1875, 1659, 1518, 1400, 1359, 1361, 1423, 1534, 1696, 1904, 2185, 2442, 2658, 3065, 2781, 2532, 2275, 2056, 1830, 1666, 1561, 1510, 1528, 1589, 1679, 1841, 2076, 2321, 2546, 2757, 3218, 2884, 2677, 2461, 2246, 2005, 1871, 1739, 1711, 1705, 1764, 1875, 2023, 2244, 2450, 2694, 2857, 3676, 3024, 2868, 2578, 2411, 2232, 2088, 1962, 1933, 1904, 2007, 2085, 2247, 2378, 2604, 2811, 2950]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2885, 2623, 2437, 2277, 2132, 1984, 1891, 1826, 1792, 1789, 1843, 1931, 2032, 2138, 2268, 2441, 2606, 2783, 2494, 2334, 2153, 1979, 1827, 1708, 1645, 1597, 1628, 1675, 1755, 1885, 2046, 2164, 2360, 2564, 2648, 2411, 2206, 2029, 1816, 1691, 1567, 1502, 1471, 1464, 1520, 1613, 1737, 1894, 2071, 2227, 2445, 2537, 2316, 2116, 1908, 1715, 1548, 1438, 1367, 1340, 1342, 1396, 1499, 1619, 1757, 1948, 2172, 2375, 2496, 2250, 2010, 1785, 1606, 1445, 1326, 1263, 1221, 1224, 1292, 1384, 1518, 1664, 1863, 2059, 2291, 2460, 2165, 1957, 1726, 1531, 1370, 1243, 1159, 1142, 1148, 1198, 1297, 1441, 1605, 1783, 1990, 2216, 2388, 2123, 1892, 1675, 1461, 1292, 1187, 1106, 1071, 1089, 1142, 1241, 1370, 1544, 1755, 1944, 2184, 2330, 2100, 1852, 1628, 1417, 1265, 1145, 1067, 1040, 1051, 1108, 1201, 1325, 1512, 1710, 1908, 2160, 2325, 2080, 1837, 1602, 1413, 1253, 1135, 1064, 1024, 1048, 1097, 1191, 1328, 1488, 1694, 1919, 2156, 2373, 2112, 1852, 1628, 1429, 1255, 1140, 1070, 1039, 1046, 1105, 1191, 1336, 1506, 1686, 1936, 2172, 2358, 2152, 1892, 1661, 1467, 1298, 1175, 1095, 1067, 1086, 1139, 1223, 1376, 1527, 1736, 1949, 2208, 2436, 2153, 1920, 1704, 1525, 1353, 1245, 1151, 1129, 1140, 1194, 1295, 1421, 1577, 1775, 1980, 2248, 2464, 2218, 2015, 1777, 1597, 1435, 1309, 1242, 1203, 1220, 1264, 1376, 1491, 1643, 1833, 2048, 2305, 2520, 2308, 2087, 1880, 1700, 1539, 1435, 1357, 1306, 1322, 1381, 1477, 1593, 1730, 1934, 2147, 2324, 2600, 2366, 2193, 1974, 1803, 1660, 1540, 1483, 1448, 1436, 1506, 1582, 1697, 1854, 2023, 2196, 2461, 2816, 2511, 2300, 2135, 1955, 1806, 1686, 1612, 1579, 1584, 1638, 1725, 1828, 1989, 2164, 2331, 2564, 3239, 2623, 2413, 2277, 2138, 1980, 1843, 1789, 1745, 1743, 1797, 1885, 2022, 2156, 2310, 2490, 2616]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2942, 2593, 2395, 2294, 2084, 1962, 1871, 1791, 1743, 1760, 1783, 1861, 1949, 2112, 2293, 2438, 2632, 2695, 2500, 2311, 2133, 1971, 1817, 1701, 1633, 1595, 1597, 1633, 1716, 1831, 1987, 2137, 2321, 2491, 2635, 2409, 2203, 2011, 1826, 1665, 1550, 1486, 1446, 1449, 1507, 1583, 1694, 1856, 2025, 2231, 2418, 2561, 2349, 2142, 1896, 1695, 1540, 1436, 1351, 1315, 1325, 1359, 1452, 1582, 1743, 1927, 2110, 2322, 2528, 2260, 2023, 1799, 1600, 1457, 1320, 1240, 1210, 1221, 1266, 1360, 1483, 1638, 1836, 2024, 2261, 2402, 2218, 1960, 1724, 1532, 1364, 1233, 1163, 1126, 1134, 1178, 1284, 1407, 1570, 1761, 1992, 2226, 2408, 2162, 1907, 1673, 1475, 1301, 1189, 1103, 1070, 1073, 1127, 1229, 1343, 1513, 1705, 1932, 2206, 2364, 2121, 1867, 1635, 1436, 1273, 1145, 1064, 1035, 1048, 1082, 1175, 1300, 1483, 1673, 1905, 2151, 2323, 2106, 1856, 1611, 1423, 1260, 1138, 1054, 1025, 1024, 1082, 1169, 1305, 1471, 1667, 1903, 2148, 2371, 2127, 1872, 1639, 1433, 1271, 1135, 1065, 1033, 1044, 1091, 1177, 1321, 1480, 1677, 1896, 2163, 2400, 2162, 1899, 1659, 1469, 1311, 1184, 1108, 1061, 1085, 1124, 1217, 1356, 1507, 1698, 1928, 2187, 2440, 2193, 1964, 1735, 1532, 1372, 1242, 1165, 1124, 1135, 1189, 1288, 1407, 1564, 1753, 1992, 2266, 2493, 2254, 2033, 1803, 1604, 1454, 1331, 1246, 1210, 1222, 1268, 1360, 1481, 1638, 1836, 2062, 2248, 2569, 2371, 2131, 1914, 1720, 1555, 1446, 1367, 1310, 1325, 1371, 1462, 1579, 1743, 1904, 2151, 2365, 2693, 2409, 2228, 2017, 1851, 1697, 1568, 1476, 1451, 1465, 1498, 1592, 1691, 1856, 2020, 2231, 2458, 2802, 2508, 2346, 2156, 1967, 1842, 1717, 1645, 1602, 1597, 1637, 1719, 1818, 1992, 2125, 2343, 2526, 3251, 2649, 2550, 2301, 2129, 1986, 1889, 1807, 1782, 1771, 1828, 1869, 2014, 2112, 2293, 2470, 2594]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2752, 2506, 2336, 2133, 1950, 1852, 1743, 1713, 1672, 1677, 1706, 1785, 1867, 1980, 2102, 2274, 2430, 2556, 2358, 2171, 2040, 1865, 1714, 1594, 1534, 1511, 1522, 1564, 1664, 1727, 1892, 2012, 2180, 2356, 2510, 2277, 2093, 1924, 1722, 1580, 1495, 1415, 1382, 1386, 1451, 1532, 1605, 1730, 1909, 2101, 2263, 2427, 2185, 1996, 1793, 1637, 1486, 1385, 1290, 1271, 1274, 1309, 1388, 1497, 1638, 1813, 2003, 2161, 2331, 2109, 1953, 1734, 1564, 1405, 1284, 1205, 1174, 1180, 1225, 1300, 1420, 1541, 1724, 1912, 2183, 2320, 2124, 1872, 1664, 1483, 1330, 1202, 1138, 1107, 1112, 1140, 1221, 1345, 1502, 1668, 1861, 2102, 2250, 2055, 1828, 1623, 1424, 1277, 1151, 1089, 1060, 1049, 1100, 1176, 1288, 1443, 1633, 1826, 2056, 2257, 2029, 1783, 1575, 1391, 1243, 1123, 1057, 1032, 1029, 1071, 1143, 1261, 1409, 1610, 1782, 2030, 2287, 2000, 1769, 1576, 1383, 1228, 1130, 1049, 1024, 1027, 1060, 1131, 1270, 1405, 1568, 1807, 2042, 2298, 2039, 1783, 1606, 1411, 1243, 1129, 1057, 1038, 1038, 1077, 1140, 1265, 1400, 1604, 1782, 2051, 2333, 2044, 1828, 1623, 1424, 1281, 1168, 1086, 1054, 1054, 1097, 1172, 1296, 1453, 1613, 1818, 2034, 2334, 2090, 1855, 1650, 1472, 1330, 1220, 1142, 1113, 1106, 1150, 1240, 1349, 1491, 1661, 1869, 2102, 2375, 2157, 1934, 1720, 1545, 1390, 1296, 1216, 1184, 1177, 1218, 1304, 1410, 1559, 1724, 1950, 2110, 2412, 2237, 2017, 1826, 1657, 1513, 1390, 1320, 1275, 1274, 1326, 1388, 1514, 1658, 1813, 2003, 2238, 2528, 2319, 2093, 1914, 1729, 1619, 1489, 1410, 1382, 1395, 1421, 1498, 1611, 1753, 1899, 2078, 2292, 2671, 2388, 2209, 2019, 1873, 1728, 1640, 1551, 1511, 1527, 1564, 1604, 1727, 1874, 2012, 2205, 2388, 3221, 2506, 2307, 2182, 2000, 1835, 1774, 1727, 1679, 1670, 1706, 1794, 1867, 2032, 2126, 2376, 2516]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4338, 3699, 3433, 2945, 2807, 2472, 2305, 2140, 2005, 1988, 2199, 2294, 2525, 2758, 3181, 3337, 3671, 4010, 3561, 3001, 2790, 2460, 2159, 1924, 1828, 1748, 1821, 1857, 2005, 2230, 2472, 2807, 3224, 3561, 3671, 3314, 2910, 2552, 2199, 1956, 1686, 1618, 1585, 1559, 1663, 1781, 1956, 2209, 2651, 3020, 3458, 3483, 3139, 2711, 2316, 1988, 1748, 1575, 1446, 1391, 1359, 1433, 1554, 1787, 2031, 2398, 2774, 3181, 3433, 2982, 2552, 2130, 1808, 1585, 1403, 1297, 1249, 1262, 1297, 1437, 1607, 1835, 2189, 2666, 3079, 3458, 2840, 2422, 2005, 1663, 1442, 1325, 1193, 1139, 1155, 1220, 1359, 1515, 1723, 2111, 2460, 3039, 3203, 2742, 2294, 1924, 1601, 1403, 1239, 1125, 1063, 1099, 1131, 1243, 1446, 1645, 1988, 2398, 2874, 3268, 2742, 2240, 1814, 1554, 1304, 1170, 1080, 1051, 1044, 1080, 1190, 1379, 1607, 1940, 2294, 2910, 3039, 2681, 2209, 1857, 1539, 1300, 1181, 1053, 1024, 1033, 1087, 1187, 1352, 1580, 1879, 2294, 2774, 3246, 2636, 2240, 1871, 1534, 1363, 1193, 1087, 1040, 1051, 1075, 1178, 1340, 1591, 1879, 2316, 2874, 3268, 2774, 2351, 1948, 1634, 1399, 1224, 1112, 1072, 1089, 1136, 1233, 1459, 1657, 1988, 2386, 2711, 3458, 2774, 2435, 2031, 1680, 1501, 1307, 1175, 1115, 1133, 1205, 1279, 1464, 1748, 2005, 2498, 2892, 3268, 2927, 2622, 2102, 1835, 1612, 1403, 1276, 1262, 1239, 1304, 1416, 1596, 1879, 2189, 2579, 2892, 3615, 3020, 2666, 2328, 1988, 1698, 1520, 1420, 1375, 1356, 1429, 1585, 1754, 1988, 2386, 2711, 3181, 3787, 3360, 2774, 2485, 2219, 1932, 1742, 1596, 1554, 1549, 1640, 1729, 1894, 2189, 2525, 2982, 3535, 3976, 3433, 3079, 2807, 2386, 2121, 1924, 1850, 1781, 1774, 1801, 2005, 2169, 2410, 2742, 3224, 3509, 5187, 3757, 3291, 2964, 2593, 2351, 2305, 2159, 2031, 2005, 2075, 2251, 2374, 2666, 3039, 3337, 3848]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3774, 3158, 2742, 2485, 2252, 2064, 1972, 1878, 1814, 1901, 1896, 1957, 2239, 2311, 2573, 2811, 3209, 3446, 2914, 2607, 2338, 2119, 1896, 1777, 1716, 1631, 1651, 1716, 1830, 1981, 2165, 2402, 2705, 3096, 3145, 2714, 2395, 2108, 1924, 1746, 1608, 1507, 1470, 1481, 1542, 1658, 1797, 1996, 2220, 2557, 2791, 3048, 2573, 2297, 2001, 1789, 1582, 1454, 1383, 1321, 1343, 1393, 1515, 1655, 1830, 2091, 2352, 2696, 2781, 2431, 2154, 1856, 1665, 1493, 1339, 1244, 1214, 1221, 1287, 1398, 1542, 1704, 1962, 2291, 2642, 2696, 2395, 2059, 1797, 1548, 1383, 1252, 1172, 1121, 1142, 1205, 1299, 1468, 1655, 1874, 2165, 2524, 2599, 2324, 1977, 1694, 1495, 1312, 1190, 1102, 1074, 1090, 1118, 1235, 1390, 1585, 1781, 2086, 2446, 2607, 2258, 1947, 1672, 1441, 1297, 1149, 1062, 1032, 1054, 1112, 1199, 1364, 1557, 1785, 2086, 2409, 2705, 2252, 1962, 1655, 1403, 1268, 1132, 1048, 1024, 1033, 1078, 1195, 1332, 1524, 1742, 2080, 2345, 2616, 2264, 1919, 1665, 1441, 1250, 1131, 1070, 1033, 1041, 1110, 1199, 1348, 1551, 1781, 2043, 2359, 2687, 2311, 1991, 1704, 1468, 1291, 1178, 1107, 1065, 1078, 1147, 1235, 1388, 1551, 1781, 2069, 2424, 2831, 2297, 2059, 1765, 1536, 1374, 1270, 1150, 1129, 1110, 1199, 1299, 1452, 1641, 1835, 2125, 2485, 2781, 2461, 2160, 1856, 1627, 1431, 1332, 1262, 1217, 1214, 1287, 1386, 1524, 1731, 1919, 2264, 2548, 2893, 2573, 2264, 2001, 1777, 1595, 1449, 1367, 1323, 1369, 1393, 1493, 1617, 1805, 2037, 2311, 2733, 3096, 2696, 2431, 2102, 1887, 1716, 1569, 1504, 1468, 1473, 1554, 1621, 1797, 1986, 2220, 2477, 2851, 3431, 2893, 2590, 2291, 2102, 1896, 1738, 1658, 1614, 1624, 1679, 1781, 1928, 2154, 2366, 2687, 3084, 4194, 3025, 2831, 2508, 2271, 2059, 1938, 1892, 1814, 1826, 1865, 2022, 2160, 2284, 2524, 2893, 3209]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3928, 3072, 2770, 2498, 2275, 2061, 1974, 1884, 1840, 1758, 1907, 1989, 2205, 2315, 2589, 2840, 3108, 3331, 2924, 2580, 2315, 2067, 1916, 1754, 1683, 1652, 1641, 1683, 1786, 1884, 2140, 2322, 2614, 2991, 3084, 2704, 2437, 2140, 1849, 1743, 1605, 1530, 1446, 1495, 1515, 1611, 1778, 1940, 2157, 2491, 2800, 2946, 2589, 2315, 1999, 1778, 1576, 1473, 1375, 1320, 1325, 1366, 1462, 1601, 1807, 2045, 2295, 2597, 2830, 2483, 2163, 1871, 1631, 1473, 1338, 1253, 1211, 1224, 1245, 1364, 1515, 1680, 1889, 2224, 2580, 2820, 2429, 2072, 1766, 1566, 1383, 1228, 1158, 1126, 1125, 1187, 1273, 1415, 1595, 1807, 2151, 2506, 2722, 2309, 1994, 1698, 1457, 1294, 1202, 1100, 1048, 1079, 1103, 1207, 1375, 1527, 1790, 2040, 2302, 2713, 2256, 1940, 1648, 1446, 1278, 1143, 1055, 1036, 1050, 1089, 1168, 1331, 1492, 1743, 2019, 2429, 2640, 2295, 1945, 1666, 1428, 1255, 1117, 1037, 1024, 1028, 1053, 1168, 1282, 1490, 1698, 2035, 2336, 2563, 2243, 1964, 1687, 1433, 1259, 1133, 1054, 1031, 1037, 1089, 1168, 1305, 1465, 1705, 1994, 2385, 2722, 2275, 1984, 1705, 1487, 1307, 1184, 1097, 1051, 1077, 1120, 1218, 1354, 1554, 1751, 2056, 2392, 2685, 2343, 2089, 1774, 1566, 1390, 1247, 1153, 1126, 1121, 1185, 1273, 1405, 1589, 1794, 2117, 2506, 2892, 2483, 2169, 1884, 1662, 1490, 1359, 1253, 1211, 1222, 1280, 1354, 1507, 1676, 1959, 2230, 2614, 2892, 2589, 2295, 1999, 1747, 1589, 1454, 1390, 1320, 1329, 1402, 1467, 1618, 1794, 2019, 2329, 2741, 3096, 2704, 2422, 2175, 1898, 1705, 1598, 1515, 1490, 1478, 1521, 1615, 1731, 1902, 2175, 2475, 2850, 3374, 2924, 2597, 2309, 2111, 1907, 1786, 1676, 1635, 1645, 1687, 1774, 1926, 2122, 2407, 2623, 3072, 4245, 3236, 2770, 2572, 2378, 2181, 1974, 1912, 1840, 1858, 1964, 1999, 2094, 2371, 2589, 2850, 3433]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3577, 3016, 2782, 2479, 2177, 2011, 1904, 1788, 1795, 1855, 1788, 1848, 2069, 2206, 2443, 2664, 2861, 3294, 2845, 2568, 2256, 2036, 1828, 1703, 1653, 1590, 1590, 1626, 1776, 1919, 2069, 2276, 2504, 2797, 2928, 2595, 2362, 2069, 1834, 1675, 1570, 1477, 1427, 1435, 1504, 1570, 1745, 1904, 2104, 2351, 2692, 2861, 2504, 2177, 1964, 1715, 1527, 1399, 1357, 1311, 1346, 1364, 1473, 1590, 1763, 1941, 2206, 2491, 2736, 2396, 2069, 1862, 1605, 1443, 1314, 1249, 1192, 1239, 1265, 1339, 1490, 1647, 1855, 2158, 2467, 2678, 2362, 1971, 1763, 1555, 1376, 1236, 1146, 1138, 1141, 1195, 1258, 1376, 1626, 1763, 2069, 2351, 2491, 2216, 1995, 1721, 1477, 1301, 1167, 1115, 1079, 1077, 1120, 1215, 1387, 1490, 1715, 1964, 2297, 2555, 2245, 1926, 1669, 1443, 1265, 1135, 1059, 1043, 1045, 1084, 1173, 1318, 1486, 1697, 1964, 2318, 2595, 2256, 1875, 1626, 1423, 1252, 1141, 1086, 1024, 1045, 1075, 1162, 1307, 1477, 1721, 1926, 2308, 2635, 2245, 1987, 1636, 1435, 1277, 1143, 1079, 1043, 1054, 1096, 1195, 1307, 1473, 1697, 1948, 2225, 2649, 2245, 1964, 1697, 1477, 1314, 1189, 1103, 1072, 1070, 1110, 1189, 1332, 1536, 1745, 2019, 2340, 2782, 2318, 2011, 1727, 1546, 1357, 1255, 1165, 1138, 1118, 1159, 1258, 1383, 1575, 1751, 2011, 2431, 2766, 2396, 2122, 1828, 1631, 1427, 1332, 1239, 1204, 1204, 1258, 1335, 1486, 1658, 1883, 2113, 2467, 2894, 2516, 2225, 1971, 1751, 1546, 1414, 1332, 1314, 1301, 1368, 1460, 1555, 1782, 1948, 2216, 2504, 2981, 2581, 2362, 2052, 1868, 1686, 1580, 1477, 1435, 1473, 1513, 1605, 1692, 1897, 2131, 2340, 2813, 3407, 2894, 2555, 2225, 2011, 1848, 1709, 1626, 1610, 1590, 1653, 1680, 1855, 2019, 2287, 2595, 2911, 4104, 2945, 2649, 2396, 2235, 1987, 1948, 1769, 1788, 1776, 1769, 1868, 2036, 2287, 2568, 2845, 2928]
                                       }
                                   }, {
                                       "name":    "3264x2448_D65_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3344, 3021, 2911, 2589, 2523, 2270, 2146, 2011, 1895, 1877, 2053, 2117, 2286, 2437, 2714, 2751, 2877, 3197, 2979, 2620, 2505, 2266, 2029, 1835, 1756, 1685, 1749, 1774, 1893, 2067, 2239, 2464, 2719, 2870, 3006, 2836, 2586, 2338, 2066, 1870, 1635, 1578, 1549, 1523, 1614, 1711, 1850, 2043, 2372, 2603, 2847, 2909, 2735, 2451, 2159, 1897, 1695, 1543, 1426, 1374, 1343, 1409, 1515, 1715, 1908, 2186, 2439, 2677, 2905, 2636, 2339, 2012, 1746, 1553, 1387, 1288, 1242, 1254, 1286, 1413, 1561, 1749, 2027, 2376, 2628, 2951, 2539, 2244, 1912, 1620, 1423, 1316, 1190, 1137, 1152, 1214, 1344, 1482, 1657, 1972, 2222, 2619, 2767, 2472, 2143, 1846, 1567, 1389, 1235, 1124, 1063, 1098, 1129, 1235, 1421, 1592, 1873, 2182, 2504, 2829, 2480, 2101, 1750, 1526, 1295, 1168, 1080, 1051, 1044, 1079, 1185, 1360, 1560, 1835, 2100, 2541, 2648, 2431, 2076, 1791, 1513, 1292, 1179, 1053, 1024, 1033, 1086, 1182, 1335, 1536, 1783, 2102, 2435, 2812, 2390, 2101, 1802, 1507, 1353, 1190, 1087, 1040, 1051, 1074, 1173, 1323, 1545, 1781, 2119, 2512, 2819, 2499, 2193, 1868, 1598, 1385, 1220, 1111, 1072, 1088, 1134, 1225, 1434, 1602, 1873, 2172, 2373, 2951, 2484, 2255, 1936, 1636, 1479, 1299, 1172, 1114, 1131, 1200, 1267, 1434, 1679, 1880, 2254, 2503, 2776, 2591, 2400, 1987, 1771, 1578, 1387, 1268, 1255, 1232, 1292, 1393, 1551, 1788, 2027, 2304, 2482, 3010, 2638, 2413, 2169, 1897, 1649, 1491, 1401, 1359, 1340, 1406, 1544, 1685, 1871, 2176, 2388, 2677, 3093, 2872, 2473, 2281, 2084, 1848, 1687, 1557, 1520, 1513, 1593, 1664, 1795, 2026, 2267, 2573, 2904, 3172, 2880, 2683, 2520, 2202, 1996, 1835, 1776, 1715, 1706, 1724, 1893, 2014, 2187, 2411, 2719, 2832, 3938, 3065, 2800, 2604, 2343, 2166, 2146, 2028, 1918, 1892, 1944, 2080, 2159, 2362, 2603, 2751, 3001]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2949, 2617, 2370, 2214, 2056, 1919, 1854, 1779, 1725, 1800, 1787, 1827, 2045, 2072, 2238, 2358, 2554, 2786, 2480, 2302, 2126, 1971, 1796, 1702, 1654, 1578, 1594, 1647, 1738, 1852, 1981, 2137, 2319, 2532, 2612, 2361, 2159, 1956, 1822, 1679, 1563, 1474, 1441, 1450, 1502, 1600, 1709, 1860, 2015, 2237, 2347, 2575, 2277, 2101, 1882, 1717, 1541, 1429, 1366, 1308, 1328, 1372, 1479, 1595, 1732, 1927, 2098, 2305, 2396, 2182, 1997, 1767, 1614, 1466, 1326, 1237, 1208, 1215, 1276, 1376, 1501, 1632, 1831, 2067, 2287, 2348, 2168, 1927, 1724, 1513, 1367, 1245, 1169, 1119, 1140, 1200, 1287, 1438, 1595, 1766, 1976, 2212, 2284, 2119, 1863, 1636, 1468, 1302, 1187, 1101, 1074, 1089, 1116, 1227, 1369, 1537, 1691, 1919, 2161, 2298, 2070, 1842, 1620, 1419, 1289, 1147, 1062, 1032, 1054, 1111, 1194, 1346, 1514, 1698, 1924, 2138, 2379, 2067, 1856, 1605, 1384, 1261, 1131, 1048, 1024, 1033, 1077, 1190, 1316, 1484, 1661, 1921, 2089, 2305, 2075, 1817, 1613, 1419, 1243, 1129, 1070, 1033, 1041, 1109, 1194, 1331, 1508, 1695, 1888, 2098, 2354, 2108, 1876, 1645, 1442, 1281, 1175, 1106, 1065, 1077, 1145, 1227, 1367, 1506, 1691, 1905, 2144, 2455, 2086, 1927, 1695, 1502, 1358, 1263, 1148, 1127, 1108, 1194, 1287, 1423, 1583, 1732, 1943, 2181, 2396, 2207, 2002, 1767, 1579, 1408, 1319, 1254, 1211, 1208, 1276, 1365, 1484, 1656, 1794, 2045, 2214, 2456, 2277, 2073, 1882, 1706, 1553, 1424, 1350, 1309, 1352, 1372, 1459, 1561, 1710, 1881, 2065, 2334, 2576, 2347, 2189, 1951, 1789, 1652, 1527, 1472, 1439, 1443, 1513, 1566, 1709, 1851, 2015, 2174, 2392, 2776, 2464, 2288, 2087, 1957, 1796, 1667, 1601, 1563, 1570, 1614, 1695, 1806, 1972, 2107, 2306, 2523, 3243, 2518, 2440, 2233, 2072, 1915, 1824, 1792, 1725, 1733, 1760, 1883, 1979, 2050, 2199, 2420, 2554]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3057, 2553, 2392, 2225, 2075, 1917, 1856, 1785, 1748, 1673, 1797, 1855, 2017, 2076, 2250, 2380, 2483, 2703, 2488, 2280, 2107, 1926, 1814, 1682, 1624, 1597, 1585, 1618, 1699, 1768, 1960, 2072, 2249, 2455, 2567, 2353, 2194, 1984, 1756, 1677, 1560, 1496, 1419, 1463, 1477, 1557, 1693, 1812, 1962, 2185, 2354, 2497, 2290, 2116, 1880, 1707, 1536, 1447, 1358, 1307, 1310, 1346, 1430, 1546, 1712, 1888, 2052, 2230, 2434, 2225, 2004, 1781, 1583, 1447, 1325, 1246, 1206, 1218, 1236, 1344, 1476, 1610, 1769, 2012, 2239, 2446, 2196, 1938, 1696, 1530, 1367, 1222, 1155, 1124, 1123, 1182, 1262, 1389, 1541, 1707, 1964, 2197, 2382, 2107, 1878, 1640, 1432, 1284, 1198, 1099, 1048, 1078, 1101, 1200, 1355, 1484, 1699, 1880, 2046, 2383, 2068, 1835, 1597, 1424, 1270, 1141, 1055, 1036, 1050, 1088, 1164, 1315, 1454, 1661, 1867, 2154, 2327, 2103, 1841, 1615, 1407, 1248, 1116, 1037, 1024, 1028, 1053, 1164, 1269, 1453, 1622, 1882, 2082, 2262, 2057, 1857, 1633, 1411, 1252, 1131, 1054, 1031, 1037, 1088, 1164, 1290, 1429, 1627, 1846, 2119, 2382, 2078, 1870, 1646, 1460, 1297, 1181, 1096, 1051, 1076, 1118, 1211, 1335, 1508, 1664, 1894, 2118, 2339, 2125, 1953, 1703, 1530, 1373, 1240, 1150, 1124, 1119, 1180, 1262, 1379, 1536, 1696, 1936, 2197, 2482, 2225, 2010, 1792, 1611, 1463, 1345, 1246, 1206, 1216, 1269, 1335, 1469, 1607, 1829, 2017, 2265, 2456, 2290, 2099, 1880, 1679, 1548, 1429, 1372, 1307, 1314, 1380, 1435, 1562, 1700, 1866, 2079, 2340, 2576, 2353, 2182, 2014, 1799, 1642, 1554, 1482, 1460, 1447, 1483, 1560, 1651, 1779, 1977, 2172, 2391, 2734, 2488, 2294, 2102, 1964, 1806, 1710, 1617, 1582, 1589, 1621, 1688, 1804, 1945, 2141, 2256, 2514, 3279, 2676, 2392, 2285, 2162, 2020, 1856, 1809, 1748, 1762, 1847, 1863, 1923, 2121, 2250, 2388, 2710]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2811, 2511, 2401, 2209, 1993, 1874, 1794, 1700, 1708, 1759, 1693, 1733, 1902, 1987, 2136, 2249, 2310, 2676, 2427, 2271, 2057, 1899, 1736, 1636, 1596, 1541, 1539, 1566, 1690, 1798, 1901, 2035, 2165, 2314, 2450, 2267, 2132, 1923, 1742, 1615, 1528, 1446, 1401, 1407, 1467, 1520, 1663, 1781, 1918, 2074, 2273, 2432, 2221, 2000, 1850, 1650, 1490, 1377, 1341, 1298, 1330, 1344, 1440, 1536, 1673, 1800, 1980, 2148, 2361, 2153, 1924, 1773, 1559, 1419, 1302, 1242, 1187, 1232, 1255, 1321, 1453, 1581, 1739, 1958, 2151, 2334, 2141, 1850, 1693, 1519, 1360, 1230, 1144, 1136, 1139, 1190, 1247, 1352, 1569, 1669, 1896, 2075, 2197, 2028, 1879, 1661, 1451, 1291, 1164, 1114, 1079, 1076, 1118, 1208, 1366, 1450, 1633, 1816, 2042, 2256, 2059, 1823, 1617, 1421, 1258, 1133, 1059, 1043, 1045, 1083, 1168, 1302, 1449, 1620, 1821, 2065, 2290, 2070, 1779, 1578, 1403, 1245, 1139, 1086, 1024, 1045, 1074, 1158, 1292, 1441, 1643, 1790, 2059, 2320, 2059, 1877, 1586, 1413, 1269, 1141, 1079, 1043, 1054, 1095, 1190, 1292, 1437, 1620, 1807, 1990, 2324, 2053, 1852, 1639, 1451, 1303, 1186, 1102, 1072, 1070, 1108, 1183, 1314, 1492, 1659, 1862, 2076, 2416, 2104, 1885, 1660, 1511, 1342, 1248, 1162, 1136, 1116, 1155, 1247, 1359, 1523, 1658, 1848, 2138, 2384, 2153, 1969, 1742, 1583, 1404, 1319, 1232, 1199, 1198, 1248, 1317, 1449, 1590, 1763, 1920, 2151, 2457, 2231, 2040, 1856, 1682, 1508, 1391, 1317, 1301, 1288, 1348, 1428, 1505, 1690, 1806, 1988, 2158, 2490, 2256, 2132, 1908, 1772, 1625, 1537, 1446, 1408, 1443, 1475, 1551, 1616, 1775, 1941, 2065, 2364, 2758, 2465, 2260, 2031, 1878, 1754, 1641, 1572, 1559, 1539, 1591, 1605, 1743, 1859, 2044, 2235, 2397, 3180, 2458, 2297, 2142, 2042, 1853, 1833, 1683, 1702, 1689, 1676, 1751, 1875, 2053, 2234, 2384, 2357]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [4349, 3743, 3408, 3107, 2802, 2551, 2318, 2175, 2066, 2105, 2175, 2318, 2551, 2890, 3194, 3540, 3713, 4006, 3540, 3262, 2854, 2496, 2239, 2021, 1903, 1857, 1864, 1935, 2066, 2284, 2595, 2909, 3310, 3713, 3806, 3434, 2966, 2625, 2272, 1986, 1777, 1655, 1591, 1620, 1679, 1849, 2030, 2342, 2702, 3086, 3540, 3774, 3216, 2785, 2404, 2057, 1777, 1586, 1459, 1427, 1414, 1488, 1625, 1812, 2144, 2455, 2928, 3358, 3486, 3065, 2625, 2206, 1903, 1620, 1441, 1320, 1258, 1276, 1355, 1473, 1655, 1935, 2272, 2735, 3216, 3383, 2909, 2482, 2076, 1750, 1502, 1320, 1221, 1159, 1165, 1218, 1339, 1538, 1805, 2175, 2566, 2966, 3262, 2872, 2379, 2003, 1667, 1418, 1244, 1133, 1087, 1087, 1148, 1255, 1441, 1692, 2048, 2442, 3025, 3310, 2785, 2307, 1943, 1631, 1371, 1183, 1090, 1057, 1050, 1114, 1215, 1405, 1643, 1986, 2416, 2909, 3194, 2768, 2307, 1927, 1586, 1343, 1189, 1077, 1031, 1024, 1082, 1192, 1376, 1625, 1952, 2366, 2837, 3239, 2785, 2330, 1935, 1591, 1359, 1196, 1098, 1045, 1045, 1103, 1211, 1371, 1625, 1977, 2379, 2890, 3216, 2837, 2354, 1960, 1667, 1414, 1238, 1130, 1082, 1095, 1142, 1258, 1436, 1698, 2030, 2429, 2890, 3358, 2909, 2482, 2057, 1723, 1488, 1328, 1202, 1159, 1162, 1218, 1316, 1522, 1805, 2124, 2537, 2985, 3460, 3025, 2625, 2217, 1842, 1608, 1423, 1316, 1258, 1265, 1320, 1459, 1637, 1903, 2239, 2702, 3045, 3625, 3150, 2751, 2416, 2039, 1757, 1569, 1459, 1388, 1410, 1478, 1597, 1798, 2066, 2416, 2819, 3310, 3806, 3334, 2966, 2580, 2272, 1977, 1763, 1649, 1580, 1591, 1679, 1798, 2012, 2295, 2610, 3025, 3434, 4042, 3540, 3194, 2802, 2509, 2239, 2021, 1872, 1834, 1820, 1903, 2012, 2250, 2523, 2872, 3262, 3625, 4567, 3743, 3334, 3107, 2785, 2482, 2295, 2165, 2095, 2085, 2196, 2307, 2496, 2802, 3045, 3408, 3870]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3808, 3100, 2806, 2507, 2311, 2121, 2014, 1886, 1856, 1860, 1909, 2020, 2179, 2387, 2597, 2887, 3076, 3360, 2908, 2622, 2338, 2110, 1918, 1765, 1687, 1652, 1656, 1716, 1830, 1994, 2185, 2438, 2693, 3088, 3112, 2729, 2416, 2150, 1913, 1716, 1590, 1515, 1489, 1489, 1550, 1659, 1809, 2020, 2246, 2547, 2908, 2995, 2588, 2285, 2014, 1773, 1581, 1459, 1374, 1340, 1353, 1408, 1526, 1680, 1856, 2099, 2394, 2806, 2856, 2507, 2156, 1904, 1649, 1473, 1342, 1255, 1214, 1221, 1296, 1403, 1547, 1746, 1999, 2285, 2702, 2796, 2380, 2083, 1793, 1562, 1384, 1250, 1174, 1128, 1138, 1206, 1315, 1467, 1680, 1900, 2191, 2555, 2702, 2325, 2004, 1731, 1495, 1318, 1185, 1100, 1075, 1088, 1142, 1254, 1406, 1593, 1834, 2144, 2476, 2639, 2305, 1975, 1691, 1454, 1273, 1147, 1065, 1044, 1050, 1108, 1206, 1362, 1568, 1809, 2110, 2431, 2622, 2285, 1946, 1663, 1441, 1257, 1133, 1048, 1024, 1032, 1093, 1197, 1351, 1544, 1789, 2072, 2438, 2648, 2291, 1970, 1694, 1454, 1273, 1139, 1061, 1037, 1047, 1106, 1204, 1358, 1547, 1801, 2067, 2438, 2693, 2345, 1999, 1716, 1492, 1300, 1176, 1099, 1066, 1087, 1139, 1240, 1391, 1584, 1822, 2105, 2515, 2758, 2394, 2061, 1793, 1550, 1369, 1238, 1161, 1136, 1146, 1201, 1302, 1467, 1632, 1886, 2191, 2539, 2898, 2461, 2173, 1891, 1642, 1467, 1333, 1244, 1214, 1221, 1282, 1406, 1538, 1739, 1984, 2272, 2622, 2940, 2588, 2285, 2004, 1750, 1577, 1436, 1360, 1318, 1340, 1406, 1500, 1659, 1847, 2094, 2394, 2758, 3124, 2748, 2423, 2150, 1900, 1735, 1587, 1512, 1465, 1476, 1538, 1646, 1789, 1989, 2221, 2523, 2908, 3462, 2908, 2605, 2345, 2083, 1918, 1754, 1670, 1629, 1639, 1687, 1805, 1960, 2179, 2402, 2693, 3064, 4122, 3124, 2786, 2555, 2285, 2105, 1913, 1877, 1801, 1834, 1918, 1999, 2156, 2318, 2605, 2919, 3264]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3808, 3136, 2796, 2539, 2325, 2156, 2009, 1900, 1843, 1826, 1904, 1994, 2150, 2352, 2580, 2877, 3161, 3291, 2929, 2614, 2345, 2105, 1927, 1789, 1713, 1646, 1659, 1694, 1809, 1951, 2150, 2359, 2666, 2973, 3088, 2758, 2431, 2150, 1913, 1742, 1609, 1526, 1492, 1498, 1541, 1635, 1773, 1960, 2209, 2491, 2836, 2908, 2605, 2272, 2025, 1781, 1593, 1470, 1381, 1331, 1346, 1401, 1498, 1649, 1813, 2056, 2338, 2675, 2908, 2484, 2173, 1886, 1659, 1473, 1342, 1267, 1225, 1219, 1265, 1365, 1526, 1698, 1941, 2253, 2571, 2786, 2402, 2072, 1793, 1571, 1388, 1244, 1171, 1133, 1134, 1192, 1278, 1426, 1609, 1860, 2156, 2491, 2675, 2332, 2009, 1727, 1503, 1315, 1185, 1102, 1068, 1078, 1117, 1228, 1353, 1553, 1781, 2083, 2416, 2657, 2291, 1970, 1687, 1465, 1269, 1144, 1066, 1033, 1048, 1085, 1169, 1313, 1506, 1754, 2045, 2380, 2622, 2259, 1951, 1656, 1436, 1254, 1133, 1052, 1024, 1025, 1072, 1169, 1311, 1481, 1731, 2040, 2402, 2675, 2298, 1960, 1684, 1444, 1275, 1149, 1069, 1035, 1041, 1085, 1181, 1333, 1500, 1750, 2051, 2338, 2684, 2318, 2025, 1724, 1495, 1320, 1190, 1109, 1063, 1073, 1125, 1208, 1369, 1544, 1777, 2094, 2453, 2758, 2394, 2077, 1797, 1556, 1379, 1254, 1169, 1130, 1131, 1183, 1286, 1426, 1599, 1834, 2167, 2484, 2887, 2499, 2167, 1860, 1656, 1489, 1346, 1257, 1230, 1238, 1275, 1367, 1520, 1680, 1951, 2228, 2588, 3018, 2614, 2285, 2014, 1785, 1599, 1465, 1381, 1326, 1342, 1388, 1509, 1642, 1822, 2061, 2352, 2720, 3136, 2767, 2446, 2191, 1932, 1765, 1616, 1541, 1476, 1495, 1538, 1635, 1781, 1960, 2221, 2507, 2877, 3389, 2951, 2657, 2345, 2121, 1922, 1781, 1684, 1652, 1649, 1702, 1805, 1946, 2138, 2402, 2675, 3007, 4165, 3174, 2908, 2571, 2338, 2138, 2014, 1900, 1882, 1860, 1927, 2014, 2150, 2325, 2571, 2929, 3225]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3511, 2968, 2648, 2448, 2194, 2021, 1879, 1840, 1766, 1797, 1834, 1926, 2034, 2202, 2409, 2707, 2997, 3200, 2793, 2467, 2218, 1988, 1823, 1697, 1630, 1596, 1613, 1656, 1741, 1868, 2034, 2259, 2508, 2806, 2968, 2603, 2301, 2055, 1834, 1670, 1563, 1480, 1432, 1432, 1491, 1575, 1721, 1885, 2133, 2381, 2731, 2831, 2467, 2179, 1914, 1693, 1548, 1419, 1344, 1310, 1318, 1365, 1463, 1588, 1755, 1982, 2242, 2560, 2731, 2400, 2083, 1823, 1604, 1449, 1321, 1234, 1198, 1200, 1262, 1347, 1506, 1647, 1862, 2156, 2438, 2660, 2301, 2014, 1711, 1528, 1347, 1241, 1157, 1119, 1123, 1170, 1267, 1412, 1575, 1802, 2055, 2419, 2571, 2251, 1963, 1683, 1473, 1293, 1175, 1095, 1067, 1072, 1117, 1205, 1342, 1521, 1736, 2014, 2327, 2508, 2218, 1908, 1647, 1439, 1272, 1134, 1061, 1031, 1038, 1084, 1170, 1316, 1491, 1693, 1951, 2226, 2549, 2202, 1885, 1617, 1406, 1239, 1125, 1052, 1024, 1027, 1070, 1157, 1304, 1463, 1693, 1951, 2251, 2508, 2202, 1890, 1652, 1426, 1254, 1131, 1067, 1036, 1047, 1086, 1168, 1307, 1484, 1693, 1944, 2310, 2549, 2234, 1932, 1688, 1463, 1285, 1170, 1093, 1061, 1076, 1107, 1200, 1342, 1517, 1755, 1995, 2336, 2637, 2284, 2008, 1711, 1521, 1342, 1219, 1142, 1117, 1127, 1173, 1262, 1396, 1571, 1786, 2048, 2372, 2707, 2372, 2097, 1812, 1592, 1429, 1310, 1236, 1188, 1191, 1246, 1344, 1463, 1652, 1868, 2133, 2428, 2818, 2487, 2179, 1914, 1702, 1528, 1416, 1336, 1302, 1304, 1344, 1446, 1567, 1745, 1988, 2242, 2571, 2968, 2626, 2319, 2055, 1845, 1670, 1559, 1473, 1446, 1429, 1477, 1579, 1711, 1890, 2111, 2391, 2683, 3268, 2780, 2467, 2226, 2001, 1834, 1697, 1630, 1563, 1588, 1621, 1741, 1868, 2055, 2242, 2549, 2831, 3964, 2954, 2695, 2391, 2210, 2008, 1896, 1802, 1771, 1776, 1812, 1896, 2048, 2234, 2477, 2755, 3072]
                                       }
                                   }, {
                                       "name":    "3264x2448_D75_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3352, 3054, 2892, 2721, 2518, 2338, 2157, 2042, 1949, 1980, 2032, 2138, 2307, 2544, 2724, 2903, 2906, 3194, 2963, 2831, 2559, 2297, 2100, 1922, 1824, 1784, 1788, 1845, 1947, 2114, 2342, 2546, 2786, 2981, 3107, 2931, 2632, 2401, 2131, 1897, 1719, 1612, 1554, 1580, 1629, 1773, 1916, 2158, 2414, 2656, 2908, 3132, 2797, 2514, 2236, 1959, 1722, 1554, 1438, 1409, 1395, 1461, 1581, 1737, 2008, 2235, 2564, 2813, 2946, 2704, 2402, 2080, 1833, 1586, 1424, 1310, 1251, 1268, 1341, 1447, 1605, 1838, 2098, 2432, 2735, 2892, 2597, 2296, 1976, 1701, 1480, 1311, 1217, 1157, 1162, 1212, 1325, 1504, 1731, 2028, 2311, 2562, 2814, 2581, 2217, 1919, 1629, 1404, 1240, 1132, 1087, 1086, 1145, 1247, 1417, 1634, 1926, 2219, 2624, 2863, 2516, 2160, 1869, 1599, 1360, 1181, 1090, 1057, 1050, 1113, 1209, 1385, 1593, 1876, 2204, 2541, 2773, 2505, 2163, 1855, 1557, 1334, 1187, 1077, 1031, 1024, 1081, 1187, 1358, 1577, 1848, 2164, 2485, 2806, 2516, 2181, 1861, 1561, 1349, 1193, 1098, 1045, 1045, 1102, 1205, 1353, 1576, 1868, 2172, 2525, 2777, 2552, 2195, 1879, 1629, 1400, 1234, 1129, 1082, 1094, 1140, 1250, 1412, 1640, 1910, 2208, 2516, 2872, 2597, 2296, 1959, 1676, 1467, 1319, 1198, 1157, 1159, 1212, 1303, 1489, 1731, 1984, 2287, 2577, 2926, 2671, 2402, 2090, 1777, 1574, 1406, 1307, 1251, 1257, 1308, 1434, 1588, 1809, 2070, 2405, 2602, 3017, 2743, 2485, 2247, 1943, 1703, 1538, 1438, 1372, 1391, 1452, 1555, 1725, 1939, 2202, 2476, 2776, 3107, 2852, 2632, 2362, 2131, 1889, 1706, 1607, 1544, 1553, 1629, 1727, 1900, 2117, 2338, 2607, 2829, 3220, 2963, 2776, 2515, 2309, 2100, 1922, 1796, 1763, 1748, 1816, 1899, 2085, 2281, 2516, 2749, 2917, 3504, 3054, 2834, 2721, 2504, 2279, 2137, 2033, 1974, 1962, 2050, 2128, 2261, 2472, 2607, 2804, 3016]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2973, 2574, 2420, 2232, 2106, 1968, 1891, 1786, 1762, 1763, 1799, 1881, 1995, 2134, 2256, 2415, 2460, 2724, 2476, 2314, 2126, 1963, 1816, 1691, 1627, 1597, 1599, 1647, 1738, 1863, 1998, 2166, 2310, 2526, 2588, 2373, 2177, 1992, 1812, 1652, 1546, 1482, 1459, 1458, 1510, 1600, 1720, 1881, 2036, 2229, 2435, 2535, 2289, 2091, 1894, 1702, 1540, 1434, 1357, 1326, 1337, 1386, 1489, 1618, 1755, 1934, 2132, 2390, 2454, 2245, 1998, 1810, 1599, 1447, 1329, 1248, 1208, 1215, 1285, 1381, 1506, 1669, 1863, 2062, 2334, 2427, 2156, 1948, 1720, 1526, 1368, 1243, 1171, 1126, 1136, 1201, 1302, 1437, 1618, 1788, 1998, 2236, 2366, 2120, 1887, 1670, 1468, 1307, 1182, 1099, 1075, 1087, 1140, 1246, 1384, 1544, 1737, 1968, 2185, 2323, 2110, 1866, 1637, 1431, 1265, 1145, 1065, 1044, 1050, 1107, 1200, 1344, 1524, 1719, 1944, 2156, 2312, 2095, 1842, 1612, 1420, 1250, 1132, 1048, 1024, 1032, 1092, 1192, 1334, 1503, 1703, 1914, 2164, 2331, 2098, 1862, 1640, 1431, 1265, 1137, 1061, 1037, 1047, 1105, 1198, 1340, 1505, 1712, 1908, 2162, 2359, 2137, 1883, 1656, 1465, 1290, 1173, 1098, 1066, 1086, 1137, 1232, 1370, 1536, 1727, 1935, 2216, 2397, 2167, 1929, 1720, 1515, 1353, 1232, 1158, 1134, 1144, 1196, 1289, 1437, 1574, 1776, 1998, 2224, 2487, 2207, 2013, 1799, 1593, 1441, 1320, 1237, 1208, 1215, 1271, 1384, 1497, 1663, 1850, 2051, 2272, 2492, 2289, 2091, 1885, 1681, 1536, 1412, 1344, 1305, 1325, 1384, 1465, 1599, 1747, 1929, 2132, 2353, 2597, 2388, 2183, 1992, 1801, 1669, 1544, 1479, 1437, 1445, 1498, 1589, 1702, 1854, 2015, 2210, 2435, 2798, 2476, 2300, 2132, 1940, 1816, 1682, 1612, 1576, 1584, 1621, 1716, 1834, 1993, 2137, 2310, 2508, 3193, 2592, 2405, 2271, 2084, 1955, 1802, 1778, 1714, 1740, 1807, 1863, 1975, 2078, 2263, 2439, 2592]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2973, 2601, 2412, 2258, 2117, 1998, 1886, 1799, 1751, 1733, 1794, 1859, 1970, 2106, 2243, 2408, 2520, 2674, 2492, 2308, 2132, 1959, 1824, 1713, 1651, 1592, 1602, 1628, 1719, 1826, 1969, 2102, 2289, 2442, 2570, 2396, 2189, 1992, 1812, 1676, 1564, 1492, 1462, 1466, 1501, 1579, 1688, 1829, 2005, 2185, 2381, 2468, 2303, 2080, 1903, 1709, 1551, 1444, 1364, 1317, 1330, 1379, 1463, 1590, 1717, 1897, 2087, 2289, 2495, 2226, 2013, 1794, 1609, 1447, 1329, 1259, 1219, 1213, 1255, 1345, 1486, 1626, 1813, 2036, 2232, 2419, 2174, 1938, 1720, 1534, 1372, 1238, 1168, 1131, 1132, 1187, 1267, 1399, 1554, 1753, 1969, 2186, 2344, 2126, 1892, 1666, 1475, 1304, 1182, 1101, 1068, 1077, 1115, 1221, 1334, 1507, 1691, 1916, 2137, 2338, 2098, 1862, 1633, 1442, 1261, 1142, 1066, 1033, 1048, 1084, 1165, 1298, 1467, 1671, 1889, 2115, 2312, 2073, 1847, 1606, 1415, 1247, 1132, 1052, 1024, 1025, 1071, 1165, 1296, 1445, 1651, 1887, 2135, 2352, 2104, 1853, 1631, 1422, 1267, 1147, 1069, 1035, 1041, 1084, 1176, 1317, 1461, 1667, 1894, 2081, 2352, 2114, 1906, 1664, 1468, 1309, 1187, 1108, 1063, 1072, 1123, 1201, 1349, 1499, 1687, 1926, 2167, 2397, 2167, 1943, 1724, 1520, 1363, 1247, 1166, 1128, 1129, 1178, 1274, 1399, 1545, 1731, 1978, 2180, 2478, 2238, 2008, 1771, 1606, 1462, 1333, 1249, 1224, 1231, 1264, 1347, 1481, 1610, 1822, 2015, 2245, 2552, 2310, 2091, 1894, 1713, 1557, 1440, 1364, 1312, 1327, 1367, 1473, 1583, 1725, 1901, 2098, 2324, 2606, 2403, 2202, 2028, 1829, 1697, 1570, 1506, 1447, 1463, 1498, 1579, 1695, 1829, 2015, 2197, 2412, 2745, 2509, 2342, 2132, 1973, 1819, 1706, 1625, 1597, 1593, 1635, 1716, 1822, 1958, 2137, 2296, 2467, 3223, 2629, 2500, 2284, 2128, 1983, 1891, 1799, 1785, 1763, 1815, 1876, 1970, 2084, 2236, 2446, 2565]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2765, 2476, 2296, 2184, 2007, 1882, 1773, 1746, 1682, 1708, 1733, 1800, 1873, 1984, 2109, 2281, 2405, 2607, 2387, 2189, 2026, 1858, 1732, 1630, 1575, 1546, 1560, 1593, 1659, 1754, 1871, 2021, 2168, 2321, 2480, 2273, 2082, 1911, 1742, 1610, 1522, 1449, 1406, 1404, 1455, 1524, 1642, 1765, 1942, 2098, 2302, 2409, 2191, 2001, 1806, 1630, 1510, 1396, 1329, 1297, 1304, 1345, 1431, 1535, 1666, 1835, 2009, 2201, 2357, 2157, 1936, 1738, 1558, 1425, 1309, 1227, 1193, 1194, 1252, 1328, 1468, 1581, 1745, 1956, 2128, 2319, 2090, 1888, 1646, 1494, 1332, 1235, 1154, 1117, 1121, 1166, 1256, 1386, 1523, 1703, 1884, 2129, 2261, 2058, 1851, 1626, 1447, 1283, 1172, 1094, 1067, 1071, 1115, 1198, 1323, 1478, 1651, 1858, 2066, 2218, 2036, 1807, 1597, 1417, 1264, 1132, 1061, 1031, 1038, 1083, 1165, 1301, 1453, 1617, 1810, 1991, 2253, 2024, 1788, 1570, 1386, 1233, 1124, 1052, 1024, 1027, 1069, 1153, 1290, 1428, 1618, 1811, 2013, 2218, 2022, 1791, 1601, 1405, 1247, 1129, 1067, 1036, 1047, 1085, 1164, 1292, 1447, 1617, 1804, 2059, 2244, 2044, 1824, 1631, 1437, 1276, 1167, 1092, 1061, 1075, 1105, 1194, 1323, 1475, 1668, 1842, 2073, 2301, 2075, 1882, 1646, 1488, 1328, 1213, 1140, 1115, 1125, 1169, 1251, 1371, 1519, 1689, 1879, 2091, 2338, 2134, 1948, 1728, 1547, 1406, 1298, 1229, 1183, 1186, 1237, 1326, 1428, 1585, 1751, 1937, 2120, 2399, 2207, 2001, 1806, 1638, 1491, 1393, 1321, 1289, 1290, 1326, 1415, 1516, 1657, 1840, 2009, 2210, 2480, 2292, 2097, 1911, 1752, 1610, 1518, 1443, 1419, 1402, 1442, 1528, 1633, 1769, 1924, 2106, 2266, 2657, 2377, 2189, 2032, 1869, 1741, 1630, 1575, 1516, 1537, 1562, 1659, 1754, 1889, 2007, 2199, 2339, 3082, 2465, 2333, 2138, 2021, 1871, 1787, 1712, 1687, 1689, 1714, 1775, 1885, 2010, 2162, 2317, 2458]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_100",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [5267, 4634, 4202, 3755, 3365, 3060, 2816, 2633, 2534, 2583, 2685, 2866, 3180, 3526, 3881, 4337, 4634, 4856, 4337, 3918, 3466, 3038, 2677, 2414, 2240, 2174, 2174, 2291, 2473, 2806, 3168, 3573, 4035, 4456, 4743, 4096, 3637, 3131, 2668, 2297, 2038, 1886, 1806, 1839, 1964, 2163, 2450, 2856, 3324, 3844, 4246, 4481, 3937, 3337, 2826, 2399, 2043, 1786, 1635, 1563, 1566, 1669, 1869, 2163, 2567, 3015, 3557, 4117, 4269, 3703, 3143, 2625, 2163, 1798, 1566, 1413, 1347, 1359, 1456, 1648, 1926, 2297, 2787, 3351, 3899, 4076, 3557, 2993, 2421, 1968, 1635, 1401, 1259, 1207, 1220, 1317, 1475, 1740, 2101, 2616, 3168, 3687, 3995, 3393, 2826, 2285, 1843, 1516, 1283, 1147, 1089, 1100, 1201, 1375, 1622, 2003, 2465, 3015, 3620, 3995, 3351, 2731, 2210, 1782, 1438, 1221, 1094, 1037, 1049, 1136, 1289, 1560, 1890, 2385, 2971, 3526, 3956, 3270, 2703, 2186, 1729, 1413, 1205, 1057, 1024, 1029, 1114, 1275, 1513, 1869, 2337, 2928, 3541, 3899, 3337, 2740, 2204, 1767, 1433, 1220, 1090, 1036, 1046, 1131, 1291, 1548, 1890, 2378, 2917, 3496, 3918, 3408, 2806, 2285, 1818, 1488, 1275, 1144, 1093, 1099, 1189, 1359, 1619, 1940, 2436, 3004, 3541, 4096, 3511, 2897, 2385, 1950, 1619, 1389, 1248, 1179, 1203, 1308, 1467, 1726, 2107, 2542, 3107, 3653, 4224, 3670, 3107, 2558, 2096, 1786, 1551, 1410, 1334, 1361, 1446, 1622, 1873, 2272, 2731, 3283, 3862, 4432, 3790, 3283, 2777, 2365, 1993, 1748, 1590, 1539, 1554, 1642, 1823, 2112, 2473, 2949, 3436, 3976, 4456, 4055, 3541, 3084, 2599, 2278, 2012, 1852, 1786, 1818, 1908, 2085, 2358, 2749, 3206, 3670, 4096, 4799, 4291, 3808, 3379, 2971, 2616, 2337, 2151, 2090, 2101, 2228, 2414, 2694, 3026, 3481, 3976, 4432, 5480, 4481, 4181, 3670, 3310, 3004, 2685, 2567, 2465, 2473, 2583, 2768, 3072, 3379, 3808, 4291, 4688]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [4154, 3452, 3051, 2796, 2571, 2276, 2175, 2071, 2042, 2071, 2101, 2208, 2372, 2617, 2850, 3129, 3452, 3552, 3169, 2817, 2535, 2276, 2113, 1930, 1852, 1793, 1820, 1861, 1992, 2150, 2387, 2626, 2918, 3297, 3357, 2953, 2607, 2334, 2083, 1871, 1722, 1645, 1585, 1598, 1663, 1793, 1955, 2156, 2426, 2764, 3169, 3312, 2806, 2451, 2208, 1915, 1706, 1574, 1476, 1422, 1425, 1497, 1630, 1784, 2003, 2276, 2589, 2929, 3063, 2683, 2312, 2037, 1763, 1551, 1414, 1313, 1274, 1283, 1364, 1482, 1641, 1871, 2131, 2475, 2828, 3013, 2553, 2248, 1915, 1656, 1447, 1306, 1213, 1171, 1176, 1238, 1367, 1548, 1759, 2020, 2364, 2703, 2850, 2492, 2131, 1838, 1564, 1372, 1227, 1126, 1088, 1111, 1158, 1285, 1450, 1694, 1971, 2255, 2635, 2861, 2459, 2065, 1780, 1535, 1311, 1165, 1076, 1036, 1056, 1117, 1242, 1411, 1627, 1885, 2208, 2635, 2806, 2411, 2065, 1767, 1504, 1308, 1143, 1059, 1024, 1041, 1109, 1227, 1398, 1609, 1890, 2228, 2589, 2806, 2418, 2089, 1798, 1532, 1322, 1174, 1072, 1030, 1055, 1109, 1236, 1408, 1630, 1895, 2221, 2589, 2883, 2492, 2119, 1829, 1568, 1359, 1215, 1122, 1081, 1097, 1165, 1272, 1450, 1679, 1940, 2228, 2664, 2953, 2535, 2235, 1900, 1634, 1444, 1290, 1188, 1160, 1169, 1238, 1349, 1513, 1730, 1992, 2334, 2683, 3089, 2664, 2298, 2014, 1742, 1545, 1395, 1299, 1268, 1268, 1342, 1459, 1616, 1838, 2089, 2418, 2733, 3225, 2774, 2443, 2144, 1885, 1663, 1548, 1447, 1392, 1392, 1476, 1598, 1751, 1955, 2242, 2562, 2977, 3373, 2953, 2589, 2327, 2054, 1876, 1710, 1598, 1551, 1564, 1630, 1751, 1905, 2119, 2379, 2654, 3051, 3622, 3102, 2796, 2526, 2235, 2054, 1890, 1793, 1755, 1763, 1824, 1940, 2101, 2334, 2553, 2883, 3357, 4376, 3404, 3063, 2723, 2526, 2305, 2131, 2031, 1971, 1971, 2059, 2156, 2319, 2589, 2817, 3239, 3452]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [4125, 3399, 2997, 2781, 2489, 2252, 2122, 2034, 1968, 1963, 2034, 2192, 2316, 2549, 2813, 3111, 3463, 3635, 3178, 2835, 2506, 2266, 2039, 1907, 1804, 1752, 1744, 1800, 1922, 2098, 2287, 2576, 2891, 3263, 3431, 2997, 2641, 2331, 2068, 1840, 1692, 1589, 1536, 1572, 1632, 1748, 1907, 2128, 2384, 2699, 3098, 3234, 2835, 2472, 2153, 1892, 1676, 1530, 1431, 1375, 1393, 1463, 1576, 1769, 1968, 2232, 2585, 2997, 3165, 2709, 2323, 2023, 1769, 1559, 1401, 1290, 1247, 1249, 1325, 1437, 1621, 1845, 2116, 2455, 2846, 3034, 2594, 2232, 1932, 1650, 1454, 1286, 1192, 1140, 1154, 1212, 1342, 1514, 1723, 2017, 2376, 2719, 3021, 2514, 2179, 1849, 1596, 1367, 1216, 1109, 1066, 1080, 1138, 1270, 1463, 1676, 1942, 2316, 2680, 2879, 2506, 2134, 1795, 1539, 1316, 1173, 1075, 1034, 1034, 1104, 1218, 1398, 1628, 1887, 2211, 2651, 2891, 2480, 2122, 1804, 1523, 1311, 1162, 1058, 1024, 1030, 1086, 1212, 1391, 1614, 1892, 2225, 2558, 2925, 2514, 2141, 1808, 1546, 1328, 1173, 1075, 1024, 1043, 1106, 1222, 1417, 1632, 1902, 2225, 2670, 2949, 2549, 2185, 1863, 1596, 1372, 1228, 1126, 1078, 1091, 1164, 1268, 1454, 1661, 1942, 2280, 2622, 3021, 2604, 2266, 1927, 1684, 1454, 1306, 1192, 1149, 1167, 1232, 1340, 1514, 1740, 2045, 2376, 2760, 3098, 2670, 2368, 2028, 1773, 1569, 1412, 1306, 1264, 1270, 1337, 1474, 1621, 1836, 2147, 2447, 2802, 3278, 2846, 2480, 2172, 1902, 1696, 1539, 1442, 1398, 1391, 1474, 1589, 1736, 1979, 2245, 2549, 3034, 3368, 3009, 2641, 2346, 2074, 1883, 1703, 1614, 1555, 1569, 1650, 1748, 1907, 2128, 2392, 2729, 3192, 3690, 3178, 2813, 2540, 2280, 2074, 1917, 1791, 1756, 1765, 1813, 1927, 2110, 2353, 2585, 2925, 3368, 4560, 3431, 3111, 2781, 2532, 2309, 2141, 2045, 1963, 1984, 2062, 2166, 2338, 2585, 2868, 3192, 3496]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [4055, 3297, 2857, 2500, 2400, 2159, 2055, 1948, 1899, 1911, 1987, 2084, 2223, 2363, 2632, 2941, 3334, 3530, 3030, 2679, 2420, 2174, 1974, 1841, 1744, 1686, 1705, 1775, 1875, 2027, 2206, 2420, 2703, 3061, 3262, 2885, 2521, 2239, 1987, 1818, 1686, 1571, 1547, 1547, 1604, 1695, 1852, 2014, 2256, 2564, 2970, 3093, 2703, 2381, 2084, 1864, 1649, 1493, 1429, 1383, 1364, 1436, 1531, 1676, 1887, 2143, 2400, 2830, 3061, 2609, 2256, 2000, 1734, 1555, 1402, 1304, 1245, 1250, 1310, 1415, 1563, 1734, 2027, 2326, 2655, 2885, 2521, 2174, 1923, 1676, 1471, 1316, 1200, 1154, 1172, 1205, 1339, 1485, 1658, 1948, 2223, 2609, 2830, 2480, 2143, 1818, 1604, 1396, 1240, 1132, 1083, 1099, 1145, 1250, 1383, 1613, 1841, 2174, 2500, 2830, 2420, 2084, 1807, 1579, 1364, 1215, 1083, 1042, 1038, 1107, 1205, 1389, 1588, 1807, 2143, 2439, 2778, 2381, 2098, 1786, 1547, 1345, 1210, 1079, 1024, 1045, 1075, 1191, 1376, 1555, 1818, 2113, 2480, 2728, 2381, 2128, 1829, 1588, 1370, 1210, 1115, 1042, 1045, 1103, 1210, 1376, 1579, 1818, 2128, 2480, 2778, 2459, 2159, 1875, 1631, 1415, 1245, 1145, 1099, 1103, 1158, 1271, 1422, 1622, 1875, 2159, 2543, 2970, 2459, 2239, 1948, 1686, 1500, 1328, 1245, 1172, 1195, 1235, 1364, 1478, 1686, 1936, 2239, 2632, 3000, 2632, 2344, 2055, 1807, 1596, 1429, 1333, 1293, 1277, 1328, 1429, 1588, 1775, 2041, 2326, 2655, 3192, 2778, 2459, 2128, 1911, 1714, 1563, 1464, 1415, 1415, 1449, 1555, 1724, 1899, 2159, 2420, 2857, 3262, 2913, 2564, 2308, 2069, 1875, 1714, 1622, 1571, 1579, 1631, 1705, 1864, 2041, 2308, 2609, 3030, 3615, 3093, 2804, 2500, 2273, 2041, 1899, 1775, 1755, 1744, 1775, 1887, 2055, 2239, 2521, 2804, 3125, 4286, 3334, 3000, 2655, 2400, 2239, 2084, 2027, 1948, 1961, 1974, 2098, 2223, 2459, 2679, 3093, 3449]
                                       }
                                   }, {
                                       "name":    "3264x2448_HZ_70",
                                       "resolution":    "3264x2448",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3994, 3720, 3514, 3249, 2991, 2777, 2593, 2447, 2364, 2403, 2478, 2610, 2836, 3062, 3262, 3498, 3551, 3812, 3577, 3360, 3072, 2766, 2488, 2276, 2130, 2074, 2070, 2165, 2307, 2565, 2822, 3082, 3344, 3521, 3809, 3455, 3188, 2836, 2482, 2180, 1960, 1828, 1755, 1784, 1892, 2058, 2288, 2600, 2929, 3255, 3437, 3673, 3380, 2981, 2607, 2269, 1968, 1742, 1605, 1539, 1540, 1632, 1807, 2055, 2379, 2709, 3073, 3394, 3557, 3229, 2848, 2454, 2073, 1753, 1543, 1400, 1338, 1348, 1438, 1612, 1855, 2161, 2542, 2940, 3268, 3441, 3138, 2742, 2289, 1905, 1607, 1390, 1254, 1204, 1216, 1308, 1455, 1692, 1999, 2413, 2813, 3133, 3400, 3020, 2611, 2176, 1795, 1498, 1278, 1146, 1089, 1099, 1197, 1362, 1587, 1919, 2293, 2702, 3100, 3414, 2996, 2536, 2114, 1742, 1425, 1218, 1094, 1037, 1049, 1134, 1281, 1532, 1820, 2230, 2674, 3037, 3388, 2931, 2514, 2094, 1693, 1402, 1203, 1057, 1024, 1029, 1113, 1268, 1488, 1802, 2189, 2641, 3053, 3337, 2984, 2544, 2108, 1728, 1420, 1217, 1090, 1036, 1046, 1129, 1283, 1520, 1820, 2223, 2628, 3013, 3338, 3033, 2593, 2176, 1772, 1471, 1270, 1143, 1092, 1098, 1186, 1347, 1584, 1861, 2268, 2692, 3037, 3456, 3099, 2658, 2256, 1888, 1592, 1378, 1244, 1176, 1199, 1300, 1447, 1679, 2004, 2348, 2762, 3106, 3522, 3202, 2817, 2395, 2011, 1742, 1529, 1398, 1325, 1350, 1428, 1588, 1806, 2139, 2493, 2884, 3240, 3636, 3261, 2935, 2564, 2238, 1922, 1706, 1563, 1516, 1528, 1606, 1764, 2009, 2297, 2653, 2975, 3286, 3594, 3422, 3109, 2796, 2421, 2162, 1936, 1796, 1737, 1764, 1840, 1987, 2207, 2508, 2831, 3118, 3324, 3771, 3542, 3272, 2999, 2708, 2434, 2207, 2049, 1997, 2004, 2109, 2255, 2469, 2703, 3008, 3299, 3504, 4143, 3605, 3497, 3180, 2945, 2728, 2478, 2389, 2303, 2306, 2389, 2525, 2745, 2942, 3205, 3464, 3589]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3215, 2837, 2612, 2468, 2324, 2102, 2032, 1950, 1927, 1950, 1967, 2043, 2157, 2322, 2455, 2596, 2724, 2864, 2677, 2472, 2291, 2107, 1989, 1840, 1777, 1726, 1748, 1778, 1881, 1998, 2167, 2317, 2484, 2678, 2771, 2550, 2335, 2151, 1963, 1793, 1668, 1603, 1549, 1559, 1614, 1722, 1850, 1998, 2185, 2401, 2630, 2778, 2465, 2231, 2064, 1831, 1656, 1542, 1454, 1404, 1406, 1470, 1586, 1712, 1884, 2083, 2290, 2484, 2616, 2390, 2133, 1929, 1704, 1521, 1398, 1304, 1267, 1275, 1350, 1456, 1592, 1781, 1977, 2218, 2432, 2599, 2300, 2092, 1831, 1614, 1428, 1298, 1209, 1169, 1173, 1232, 1351, 1513, 1689, 1893, 2142, 2353, 2484, 2261, 1999, 1768, 1532, 1359, 1223, 1125, 1088, 1110, 1155, 1276, 1425, 1636, 1858, 2061, 2312, 2502, 2240, 1946, 1719, 1508, 1302, 1163, 1076, 1036, 1056, 1116, 1235, 1390, 1578, 1787, 2027, 2320, 2460, 2202, 1948, 1708, 1479, 1300, 1141, 1059, 1024, 1041, 1108, 1221, 1379, 1563, 1793, 2046, 2286, 2458, 2205, 1967, 1735, 1505, 1313, 1172, 1072, 1030, 1055, 1108, 1229, 1388, 1581, 1796, 2038, 2283, 2511, 2261, 1988, 1760, 1536, 1347, 1211, 1121, 1081, 1096, 1162, 1263, 1425, 1623, 1831, 2039, 2336, 2551, 2285, 2080, 1817, 1593, 1425, 1282, 1185, 1158, 1166, 1232, 1334, 1480, 1663, 1868, 2117, 2338, 2636, 2374, 2121, 1909, 1685, 1515, 1379, 1290, 1261, 1260, 1329, 1434, 1569, 1751, 1941, 2172, 2358, 2711, 2439, 2225, 2008, 1803, 1616, 1518, 1427, 1375, 1374, 1450, 1556, 1682, 1842, 2055, 2268, 2521, 2783, 2550, 2320, 2145, 1937, 1797, 1657, 1559, 1517, 1527, 1583, 1684, 1805, 1966, 2146, 2314, 2542, 2914, 2625, 2455, 2284, 2072, 1936, 1804, 1724, 1691, 1696, 1745, 1835, 1956, 2123, 2258, 2457, 2722, 3370, 2801, 2622, 2408, 2286, 2127, 1993, 1915, 1864, 1862, 1930, 1998, 2112, 2299, 2429, 2678, 2724]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3195, 2797, 2570, 2455, 2255, 2081, 1985, 1917, 1862, 1855, 1908, 2029, 2110, 2266, 2426, 2582, 2731, 2924, 2684, 2486, 2267, 2098, 1923, 1819, 1734, 1689, 1679, 1723, 1819, 1953, 2083, 2277, 2463, 2653, 2826, 2585, 2363, 2148, 1950, 1765, 1641, 1551, 1503, 1535, 1585, 1681, 1807, 1974, 2150, 2349, 2577, 2718, 2489, 2249, 2016, 1810, 1628, 1501, 1411, 1359, 1375, 1438, 1536, 1698, 1853, 2046, 2286, 2536, 2695, 2411, 2142, 1917, 1710, 1528, 1385, 1281, 1241, 1242, 1312, 1413, 1574, 1758, 1964, 2202, 2446, 2615, 2334, 2078, 1846, 1608, 1435, 1278, 1189, 1138, 1151, 1206, 1328, 1481, 1657, 1890, 2152, 2366, 2621, 2280, 2041, 1778, 1563, 1355, 1212, 1108, 1066, 1079, 1136, 1261, 1437, 1620, 1833, 2113, 2348, 2516, 2280, 2007, 1733, 1512, 1307, 1171, 1075, 1034, 1034, 1103, 1212, 1378, 1579, 1788, 2030, 2333, 2529, 2260, 1998, 1742, 1497, 1303, 1160, 1058, 1024, 1030, 1085, 1207, 1372, 1567, 1794, 2044, 2261, 2553, 2287, 2013, 1745, 1518, 1319, 1171, 1075, 1024, 1043, 1105, 1216, 1396, 1583, 1802, 2042, 2348, 2563, 2309, 2047, 1791, 1563, 1359, 1224, 1125, 1078, 1090, 1161, 1259, 1429, 1606, 1833, 2082, 2302, 2605, 2343, 2108, 1842, 1640, 1435, 1298, 1189, 1147, 1164, 1226, 1326, 1481, 1672, 1915, 2152, 2399, 2643, 2379, 2181, 1921, 1714, 1538, 1396, 1297, 1257, 1262, 1324, 1448, 1574, 1749, 1991, 2195, 2412, 2751, 2498, 2256, 2032, 1819, 1647, 1509, 1422, 1381, 1373, 1448, 1548, 1669, 1863, 2057, 2257, 2564, 2779, 2595, 2363, 2161, 1955, 1804, 1651, 1574, 1521, 1532, 1602, 1681, 1807, 1974, 2157, 2373, 2648, 2964, 2684, 2468, 2296, 2110, 1954, 1828, 1722, 1692, 1698, 1735, 1824, 1963, 2139, 2284, 2489, 2730, 3499, 2821, 2659, 2455, 2291, 2130, 2002, 1927, 1857, 1873, 1933, 2007, 2128, 2296, 2469, 2643, 2754]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3146, 2721, 2460, 2226, 2180, 2001, 1927, 1841, 1801, 1809, 1867, 1936, 2032, 2115, 2284, 2455, 2641, 2848, 2570, 2360, 2195, 2019, 1865, 1760, 1679, 1628, 1644, 1700, 1778, 1892, 2015, 2151, 2318, 2506, 2700, 2497, 2264, 2069, 1878, 1745, 1635, 1534, 1513, 1512, 1559, 1633, 1758, 1875, 2044, 2243, 2481, 2610, 2382, 2172, 1955, 1784, 1603, 1466, 1409, 1367, 1348, 1412, 1494, 1614, 1782, 1971, 2137, 2408, 2614, 2329, 2085, 1896, 1678, 1524, 1386, 1295, 1239, 1243, 1298, 1392, 1520, 1658, 1887, 2096, 2297, 2498, 2273, 2027, 1838, 1632, 1451, 1307, 1197, 1152, 1169, 1200, 1325, 1454, 1598, 1830, 2025, 2279, 2468, 2251, 2010, 1750, 1570, 1382, 1236, 1131, 1083, 1098, 1143, 1242, 1362, 1562, 1744, 1993, 2204, 2477, 2207, 1963, 1744, 1550, 1353, 1212, 1083, 1042, 1038, 1106, 1199, 1370, 1542, 1718, 1972, 2162, 2438, 2176, 1977, 1726, 1520, 1336, 1208, 1079, 1024, 1045, 1074, 1186, 1358, 1513, 1729, 1949, 2198, 2395, 2174, 2002, 1764, 1558, 1359, 1207, 1115, 1042, 1045, 1102, 1204, 1357, 1534, 1727, 1960, 2195, 2427, 2233, 2024, 1802, 1596, 1401, 1241, 1144, 1098, 1102, 1155, 1262, 1399, 1570, 1774, 1980, 2239, 2565, 2222, 2084, 1861, 1642, 1478, 1319, 1241, 1170, 1192, 1229, 1349, 1448, 1623, 1820, 2038, 2297, 2567, 2348, 2160, 1945, 1745, 1563, 1412, 1323, 1285, 1269, 1315, 1406, 1543, 1695, 1899, 2096, 2297, 2686, 2443, 2238, 1994, 1827, 1663, 1532, 1443, 1397, 1396, 1424, 1516, 1658, 1793, 1984, 2153, 2429, 2700, 2519, 2299, 2128, 1951, 1797, 1661, 1582, 1536, 1541, 1584, 1642, 1769, 1899, 2087, 2278, 2526, 2909, 2618, 2461, 2262, 2104, 1925, 1812, 1707, 1691, 1679, 1700, 1788, 1916, 2043, 2233, 2396, 2553, 3307, 2749, 2572, 2353, 2180, 2070, 1952, 1911, 1844, 1853, 1856, 1949, 2032, 2193, 2321, 2569, 2722]
                                       }
                                   }, {
                                       "name":    "3264x2448_GRAY_0",
                                       "resolution":    "3264x2448",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    15
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "lumaDetect":    {
                           "luma_detect_en":    1,
                           "fixed_times":    0,
                           "mutation_threshold":    0.0002,
                           "mutation_threshold_level2":    1000
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    0,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 1, 1, 1, 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.0782, 2.1963],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.371, 2.0299],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.5203, 1.5848],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.7103, 1.3902],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.7884, 1.2751],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.9214, 2.3878],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.2379, 1.9379],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [90, 80, 74, 74]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [2.4394, -0.6797, -0.7596, -0.7425, 2.7279, -0.9853, -0.3831, -1.9152, 3.2983],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.8702, -0.1978, -0.6724, -0.4843, 2.3256, -0.8413, -0.2196, -1.1093, 2.329],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [3.1933, -1.779, -0.4143, -0.7307, 2.388, -0.6573, -0.3415, -1.2265, 2.568],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [2.4898, -1.1278, -0.3619, -0.4137, 1.9569, -0.5432, -0.1275, -0.7163, 1.8438],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [2.8465, -1.5213, -0.3251, -0.5213, 2.3391, -0.8177, -0.2315, -1.0535, 2.285],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [2.2413, -0.9194, -0.3219, -0.2506, 1.9384, -0.6878, -0.0376, -0.5707, 1.6084],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [2.9584, -1.6902, -0.2682, -0.4443, 2.2181, -0.7738, -0.2031, -0.8159, 2.019],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [2.3455, -1.0688, -0.2767, -0.1723, 1.8243, -0.652, 0.0047, -0.4195, 1.4148],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [3.1903, -1.8952, -0.2951, -0.4772, 2.2739, -0.7968, -0.2638, -0.7259, 1.9897],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [2.5283, -1.2252, -0.303, -0.1854, 1.8609, -0.6755, -0.0292, -0.3575, 1.3867],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [2.2245, 0.0677, -1.2912, -0.9347, 1.9403, -0.0045, -0.827, -2.129, 3.7941],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6519, 0.2871, -0.9428, -0.6856, 1.6744, 0.0075, -0.6073, -1.3365, 2.8195],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [2.5414, -1.0443, -0.4971, -0.6279, 2.4245, -0.7965, -0.3033, -1.2958, 2.5991],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.9735, -0.5236, -0.4499, -0.3717, 2.0447, -0.673, -0.1328, -0.7073, 1.8401],
                                       "ccOffsets":    [0, 0, 0]
                                   }],
                               "matrixAll_len":    14
                           }
                       },
                       "lut3d_calib":    {
                           "common":    {
                               "enable":    0,
                               "mode":    "CALIB_Lut3D_MODE_AUTO",
                               "gain_tolerance":    0.1,
                               "wbgain_tolerance":    1
                           },
                           "MLut3D":    {
                               "Table":    {
                                   "look_up_table_r":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_g":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               }
                           },
                           "ALut3D":    {
                               "damp_en":    1,
                               "lutAll":    [{
                                       "name":    "Normal",
                                       "awbGain":    [1, 1],
                                       "gain_alpha":    {
                                           "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                           "alpha":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "Table":    {
                                           "look_up_table_r":    [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
                                           "look_up_table_g":    [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
                                           "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                       }
                                   }],
                               "lutAll_len":    1
                           }
                       },
                       "af":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_NOT_SET",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "win_v_size":    0,
                               "fixed_mode":    {
                                   "code":    8
                               },
                               "macro_mode":    {
                                   "code":    32
                               },
                               "infinity_mode":    {
                                   "code":    32
                               },
                               "contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullSteps":    9,
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptiveSteps":    9,
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "TrigThers":    0.075,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.02,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    50,
                                   "OutFocusPos":    30,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "FlatValue":    0
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0
                               },
                               "measiso_cfg":    [{
                                       "iso":    50,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    100,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    1600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    3200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    6400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    12800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    25600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    51200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    102400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    204800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }],
                               "zoomfocus_tbl":    {
                                   "tbl_len":    0,
                                   "focal_length":    [],
                                   "focal_length_len":    0,
                                   "zoom_pos":    [],
                                   "zoom_pos_len":    0,
                                   "focus_infpos":    [],
                                   "focus_infpos_len":    0,
                                   "focus_macropos":    [],
                                   "focus_macropos_len":    0
                               }
                           }
                       },
                       "thumbnails":    {
                           "param":    {
                               "thumbnail_configs":    [{
                                       "owner_cookies":    0,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0002",
                                       "width_intfactor":    2,
                                       "height_intfactor":    2,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    1,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0004",
                                       "width_intfactor":    4,
                                       "height_intfactor":    4,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    2,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\b",
                                       "width_intfactor":    8,
                                       "height_intfactor":    8,
                                       "buffer_count":    0
                                   }],
                               "thumbnail_configs_len":    3
                           }
                       },
                       "bayernr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [318, 286, 257, 230, 186, 155, 137, 130, 130, 131, 132, 129, 122, 110, 95, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [610, 532, 458, 390, 271, 179, 128, 130, 158, 185, 202, 204, 191, 162, 119, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [930, 805, 687, 576, 377, 215, 113, 133, 201, 256, 287, 291, 267, 214, 126, 87]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1006, 884, 770, 664, 481, 343, 266, 255, 282, 315, 335, 335, 313, 266, 199, 124]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1014, 911, 816, 730, 583, 477, 412, 386, 384, 392, 398, 393, 374, 340, 295, 246]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [318, 286, 257, 230, 186, 155, 137, 130, 130, 131, 132, 129, 122, 110, 95, 87]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [610, 532, 458, 390, 271, 179, 128, 130, 158, 185, 202, 204, 191, 162, 119, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [930, 805, 687, 576, 377, 215, 113, 133, 201, 256, 287, 291, 267, 214, 126, 87]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1006, 884, 770, 664, 481, 343, 266, 255, 282, 315, 335, 335, 313, 266, 199, 124]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1014, 911, 816, 730, 583, 477, 412, 386, 384, 392, 398, 393, 374, 340, 295, 246]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.2
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.3
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.4
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.5
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.55
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.15
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.25
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.35
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.45
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.35
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    50,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    50,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-1.39394e-12, 1.35655e-08, -4.62176e-05, 0.0582483, 7.99637],
                                               "ynr_ci_l":    0.251197,
                                               "ynr_ci_h":    0.178393
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.37668e-12, 1.34686e-08, -4.60683e-05, 0.0581753, 7.13424],
                                               "ynr_ci_l":    0.276401,
                                               "ynr_ci_h":    0.179183
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-2.72934e-12, 2.67936e-08, -9.20155e-05, 0.115708, 13.4942],
                                               "ynr_ci_l":    0.238607,
                                               "ynr_ci_h":    0.15947
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.71818e-12, 3.59837e-08, -0.000120236, 0.142735, 26.3241],
                                               "ynr_ci_l":    0.246139,
                                               "ynr_ci_h":    0.152118
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.04588e-12, 3.90041e-08, -0.000130319, 0.154042, 40.6039],
                                               "ynr_ci_l":    0.264657,
                                               "ynr_ci_h":    0.156309
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.264657,
                                               "ynr_ci_h":    0.156309
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-1.39394e-12, 1.35655e-08, -4.62176e-05, 0.0582483, 7.99637],
                                               "ynr_ci_l":    0.251197,
                                               "ynr_ci_h":    0.178393
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.37668e-12, 1.34686e-08, -4.60683e-05, 0.0581753, 7.13424],
                                               "ynr_ci_l":    0.276401,
                                               "ynr_ci_h":    0.179183
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-2.72934e-12, 2.67936e-08, -9.20155e-05, 0.115708, 13.4942],
                                               "ynr_ci_l":    0.238607,
                                               "ynr_ci_h":    0.15947
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.71818e-12, 3.59837e-08, -0.000120236, 0.142735, 26.3241],
                                               "ynr_ci_l":    0.246139,
                                               "ynr_ci_h":    0.152118
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.04588e-12, 3.90041e-08, -0.000130319, 0.154042, 40.6039],
                                               "ynr_ci_l":    0.264657,
                                               "ynr_ci_h":    0.156309
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.264657,
                                               "ynr_ci_h":    0.156309
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.267207,
                                               "ynr_ci_h":    0.157733
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.4,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.95,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.6,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.9,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1.2,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    95,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.75,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.4,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    32,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.95,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.6,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    32,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.7,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.8,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    30,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    28,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.9,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    95,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    1.2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.75,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    22,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.3,
                                               "sharp_ratio":    13,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.3,
                                               "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":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.5,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 896, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.6,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.7,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.7,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.8,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    0.9,
                                               "pbf_add":    15,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.9,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    1,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    33,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    33,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.2,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0.2,
                                               "sharp_ratio":    14,
                                               "bf_gain":    0.2,
                                               "bf_ratio":    0.2,
                                               "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":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.3,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.3,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.3,
                                               "bf_ratio":    0.3,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    3,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    3,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [768, 896, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    0.5,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    9,
                                               "bf_gain":    0.5,
                                               "bf_ratio":    0.5,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    0.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.5,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    0.9,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    6,
                                               "bf_gain":    0.9,
                                               "bf_ratio":    0.6,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.8,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    1,
                                               "pbf_add":    15,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    1,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    1,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}